:root {
  --color-bg: #faf8f5;
  --color-bg-alt: #f5f1ec;
  --color-text: #2c2c2c;
  --color-text-light: #6b6b6b;
  --color-text-muted: #999;
  --color-accent: #b8a08a;
  --color-accent-dark: #8a7560;
  --color-border: #e8e3dd;
  --color-white: #fff;
  --color-sale: #c0392b;
  --color-cart-badge: #c0392b;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1200px;
  --header-height: 70px;
  --announcement-height: 40px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

/* Page Transition */
.page-fade-in {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Announcement Bar */
.announcement-bar {
  background: var(--color-text);
  color: var(--color-white);
  text-align: center;
  font-size: 12px;
  padding: 10px 20px;
  height: var(--announcement-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  letter-spacing: 0.5px;
}

.announcement-bar span {
  white-space: nowrap;
}

/* Top Bar */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.logo {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: normal;
  color: var(--color-text);
}

.logo span {
  font-size: 10px;
  display: block;
  letter-spacing: 2px;
  color: var(--color-text-light);
  margin-top: -2px;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav > li {
  position: relative;
}

.main-nav > li > a {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 0;
  transition: color 0.3s;
}

.main-nav > li > a:hover {
  color: var(--color-accent-dark);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  min-width: 220px;
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 100;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.main-nav > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
}

.dropdown li a {
  display: block;
  padding: 8px 25px;
  font-size: 13px;
  color: var(--color-text);
  transition: background 0.2s;
}

.dropdown li a:hover {
  background: var(--color-bg-alt);
}

/* Top Bar Right */
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-right a,
.top-bar-right button {
  font-size: 13px;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.top-bar-right a:hover,
.top-bar-right button:hover {
  color: var(--color-accent-dark);
}

.currency-selector {
  position: relative;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.cart-btn {
  position: relative;
  font-size: 14px;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background: var(--color-cart-badge);
  color: white;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  z-index: 1000;
  padding: 30px 20px;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

.mobile-menu-list {
  margin-top: 40px;
}

.mobile-menu-list li {
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu-list li a {
  display: block;
  padding: 15px 0;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mobile-submenu {
  padding-left: 20px;
  display: none;
}

.mobile-submenu.active {
  display: block;
}

.mobile-submenu li a {
  padding: 10px 0;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0.5px;
  color: var(--color-text-light);
}

/* Header Wrapper */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 500;
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  max-width: 700px;
  padding: 20px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero-content h1 span {
  display: block;
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
  opacity: 0.8;
  font-family: var(--font-body);
}

.hero-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.8;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.4s;
  cursor: pointer;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  background: var(--color-white);
  color: var(--color-text);
}

.btn::after {
  content: '→';
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.3s;
}

.btn:hover::after {
  transform: translateX(4px);
}

.btn-dark {
  border-color: var(--color-text);
  color: var(--color-text);
}

.btn-dark:hover {
  background: var(--color-text);
  color: var(--color-white);
}

.btn-accent {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-accent:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* Section */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: normal;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  margin: 15px auto 0;
}

.section-title p {
  color: var(--color-text-light);
  font-size: 14px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Artisan Grid */
.artisan-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--color-border);
}

.artisan-card {
  background: var(--color-bg);
  padding: 40px 20px;
  text-align: center;
  transition: background 0.3s;
}

.artisan-card:hover {
  background: var(--color-bg-alt);
}

.artisan-card .icon {
  font-size: 36px;
  margin-bottom: 15px;
  display: block;
}

.artisan-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 8px;
}

.artisan-card p {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Elements Section */
.elements-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.element-card {
  display: block;
  position: relative;
  height: 350px;
  overflow: hidden;
  text-decoration: none;
}

.element-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.element-card:hover img {
  transform: scale(1.05);
}

.element-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.element-card:hover .overlay {
  background: rgba(0,0,0,0.45);
}

.element-card .overlay span {
  color: white;
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Commitments */
.commitments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.commitment-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 8px;
}

.commitment-card p {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.commitment-card .icon {
  font-size: 28px;
  margin-bottom: 15px;
  display: block;
}

/* Gift Section */
.gift-section {
  background: var(--color-bg-alt);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.gift-image {
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.gift-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gift-content {
  padding: 60px;
}

.gift-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.gift-content p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: 30px;
}

/* Product Grid */
.collection-description {
  text-align: center;
  padding: 40px 20px;
  max-width: 700px;
  margin: 0 auto;
}

.collection-description h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.collection-description p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.8;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--color-white);
  transition: transform 0.4s, box-shadow 0.4s;
  border-radius: 4px;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.product-card .image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.product-card .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s, transform 0.6s;
}

.product-card:hover .image-wrap img:first-child {
  transform: scale(1.03);
}

.product-card .image-wrap img.secondary {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-card .image-wrap:hover img.secondary {
  opacity: 1;
}

.product-card .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-sale);
  color: white;
  font-size: 10px;
  padding: 3px 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-card .info {
  padding: 15px 0;
}

.product-card .info h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 5px;
}

.product-card .info .price {
  font-size: 14px;
  color: var(--color-text-light);
}

.product-card .info .price .original {
  text-decoration: line-through;
  color: var(--color-text-muted);
  margin-right: 8px;
}

.product-card .info .price .sale {
  color: var(--color-sale);
}

/* Breadcrumb */
.breadcrumb {
  padding: 20px 0;
  font-size: 12px;
  color: var(--color-text-muted);
}

.breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 8px;
}

/* Filters */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 30px;
  font-size: 13px;
}

.filter-bar .result-count {
  color: var(--color-text-light);
}

.filter-bar .sort-select {
  padding: 8px 15px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font-body);
}

/* Footer */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h4 {
  color: white;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: normal;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.payment-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-icons span {
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 10px;
  letter-spacing: 0.5px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  font-size: 14px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: white;
}

.copyright {
  font-size: 12px;
}

/* Cart Drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  max-width: 100vw;
  height: 100%;
  background: var(--color-white);
  z-index: 1000;
  transition: right 0.3s;
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--color-border);
}

.cart-drawer-header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: normal;
}

.cart-drawer-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-drawer-empty {
  text-align: center;
  padding: 60px 20px;
}

.cart-drawer-empty p {
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.cart-drawer-empty a {
  color: var(--color-accent-dark);
  text-decoration: underline;
  font-size: 14px;
}

.cart-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  background: var(--color-bg-alt);
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 5px;
}

.cart-item-info .variant {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 5px;
}

.cart-item-info .cart-item-price {
  font-size: 14px;
}

.cart-item-remove {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: var(--color-text-muted);
  align-self: flex-start;
  padding: 5px;
}

.cart-drawer-footer {
  border-top: 1px solid var(--color-border);
  padding: 20px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-bottom: 20px;
}

.cart-total .total-amount {
  font-weight: 600;
}

.checkout-btn {
  width: 100%;
  padding: 15px;
  background: var(--color-text);
  color: white;
  border: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.checkout-btn:hover {
  background: var(--color-accent-dark);
}

/* Search */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-white);
  z-index: 1000;
  padding: 30px 20px;
  transform: translateY(-100%);
  transition: transform 0.3s;
}

.search-drawer.active {
  transform: translateY(0);
}

.search-drawer input {
  width: 100%;
  padding: 15px;
  border: none;
  border-bottom: 2px solid var(--color-text);
  font-size: 24px;
  font-family: var(--font-heading);
  outline: none;
  background: transparent;
}

.search-drawer input::placeholder {
  color: var(--color-text-muted);
}

.search-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* Page Header */
.page-header {
  padding: 60px 20px;
  text-align: center;
  background: var(--color-bg-alt);
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: normal;
  letter-spacing: 1px;
}

/* About Page */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.about-content p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 30px;
  color: var(--color-text);
}

.about-content .lead {
  font-size: 17px;
  line-height: 1.9;
  color: var(--color-text);
  font-family: var(--font-heading);
}

.about-image-full {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-section {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.about-section h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.about-section h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 15px;
  color: var(--color-accent-dark);
  letter-spacing: 1px;
}

/* Contact Page */
.contact-form-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--color-text-light);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--color-border);
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--color-white);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--color-text);
  color: white;
  border: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: var(--color-accent-dark);
}

/* Product Detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 40px 0;
}

.product-gallery {
  position: sticky;
  top: 110px;
  align-self: start;
}

.product-gallery-main {
  background: var(--color-bg-alt);
  margin-bottom: 15px;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.product-gallery-thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 0.3s;
  flex-shrink: 0;
}

.product-gallery-thumbs img.active {
  border-color: var(--color-text);
}

.product-info h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 10px;
}

.product-info .product-price {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--color-text-light);
}

.product-info .product-price .original {
  text-decoration: line-through;
  color: var(--color-text-muted);
  margin-right: 10px;
}

.product-info .product-price .sale {
  color: var(--color-sale);
}

.product-description {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-light);
  margin-bottom: 30px;
}

.product-description strong {
  color: var(--color-text);
}

.color-selector {
  margin-bottom: 30px;
}

.color-selector label {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--color-text-light);
}

.color-swatches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.color-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.3s;
}

.color-swatch.active {
  border-color: var(--color-text);
}

.add-to-cart-form {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
}

.qty-selector button {
  width: 40px;
  height: 44px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
}

.qty-selector button:hover {
  background: var(--color-bg-alt);
}

.qty-selector input {
  width: 50px;
  text-align: center;
  border: none;
  font-size: 15px;
  height: 44px;
  font-family: var(--font-body);
}

.qty-selector input:focus {
  outline: none;
}

.add-to-cart-btn {
  flex: 1;
  padding: 0 30px;
  background: var(--color-text);
  color: white;
  border: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.add-to-cart-btn:hover {
  background: var(--color-accent-dark);
}

.product-craft-notes {
  border-top: 1px solid var(--color-border);
  padding-top: 25px;
  margin-top: 10px;
}

.product-craft-notes h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 15px;
}

.product-craft-notes ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 2;
}

/* You May Also Like */
.also-like {
  padding: 60px 0;
  border-top: 1px solid var(--color-border);
}

.also-like h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* Page banner (for story pages) */
.page-banner {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* Utility */
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }

/* Responsive */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .artisan-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .elements-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .announcement-bar span:not(:first-child) {
    display: none;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-content h1 {
    font-size: 32px;
  }
  .hero {
    height: 60vh;
    min-height: 400px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .artisan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .elements-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .element-card {
    height: 200px;
  }
  .commitments-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .gift-section {
    grid-template-columns: 1fr;
  }
  .gift-content {
    padding: 40px 20px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .product-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .product-gallery {
    position: static;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .page-header h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .artisan-grid {
    grid-template-columns: 1fr 1fr;
  }
  .elements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-content h1 {
    font-size: 26px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .top-bar-right .hide-mobile {
    display: none;
  }
}
