/*
Theme Name: Mawules African Jewelry
Theme URI: https://mawulesafricanjewelry.store
Author: The Design Log
Author URI: https://mawulesafricanjewelry.store
Description: Elementor-compatible theme for Mawules African Jewelry — handcrafted African jewelry store with WooCommerce support.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mawules
Tags: woocommerce, elementor, jewelry, ecommerce
*/

/* =============================================
   CSS CUSTOM PROPERTIES — from Figma
   ============================================= */
:root {
  /* Colors */
  --color-navbar:       #CAB273;
  --color-footer:       rgba(202, 178, 115, 0.92);
  --color-accent:       #A64826;
  --color-dark:         #401C0F;
  --color-cream:        #EFEBE1;
  --color-white:        #FFFFFF;
  --color-text:         #1A1A1A;
  --color-text-light:   #555555;
  --color-border:       rgba(202, 178, 115, 0.3);
  --color-overlay:      linear-gradient(270deg, rgba(166, 72, 38, 0) 19.97%, rgba(64, 28, 15, 0.94) 100.7%);

  /* Typography */
  --font-display:       'Olivera', 'Cormorant Garamond', Georgia, serif;
  --font-body:          'Open Sans', sans-serif;

  /* Font Sizes */
  --fs-hero:            96px;
  --fs-h1:              64px;
  --fs-h2:              48px;
  --fs-h3:              36px;
  --fs-h4:              24px;
  --fs-body:            16px;
  --fs-small:           14px;

  /* Spacing */
  --section-padding:    80px 0;
  --container-width:    1280px;
  --navbar-height:      72px;

  /* Radius */
  --radius-sm:          4px;
  --radius-md:          8px;
  --radius-lg:          16px;
  --radius-round:       50px;

  /* Transitions */
  --transition:         0.3s ease;
  --transition-slow:    0.6s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 400;
}

.display-heading {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--color-white);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: 400;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 48px;
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--section-padding);
}

.section--cream {
  background-color: var(--color-cream);
}

.section--dark {
  background-color: var(--color-dark);
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  border-radius: 0;
}

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

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-white);
  color: var(--color-white);
}
.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
}

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

/* =============================================
   NAVIGATION
   ============================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-navbar);
  height: var(--navbar-height);
  transition: all var(--transition);
}

#site-header.scrolled {
  box-shadow: 0 2px 20px rgba(64, 28, 15, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-height);
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

.site-logo img,
.site-logo svg {
  height: 48px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-menu a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  position: relative;
  padding-bottom: 4px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-white);
  transition: width var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--color-white);
  border-bottom: 2px solid var(--color-white);
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-icons a {
  color: var(--color-white);
  font-size: 18px;
  transition: opacity var(--transition);
}

.nav-icons a:hover {
  opacity: 0.7;
}

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

.nav-cart-wrap {
  position: relative;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--navbar-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(166, 72, 38, 0) 19.97%, rgba(64, 28, 15, 0.94) 100.7%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--color-white);
  max-width: 700px;
  margin-bottom: 32px;
}

.hero-content p {
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-social {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-social span {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-social a {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  transition: color var(--transition);
}

.hero-social a:hover {
  color: var(--color-white);
}

/* Hero sparkle */
.hero-sparkle {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-size: 24px;
}

/* =============================================
   FEATURED PRODUCTS STRIP
   ============================================= */
.featured-strip {
  background-color: var(--color-cream);
  padding: 48px 0;
}

.featured-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: var(--container-width);
  margin: 0 auto;
}

.featured-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 48px;
  border-right: 1px solid var(--color-border);
}

.featured-item:last-child {
  border-right: none;
}

.featured-item-img {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  object-fit: contain;
}

.featured-item-text h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.featured-item-text p {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* =============================================
   CATEGORIES SECTION
   ============================================= */
.categories-section {
  padding: 80px 0;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.categories-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 180px;
  color: rgba(202, 178, 115, 0.08);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.categories-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  min-width: 120px;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.category-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(166, 72, 38, 0.12);
}

.category-card svg,
.category-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.category-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
  letter-spacing: 0.05em;
}

.category-card small {
  font-size: 11px;
  color: var(--color-text-light);
}

/* =============================================
   MEET THE ARTIST BANNER
   ============================================= */
.artist-banner {
  background-color: var(--color-cream);
  padding: 80px 0;
  overflow: hidden;
}

.artist-banner-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.artist-banner-text small {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-light);
  font-weight: 600;
}

.artist-banner-text h2 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  color: var(--color-accent);
  line-height: 1.1;
  margin: 12px 0 20px;
}

.artist-banner-text p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.artist-banner-img {
  position: relative;
}

.artist-banner-img img,
.artist-banner-img svg {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery-section {
  padding: 80px 0;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  position: relative;
  transition: color var(--transition);
}

.gallery-filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  color: var(--color-accent);
}

.gallery-filter-btn:hover::after,
.gallery-filter-btn.active::after {
  width: 100%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 8px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img,
.gallery-item svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img,
.gallery-item:hover svg {
  transform: scale(1.05);
}

/* Bento layout */
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 2; }
.gallery-item:nth-child(3) { grid-column: span 1; }
.gallery-item:nth-child(4) { grid-column: span 1; }
.gallery-item:nth-child(5) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 1; }
.gallery-item:nth-child(7) { grid-column: span 1; }
.gallery-item:nth-child(8) { grid-column: span 1; }
.gallery-item:nth-child(9) { grid-column: span 1; }
.gallery-item:nth-child(10) { grid-column: span 2; }

.gallery-item-inner {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.gallery-item:nth-child(1) .gallery-item-inner,
.gallery-item:nth-child(5) .gallery-item-inner {
  height: 568px;
}

/* Gallery pagination */
.gallery-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.gallery-pagination button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  background: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--color-text);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-pagination button:hover,
.gallery-pagination button.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
}

.gallery-pagination span {
  font-size: 13px;
  font-weight: 600;
  padding: 0 8px;
}

/* =============================================
   TESTIMONIAL SECTION
   ============================================= */
.testimonial-section {
  background-color: var(--color-cream);
  padding: 80px 40px;
}

.testimonial-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--color-navbar);
  padding: 60px 48px;
  position: relative;
}

.testimonial-nav-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-light);
  writing-mode: vertical-rl;
}

.testimonial-nav-label.prev { left: -40px; }
.testimonial-nav-label.next { right: -40px; }

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  border: 3px solid var(--color-navbar);
}

.testimonial-avatar img,
.testimonial-avatar svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 24px;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: var(--color-navbar);
  font-size: 20px;
}

/* =============================================
   SHOP PAGE — NEW ARRIVALS / PRODUCTS
   ============================================= */
.shop-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.product-card:hover {
  box-shadow: 0 8px 32px rgba(64, 28, 15, 0.12);
  transform: translateY(-4px);
}

.product-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--color-cream);
}

.product-card-img img,
.product-card-img svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.product-card-body {
  padding: 16px;
}

.product-card-body h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card-body .price {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.product-stars {
  display: flex;
  gap: 2px;
  color: var(--color-navbar);
  font-size: 13px;
}

/* =============================================
   PROMO BANNER (Shop page)
   ============================================= */
.promo-banner {
  position: relative;
  background-color: var(--color-cream);
  padding: 60px 40px;
  overflow: hidden;
  margin: 40px 0;
}

.promo-banner-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.promo-banner-text h2 {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 16px;
}

.promo-banner-text p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

.promo-banner-chevron {
  position: absolute;
  right: 40%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.2;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-vision {
  padding: 80px 0;
  background: var(--color-white);
}

.about-vision-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-vision-text h3 {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-vision-text h4 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  margin-top: 32px;
}

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

.about-vision-img img,
.about-vision-img svg {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-form-section {
  padding: 80px 0;
  background: var(--color-white);
}

.contact-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.form-group label span {
  color: var(--color-accent);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1px solid #E0D9CC;
  background: #FAFAF8;
  font-size: 14px;
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  width: 100%;
}

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

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

.contact-info-box {
  background-color: var(--color-accent);
  padding: 40px 36px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  color: var(--color-white);
}

.contact-info-box h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-white);
}

.contact-info-box p,
.contact-info-box a {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  display: block;
  margin-bottom: 24px;
}

.contact-info-box a:hover {
  color: var(--color-white);
}

/* =============================================
   GOOGLE MAP
   ============================================= */
.map-section {
  width: 100%;
  height: 400px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background-color: var(--color-footer);
  padding: 60px 0 0;
}

.footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .site-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 220px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

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

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-white);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: var(--color-white);
  color: var(--color-accent);
  border-color: var(--color-white);
}

.footer-payments {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 24px 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
  justify-content: center;
}

.footer-payments img,
.footer-payments svg {
  height: 28px;
  width: auto;
}

.footer-bottom {
  text-align: center;
  padding: 16px 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
}

/* =============================================
   WOOCOMMERCE OVERRIDES
   ============================================= */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.woocommerce ul.products li.product {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  margin: 0 !important;
}

.woocommerce ul.products li.product:hover {
  box-shadow: 0 8px 32px rgba(64, 28, 15, 0.12);
  transform: translateY(-4px);
}

.woocommerce ul.products li.product img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--color-text) !important;
  padding: 12px 16px 4px !important;
}

.woocommerce ul.products li.product .price {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--color-accent) !important;
  padding: 0 16px 8px !important;
}

.woocommerce ul.products li.product .button {
  background-color: var(--color-navbar) !important;
  color: var(--color-white) !important;
  border-radius: 0 !important;
  font-size: 12px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 10px 24px !important;
  margin: 8px 16px 16px !important;
  transition: background-color var(--transition) !important;
  width: calc(100% - 32px) !important;
  text-align: center !important;
  display: block !important;
}

.woocommerce ul.products li.product .button:hover {
  background-color: var(--color-accent) !important;
}

/* Single product */
.woocommerce div.product .product_title {
  font-family: var(--font-display) !important;
  font-size: 36px !important;
  font-weight: 400 !important;
  letter-spacing: 0.03em !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--color-accent) !important;
  font-size: 28px !important;
  font-weight: 700 !important;
}

.woocommerce div.product .single_add_to_cart_button {
  background-color: var(--color-navbar) !important;
  color: var(--color-white) !important;
  border-radius: 0 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  padding: 14px 40px !important;
  transition: background-color var(--transition) !important;
}

.woocommerce div.product .single_add_to_cart_button:hover {
  background-color: var(--color-accent) !important;
}

/* Cart & Checkout */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce .checkout-button {
  background-color: var(--color-accent) !important;
  border-radius: 0 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

/* =============================================
   ELEMENTOR COMPATIBILITY
   ============================================= */
.elementor-section .elementor-container {
  max-width: var(--container-width);
}

/* Make Elementor respect our color palette */
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-display);
}

.elementor-button {
  border-radius: 0 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =============================================
   SCROLL & ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  :root {
    --fs-hero: 64px;
    --fs-h1: 48px;
    --fs-h2: 36px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(5) { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root {
    --fs-hero: 44px;
    --fs-h2: 32px;
    --navbar-height: 60px;
  }

  .container { padding: 0 20px; }

  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    background: var(--color-navbar);
    padding: 24px;
    gap: 20px;
    z-index: 999;
  }

  .nav-toggle { display: flex; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .featured-strip-inner { grid-template-columns: 1fr; }
  .artist-banner-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-vision-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; }
  .promo-banner-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item-inner { height: 200px !important; }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }

  .hero-content { padding: 0 20px; }
  .hero-content h1 { font-size: 44px; }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --fs-hero: 36px; }

  .footer-inner { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
  .categories-grid { gap: 12px; }
  .category-card { min-width: 90px; padding: 16px 12px; }
}
