/* ==========================================================================
   BLU IDOL - ZAISHA REDESIGN THEME (LIGHT CREAM, TAN & GOLD)
   ========================================================================== */

:root {
  --primary-color: #121212;      /* Pure Slate/Black */
  --accent-color: #d2b48c;       /* Tan/Gold accent */
  --accent-dark: #61330a;        /* Deep Bronze/Brown */
  --bg-light: #ffffff;           /* White */
  --bg-cream: #fbf7f0;           /* Soft Cream */
  --bg-tan: #e9dccb;             /* Tan Background */
  --text-dark: #121212;          /* Black Text */
  --text-light: #ffffff;         /* White Text */
  --text-muted: #666666;         /* Muted Slate */
  --border-color: #e5e5e5;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', serif;
  
  --transition-smooth: all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

/* --- Reset & Global --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

/* --- Typography Helpers --- */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: lowercase;
  color: var(--accent-dark);
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 12px auto 0;
  font-weight: 400;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  color: var(--text-light);
}

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-color);
  padding: 2px 0;
  position: relative;
}

.btn-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--primary-color);
  transition: var(--transition-smooth);
}

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

.btn-link:hover::after {
  background-color: var(--accent-dark);
  width: 0;
}

/* --- Announcement Bar --- */
.announcement-bar {
  background-color: var(--bg-tan);
  color: var(--text-dark);
  padding: 8px 20px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  position: relative;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.announcement-content {
  display: flex;
  gap: 12px;
  align-items: center;
}

.announcement-bar .separator {
  color: var(--accent-dark);
}

.announcement-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.6;
}

.announcement-close:hover {
  opacity: 1;
}

/* --- Header / Navigation --- */
.header {
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Logo styling */
.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img-el {
  height: 50px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
}

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

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--primary-color);
  line-height: 1.1;
}

.logo-tagline {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
  font-weight: 600;
}

/* Desktop Navigation */
.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  padding: 6px 0;
  position: relative;
}

.nav-desktop a:hover {
  color: var(--accent-dark);
}

/* Dropdown Menu */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--bg-light);
  min-width: 160px;
  border: 1px solid var(--border-color);
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown li a {
  display: block;
  padding: 8px 16px;
  font-size: 0.8rem;
}

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

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--text-dark);
  cursor: pointer;
  position: relative;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.icon-btn:hover {
  background-color: var(--bg-cream);
  color: var(--accent-dark);
}

.icon-btn .badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background-color: var(--primary-color);
  color: var(--text-light);
  font-size: 0.6rem;
  font-weight: 700;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger menu button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-smooth);
}

/* Mobile Nav Drawer */
.nav-mobile {
  display: none;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--text-dark);
  background-color: var(--bg-cream);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(251, 247, 240, 0.4);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  width: 100%;
  text-align: center;
}

.hero-text {
  max-width: 800px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  color: var(--accent-dark);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: lowercase;
  color: var(--accent-dark);
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 4;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--text-dark);
}

.scroll-text {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  opacity: 0.6;
}

/* --- Trust Strip --- */
.trust-strip {
  background-color: var(--bg-cream);
  color: var(--text-dark);
  padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
}

.trust-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-item i {
  color: var(--accent-dark);
}

/* --- Collections Section --- */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.collection-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.collection-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
}

.collection-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  color: var(--text-light);
  z-index: 2;
  text-align: center;
}

.collection-info h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.collection-info .btn-link {
  color: var(--text-light);
}

.collection-info .btn-link::after {
  background-color: var(--text-light);
}

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

/* --- Featured Products --- */
.product-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  background: none;
  border: 1px solid var(--border-color);
  padding: 8px 20px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
}

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

.product-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

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

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-badges span {
  padding: 4px 8px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 2px;
  color: #ffffff;
}

.badge-new { background-color: var(--primary-color); }
.badge-best { background-color: var(--accent-dark); }
.badge-sale { background-color: #cc0000; }

.product-actions {
  position: absolute;
  right: 12px;
  top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

.product-actions button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.product-actions button:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.product-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  font-weight: 600;
}

.product-name {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 6px;
}

.product-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--accent-dark);
  font-size: 0.7rem;
  margin-bottom: 10px;
}

.product-stars span {
  color: var(--text-muted);
  margin-left: 4px;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  margin-top: auto;
}

.price-current {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

.price-original {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.price-off {
  font-size: 0.75rem;
  font-weight: 600;
  color: #cc0000;
}

.btn-add-cart {
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 0;
  font-size: 0.75rem;
  gap: 6px;
}

.btn-add-cart:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.view-all-wrap {
  text-align: center;
  margin-top: 50px;
}

/* --- Promo Banner Section --- */
.promo-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  color: var(--text-dark);
  background-color: var(--bg-cream);
}

.promo-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.promo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(251, 247, 240, 0.7);
  z-index: 2;
}

.promo-content {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.promo-text {
  max-width: 600px;
}

.promo-eyebrow {
  color: var(--accent-dark);
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 12px;
}

.promo-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.2;
}

.promo-subtitle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  opacity: 0.9;
}

.promo-actions .btn {
  background-color: var(--primary-color);
  color: var(--text-light);
}

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

/* --- Features Section --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--bg-cream);
  border-radius: 4px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.2rem;
  color: var(--accent-dark);
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.feature-card p {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Testimonials Section --- */
.testimonials-section {
  background-color: var(--bg-cream);
  color: var(--text-dark);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  min-height: 200px;
  position: relative;
}

.testimonial-card {
  display: none;
  text-align: center;
}

.testimonial-card.active {
  display: block;
}

.testimonial-stars {
  color: var(--accent-dark);
  margin-bottom: 20px;
  font-size: 0.8rem;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.testimonial-author div {
  text-align: left;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.slider-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* --- Instagram Section --- */
.instagram-section {
  padding-bottom: 0;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 40px;
}

.ig-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.ig-tile:hover .ig-hover {
  opacity: 1;
}

/* --- About Section --- */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 4px;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 220px;
}

.about-badge .badge-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.about-content {
  padding-left: 10px;
}

.about-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  opacity: 0.85;
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-color);
}

.highlight-item i {
  color: var(--accent-dark);
}

/* --- Newsletter Section --- */
.newsletter-section {
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 60px 0;
}

.newsletter-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.newsletter-text {
  max-width: 500px;
}

.newsletter-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 6px;
}

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

.newsletter-form {
  flex-grow: 1;
  max-width: 500px;
}

.input-wrap {
  display: flex;
  border-radius: 2px;
  overflow: hidden;
}

.newsletter-form input {
  flex-grow: 1;
  border: 1px solid var(--border-color);
  border-right: none;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  outline: none;
}

.newsletter-form button {
  border-radius: 0;
  padding: 0 24px;
}

.form-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* --- Footer --- */
.footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 60px 0 0;
}

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

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

.footer-brand .logo-name {
  color: #ffffff;
}

.footer-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.footer-social a:hover {
  background-color: var(--accent-dark);
  color: #ffffff;
}

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-color);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  opacity: 0.8;
}

.contact-item i {
  color: var(--accent-color);
}

.footer-contact .btn {
  margin-top: 12px;
  align-self: flex-start;
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  opacity: 0.6;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payment-icons {
  display: flex;
  gap: 12px;
  font-size: 1.1rem;
}

/* --- Cart Sidebar --- */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}

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

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

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

.cart-close {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--text-dark);
  cursor: pointer;
}

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

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  color: var(--text-muted);
}

.cart-empty p {
  font-size: 0.9rem;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 2px;
}

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

.cart-item-name {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.cart-item-price {
  font-size: 0.85rem;
  font-weight: 700;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.qty-btn {
  background-color: var(--bg-cream);
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.75rem;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #cc0000;
  cursor: pointer;
}

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

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

.btn-full {
  width: 100%;
}

.cart-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 99;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

/* --- Quick View Modal --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.modal {
  background-color: #ffffff;
  width: 90%;
  max-width: 800px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transform: scale(0.95);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

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

.modal-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-info .product-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.modal-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* --- Responsive Media Queries --- */

@media screen and (max-width: 992px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-desktop {
    display: none;
  }
  
  .nav-mobile {
    display: block;
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #ffffff;
    padding: 30px 20px;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-color);
  }
  
  .nav-mobile.active {
    left: 0;
  }
  
  .nav-mobile ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .nav-mobile a {
    font-size: 1.4rem;
    color: var(--primary-color);
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .modal-body {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
