/* ==========================================
   LS ETHNIC STUDIO - LUXURY GOLD FASHION STORE
   PREMIUM DESIGN SYSTEM & MOBILE RESPONSIVE STYLESHEET
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
  --primary: #6b0c26;
  --primary-light: #8e1537;
  --primary-dark: #430516;
  --secondary: #d4af37;
  --secondary-light: #f7e6ad;
  --secondary-dark: #a88620;
  
  --bg-main: #faf6f0;
  --bg-card: #ffffff;
  --bg-alt: #f3ece1;
  --bg-header: rgba(250, 246, 240, 0.98);
  
  --text-main: #231c1e;
  --text-muted: #6e6467;
  --text-light: #9e9396;
  
  --border-color: #e5d8c8;
  --border-gold: rgba(212, 175, 55, 0.4);
  
  --shadow-sm: 0 4px 15px rgba(107, 12, 38, 0.06);
  --shadow-md: 0 8px 25px rgba(107, 12, 38, 0.12);
  --shadow-lg: 0 16px 45px rgba(107, 12, 38, 0.18);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

[data-theme="dark"] {
  --bg-main: #120c0e;
  --bg-card: #1d1417;
  --bg-alt: #281c21;
  --bg-header: rgba(18, 12, 14, 0.98);
  
  --text-main: #f7f1f3;
  --text-muted: #b8acb0;
  --text-light: #807377;
  
  --border-color: #38292f;
  --border-gold: rgba(212, 175, 55, 0.5);
  
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 16px 45px rgba(0, 0, 0, 0.9);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, .font-serif {
  font-family: 'Playfair Display', serif;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* TOP ANNOUNCEMENT BAR */
.top-bar {
  background: linear-gradient(90deg, #2b030e, var(--primary), #2b030e);
  color: #ffffff;
  padding: 8px 16px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border-gold);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.top-bar-item span {
  color: var(--secondary-light);
  font-weight: 700;
}

/* NAVBAR BRAND LOGO SECTION */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-header);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 12px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
  flex-shrink: 0;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  line-height: 1.1;
  white-space: nowrap;
}

[data-theme="dark"] .brand-title {
  color: var(--secondary);
}

.brand-subtitle {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary-dark);
  font-weight: 700;
  margin-top: 2px;
  white-space: nowrap;
}

[data-theme="dark"] .brand-subtitle {
  color: var(--secondary-light);
}

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

.nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 6px 0;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

[data-theme="dark"] .nav-link:hover, [data-theme="dark"] .nav-link.active {
  color: var(--secondary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  transition: var(--transition);
}

[data-theme="dark"] .nav-link::after {
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.action-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
}

.action-btn:hover {
  border-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
}

.badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-whatsapp-nav {
  background: #25D366;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-whatsapp-nav:hover {
  background: #1eb856;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.mobile-menu-toggle {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* BUTTON SYSTEM */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 30px;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(107, 12, 38, 0.3);
  border: 1px solid var(--secondary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(107, 12, 38, 0.45);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: #231c1e;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary:hover {
  background: var(--secondary-light);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-3px);
}

[data-theme="dark"] .btn-outline {
  border-color: var(--secondary);
  color: var(--secondary);
}

[data-theme="dark"] .btn-outline:hover {
  background: var(--secondary);
  color: #231c1e;
}

/* TABBED PAGES ANIMATION */
.page-view {
  display: none;
  animation: fadeIn 0.45s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.page-view.active-page {
  display: block;
}

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

/* HERO SLIDER SECTION */
.hero-slider-section {
  position: relative;
  background: linear-gradient(135deg, rgba(107, 12, 38, 0.08) 0%, rgba(212, 175, 55, 0.14) 100%);
  padding: 60px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.slider-container {
  position: relative;
  width: 100%;
}

.slide-item {
  display: none;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.slide-item.active-slide {
  display: grid;
  animation: slideFade 0.6s ease forwards;
}

@keyframes slideFade {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

/* HERO LOGO EMBLEM WITH SUBTITLE DIRECTLY UNDER LOGO TEXT */
.hero-logo-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-logo-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  flex-shrink: 0;
}

.hero-logo-text-block {
  display: flex;
  flex-direction: column;
}

.hero-logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

[data-theme="dark"] .hero-logo-title {
  color: var(--secondary);
}

.hero-logo-sub {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--secondary-dark);
  font-weight: 700;
  margin-top: 3px;
}

[data-theme="dark"] .hero-logo-sub {
  color: var(--secondary-light);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--secondary);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  margin-top: 6px;
  width: fit-content;
}

[data-theme="dark"] .hero-tag {
  color: var(--secondary);
}

.hero-headline {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 18px;
}

[data-theme="dark"] .hero-headline {
  color: var(--secondary);
}

.hero-subheading {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* HERO SLIDE VISUAL FRAME */
.hero-visual-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 220px 220px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(107, 12, 38, 0.28);
  border: 6px solid var(--bg-card);
  background: linear-gradient(180deg, #3d0517 0%, #1a0209 100%);
  margin: 0 auto;
}

.hero-slide-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
}

.hero-badge-floating {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
  border: 1px solid var(--secondary);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
}

[data-theme="dark"] .hero-badge-floating {
  background: rgba(28, 22, 25, 0.95);
}

.badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.badge-text-title {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text-main);
}

.badge-text-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* SLIDER CONTROLS & DOTS */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active-dot {
  width: 32px;
  border-radius: 10px;
  background: var(--primary);
}

[data-theme="dark"] .dot.active-dot {
  background: var(--secondary);
}

/* SECTION COMMON STYLES */
.section-padding {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 55px;
}

.section-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: rgba(107, 12, 38, 0.08);
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid var(--border-gold);
}

[data-theme="dark"] .section-badge {
  color: var(--secondary);
  background: rgba(212, 175, 55, 0.12);
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-main);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* WELCOME SECTION */
.welcome-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 55px;
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
}

.welcome-title {
  font-size: 2.3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

[data-theme="dark"] .welcome-title {
  color: var(--secondary);
}

.welcome-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* FEATURED CATEGORIES */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.category-img-box {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.category-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-img-box img {
  transform: scale(1.07);
}

.category-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.category-title {
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.category-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* WHY CHOOSE US GRID */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(107, 12, 38, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

[data-theme="dark"] .why-icon {
  background: rgba(212, 175, 55, 0.12);
  color: var(--secondary);
}

.why-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* PROMISE QUOTE SECTION */
.promise-quote-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  margin-top: 40px;
  border: 1px solid var(--secondary);
}

.quote-icon {
  font-size: 2.8rem;
  color: var(--secondary);
  margin-bottom: 20px;
  opacity: 0.8;
}

.promise-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 24px;
}

.promise-author {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 1px;
}

/* REVIEWS GRID */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars-rating {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 18px;
}

.review-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
}

/* CATALOG CONTROLS */
.catalog-controls {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.search-input-box {
  position: relative;
  flex: 1;
  min-width: 250px;
}

.search-input-box input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-main);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.search-input-box input:focus {
  border-color: var(--primary);
}

.search-input-box i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.filter-select-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.custom-select {
  padding: 11px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-main);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
}

/* PRODUCTS GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.product-img-box {
  position: relative;
  width: 100%;
  padding-top: 133%;
  overflow: hidden;
  background: #ede6df;
  cursor: pointer;
}

.product-img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.product-details {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.product-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

[data-theme="dark"] .product-price {
  color: var(--secondary);
}

.sizes-group {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.size-pill {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.product-desc-snippet {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.btn-buy-wa {
  background: #25D366;
  color: #ffffff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-buy-wa:hover {
  background: #1eb856;
}

.btn-add-cart {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-add-cart:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ABOUT US PAGE STYLES */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.why-love-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.why-love-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-love-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.why-love-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(107, 12, 38, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 12px;
}

[data-theme="dark"] .why-love-icon {
  background: rgba(212, 175, 55, 0.12);
  color: var(--secondary);
}

.why-love-title {
  font-size: 0.98rem;
  font-weight: 700;
}

/* CONTACT US PAGE STYLES */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-text h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-main);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
}

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

/* FOOTER */
footer.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 70px 0 30px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 14px;
  max-width: 320px;
}

.footer-column h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

[data-theme="dark"] .footer-column h4 {
  color: var(--secondary);
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: var(--transition);
  cursor: pointer;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

[data-theme="dark"] .footer-links a:hover {
  color: var(--secondary);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 25px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* CART DRAWER MODAL */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: var(--bg-card);
  box-shadow: var(--shadow-lg);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

.cart-header h3 {
  font-size: 1.3rem;
  color: var(--primary);
}

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

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-color);
}

.cart-item-img {
  width: 65px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

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

.cart-item-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.cart-item-price {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
}

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

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ==========================================
   MOBILE & TABLET RESPONSIVE BREAKPOINTS
   ========================================== */

@media (max-width: 1024px) {
  .hero-headline { font-size: 2.8rem; }
  .slide-item { grid-template-columns: 1fr; gap: 35px; }
  .categories-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-love-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 14px; }
  
  /* TOP ANNOUNCEMENT BAR MOBILE FIX */
  .top-bar-content {
    justify-content: center;
    text-align: center;
    gap: 6px;
    font-size: 0.76rem;
  }
  .top-bar-item-subtext {
    display: none; /* Hide long subtext on small phone top bar */
  }

  /* HEADER & NAV ACTIONS MOBILE FIX */
  .nav-wrapper {
    padding: 10px 0;
    gap: 8px;
  }

  .brand-logo { gap: 8px; }
  .brand-logo-img {
    width: 42px;
    height: 42px;
  }
  .brand-title {
    font-size: 1.15rem;
    line-height: 1.1;
    white-space: nowrap;
  }
  .brand-subtitle {
    font-size: 0.62rem;
    letter-spacing: 1px;
    white-space: nowrap;
    margin-top: 1px;
  }

  /* Right Action Bar Icon Buttons */
  .nav-actions {
    gap: 6px;
  }

  .action-btn {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  /* Hide huge green text pill button on mobile header to prevent icon overlap */
  .btn-whatsapp-nav {
    display: none;
  }

  /* Show mobile hamburger toggle icon button */
  .mobile-menu-toggle {
    display: flex;
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }

  /* SLIDE-DOWN MOBILE NAV DRAWER */
  .nav-menu {
    position: fixed;
    top: 62px;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    flex-direction: column;
    padding: 16px 20px 24px;
    border-bottom: 3px solid var(--secondary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-160%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 999;
  }
  .nav-menu.active-menu { transform: translateY(0); }
  
  .nav-link {
    font-size: 1.05rem;
    padding: 11px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
  }
  
  .mobile-menu-wa-cta {
    display: block !important;
    width: 100%;
    margin-top: 14px;
  }

  /* HERO SECTION MOBILE LOGO FIX */
  .hero-slider-section { padding: 30px 0 45px; }
  .hero-logo-box {
    gap: 12px;
    margin-bottom: 16px;
  }
  .hero-logo-img {
    width: 64px;
    height: 64px;
  }
  .hero-logo-title {
    font-size: 1.35rem;
    line-height: 1.1;
  }
  .hero-logo-sub {
    font-size: 0.68rem;
    letter-spacing: 1.5px;
  }
  .hero-tag {
    font-size: 0.78rem;
    padding: 4px 12px;
    margin-top: 4px;
  }

  .hero-headline {
    font-size: 1.95rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .hero-subheading {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 22px;
  }
  .hero-cta-group {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-visual-frame {
    max-width: 310px;
    border-radius: 155px 155px var(--radius-md) var(--radius-md);
    border-width: 4px;
  }
  .hero-slide-img { height: 360px; }
  
  .hero-badge-floating {
    padding: 8px 12px;
    gap: 10px;
    bottom: 12px;
  }
  .badge-icon { width: 34px; height: 34px; font-size: 0.95rem; }
  .badge-text-title { font-size: 0.85rem; }
  .badge-text-sub { font-size: 0.72rem; }

  /* SECTION HEADINGS */
  .section-padding { padding: 45px 0; }
  .section-header { margin-bottom: 25px; }
  .section-title { font-size: 1.75rem; }
  .section-subtitle { font-size: 0.9rem; }

  /* Welcome & About Cards Mobile */
  .welcome-box, .about-card, .contact-info-card, .contact-form-card {
    padding: 20px 16px;
    border-radius: var(--radius-md);
  }
  .welcome-title { font-size: 1.55rem; }
  .welcome-desc { font-size: 0.92rem; }

  /* Categories Grid */
  .categories-grid, .reviews-grid { grid-template-columns: 1fr; gap: 18px; }
  .category-img-box { height: 240px; }

  /* Product Catalog Controls */
  .catalog-controls { flex-direction: column; align-items: stretch; padding: 14px; }
  .search-input-box { width: 100%; }
  .filter-select-group { width: 100%; flex-direction: column; }
  .custom-select { width: 100%; }

  /* 2-Column Mobile Shopping Product Grid */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .product-details { padding: 10px; }
  .product-title { font-size: 0.9rem; line-height: 1.25; }
  .product-price { font-size: 1.08rem; margin-bottom: 4px; }
  .sizes-group { gap: 3px; margin-bottom: 6px; }
  .size-pill { font-size: 0.68rem; padding: 1px 4px; }
  .product-desc-snippet { display: none; }
  .product-actions { grid-template-columns: 1fr; gap: 6px; }
  .btn-buy-wa, .btn-add-cart { padding: 7px 4px; font-size: 0.75rem; }

  /* Why Love Us Mobile */
  .why-love-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .why-love-item { padding: 14px 8px; }

  /* Quote Card */
  .promise-quote-card { padding: 30px 16px; }
  .promise-quote-text { font-size: 1.05rem; }

  /* Footer Mobile */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  footer.site-footer { padding: 40px 0 20px; margin-top: 40px; }

  /* Cart Drawer Mobile */
  .cart-drawer { max-width: 100%; right: -100%; }
}

@media (max-width: 380px) {
  .brand-title { font-size: 1.05rem; }
  .brand-subtitle { font-size: 0.58rem; letter-spacing: 0.8px; }
  .brand-logo-img { width: 36px; height: 36px; }
  .action-btn, .mobile-menu-toggle { width: 32px; height: 32px; font-size: 0.88rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-tag { font-size: 0.62rem; padding: 2px 4px; top: 4px; left: 4px; }
}
