/* ==========================================================================
   AURA DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Color Palette (Premium Charcoal, Warm Creams & Matte Gold) */
  --primary: #1a1a1a;            /* Obsidian Charcoal */
  --primary-rgb: 26, 26, 26;
  --primary-light: #2c2c2c;
  --accent: #c5a880;             /* Champagne Gold */
  --accent-rgb: 197, 168, 128;
  --accent-hover: #b49368;
  --accent-light: #f7f4ef;       /* Very soft gold tint */
  --bg-main: #fbf9f6;            /* Warm Alabaster */
  --bg-card: #ffffff;
  --text: #2b2b2b;               /* Deep slate */
  --text-muted: #6e675f;         /* Warm grey */
  --border: #e8e3db;             /* Stone border */
  --border-focus: #c5a880;
  --white: #ffffff;
  --success: #3e6852;            /* Forest green for positive actions */
  --error: #a84e4e;              /* Deep crimson */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  
  /* Typography & Scaling */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Durations */
  --transition-smooth: cubic-bezier(0.25, 1, 0.5, 1);
  --anim-duration: 0.4s;
  
  /* Layout Spacing */
  --header-height: 80px;
}

/* --- Base & Resets --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #d8cebf;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* --- Layout Utility Classes --- */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.font-playfair {
  font-family: var(--font-serif);
}

.text-center { text-align: center; }
.text-right { text-align: right; }

.section-padding {
  padding: 6.5rem 0;
}

.section-title-wrapper {
  margin-bottom: 3.5rem;
  text-align: center;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.section-desc {
  max-width: 600px;
  margin: 0.75rem auto 0;
  color: var(--text-muted);
  font-weight: 300;
}

/* Grid systems */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.5rem; }

/* Link styling */
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--transition-smooth);
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  position: relative;
  overflow: hidden;
  gap: 0.5rem;
}

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

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

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

.btn-outline-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem;
}

.btn-full {
  width: 100%;
}

.btn-disabled {
  background-color: var(--border) !important;
  color: var(--text-muted) !important;
  cursor: not-allowed !important;
  border-color: var(--border) !important;
}

/* --- Badges --- */
.badge {
  display: inline-flex;
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background-color: var(--accent-light);
  color: var(--accent-hover);
  border: 1px solid rgba(197, 168, 128, 0.3);
}
.badge-premium {
  background-color: var(--primary);
  color: var(--accent);
  border: 1px solid var(--accent);
}

/* --- Sticky Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(251, 249, 246, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: all 0.4s var(--transition-smooth);
}

.site-header.scrolled {
  height: 65px;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--primary);
}
.logo-link:hover {
  color: var(--accent);
}

.desktop-nav .nav-list {
  display: flex;
  list-style: none;
  gap: 2.2rem;
}

.desktop-nav .nav-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.desktop-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width 0.3s var(--transition-smooth);
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.action-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: color 0.3s;
  padding: 6px;
}
.action-btn:hover {
  color: var(--accent);
}
.action-btn i {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

.cart-btn .cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  min-width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border: 1px solid var(--bg-main);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
}

/* --- Drawers (Mobile Navigation & Cart) --- */
.mobile-drawer-overlay,
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--transition-smooth);
}

.mobile-drawer-overlay.active,
.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer,
.cart-drawer {
  position: fixed;
  top: 0;
  height: 100%;
  width: 420px;
  max-width: 90vw;
  background-color: var(--bg-card);
  z-index: 1100;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--transition-smooth);
}

.mobile-drawer {
  left: 0;
  transform: translateX(-100%);
}
.mobile-drawer.active {
  transform: translateX(0);
}

.cart-drawer {
  right: 0;
  transform: translateX(100%);
}
.cart-drawer.active {
  transform: translateX(0);
}

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

.drawer-title {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--primary);
}

.close-drawer {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  display: flex;
  padding: 5px;
  transition: color 0.3s;
}
.close-drawer:hover {
  color: var(--accent);
}
.close-drawer i {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

/* Mobile Drawer Links */
.mobile-nav {
  padding: 2rem;
  flex-grow: 1;
  overflow-y: auto;
}
.mobile-nav-list {
  list-style: none;
}
.mobile-nav-link {
  display: block;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  font-weight: 400;
}
.mobile-nav-link:hover {
  color: var(--accent);
}
.drawer-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
}

/* Cart Drawer Details */
.cart-drawer-content {
  padding: 2rem;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

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

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.cart-item-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.cart-item-price {
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
}
.qty-btn {
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: background 0.3s;
}
.qty-btn:hover {
  background-color: var(--accent-light);
}
.qty-val {
  width: 32px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
}

.cart-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  transition: color 0.3s;
}
.cart-remove-btn:hover {
  color: var(--error);
}
.cart-remove-btn i {
  width: 14px;
  height: 14px;
}

.cart-drawer-footer {
  padding: 2rem;
  border-top: 1px solid var(--border);
  background-color: var(--accent-light);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}
.cart-summary-row.total {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 0.8rem;
  margin-bottom: 1.5rem;
}

/* --- Search Overlay --- */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(251, 249, 246, 0.98);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}
.search-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.search-overlay-container {
  max-width: 800px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.75rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.search-input-wrapper input {
  flex-grow: 1;
  border: none;
  background: none;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--primary);
  outline: none;
  padding: 0 1rem;
}
.search-input-wrapper input::placeholder {
  color: #cbc4b8;
}
.search-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
}
.close-search {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  padding: 6px;
  transition: color 0.3s;
}
.close-search:hover {
  color: var(--accent);
}
.close-search i {
  width: 26px;
  height: 26px;
}

.search-results-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.search-initial-suggestions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.suggestion-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-hover);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.suggestion-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.suggestion-list a {
  font-size: 0.95rem;
  font-weight: 400;
}
.suggestion-list a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.search-results-dynamic {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.search-match-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.8rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.search-match-item:hover {
  background-color: var(--accent-light);
}
.search-match-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.search-match-info {
  flex-grow: 1;
}
.search-match-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
}
.search-match-cat {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.search-match-price {
  font-weight: 600;
  font-size: 0.9rem;
}

/* --- Hero Section --- */
.hero-section {
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 4.5fr 7.5fr;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  max-width: 480px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-image-wrapper {
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 10s ease;
}
.hero-image-wrapper:hover .hero-img {
  transform: scale(1.05);
}

/* --- Quick Discovery Section --- */
.discovery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.discovery-card {
  position: relative;
  height: 240px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background-color: var(--primary);
}

.discovery-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: all 0.6s var(--transition-smooth);
}

.discovery-card:hover .discovery-card-img {
  opacity: 0.4;
  transform: scale(1.05);
}

.discovery-card-content {
  position: relative;
  z-index: 10;
}

.discovery-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.discovery-card-link {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
}
.discovery-card-link i {
  width: 12px;
  height: 12px;
  transition: transform 0.3s;
}
.discovery-card:hover .discovery-card-link i {
  transform: translateX(3px);
}

/* --- Shop By Budget --- */
.budget-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
}

.budget-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 2.2rem 1rem;
  text-align: center;
  transition: all 0.4s var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.budget-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.budget-card-range {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.budget-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-hover);
  font-weight: 500;
}

/* --- Product Cards & Grid --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s var(--transition-smooth);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 168, 128, 0.4);
}

.product-card-img-wrapper {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: #fafafa;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

.product-card-img-secondary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth);
}

.product-card:hover .product-card-img-secondary {
  opacity: 1;
  transform: scale(1.03);
}
.product-card:hover .product-card-img {
  transform: scale(1.03);
}

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

.wishlist-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.3s;
  z-index: 10;
}
.wishlist-toggle:hover {
  color: var(--error);
  background-color: var(--white);
}
.wishlist-toggle.active {
  background-color: var(--white);
  color: var(--error);
  border-color: var(--error);
}
.wishlist-toggle i {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.wishlist-toggle:active i {
  transform: scale(0.8);
}

.product-card-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  transform: translateY(100%);
  transition: transform 0.4s var(--transition-smooth);
  z-index: 15;
}

.product-card:hover .product-card-actions {
  transform: translateY(0);
}

.product-card-action-btn {
  flex: 1;
  padding: 0.75rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
.product-card-action-btn.quick-view {
  background-color: var(--primary);
  color: var(--white);
}
.product-card-action-btn.quick-view:hover {
  background-color: var(--accent);
}
.product-card-action-btn.add-cart {
  background-color: var(--accent-light);
  color: var(--primary);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}
.product-card-action-btn.add-cart:hover {
  background-color: var(--accent);
  color: var(--white);
}

.product-card-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-tags {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-hover);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.product-card-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.product-card-name a:hover {
  color: var(--accent);
}

.product-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  flex-grow: 1;
  line-height: 1.4;
  font-weight: 300;
}

.product-card-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.product-card-price {
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
}
.product-card-price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- Corporate Gifting / Custom Gifting Sections --- */
.split-feature-section {
  padding: 0;
  border-bottom: 1px solid var(--border);
}

.split-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}

.split-feature-info {
  padding: 6.5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--white);
}

.split-feature-info.reverse {
  order: 2;
}

.split-feature-img-wrapper {
  position: relative;
  overflow: hidden;
}

.split-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
}

.feature-benefits-list {
  list-style: none;
  margin: 1.8rem 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
}
.benefit-item i {
  width: 18px;
  height: 18px;
  color: var(--accent);
  stroke-width: 2px;
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-item span {
  font-weight: 500;
  color: var(--primary);
  display: block;
}
.benefit-item p {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 0.1rem;
  line-height: 1.3;
}

/* --- How It Works --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 35px;
  right: -1.5rem;
  width: 3rem;
  height: 1px;
  border-top: 1px dashed var(--accent);
  z-index: 1;
}

.step-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: var(--white);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s;
  color: var(--accent-hover);
  position: relative;
  z-index: 2;
}
.step-card:hover .step-icon-wrapper {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--accent);
}
.step-icon-wrapper i {
  width: 28px;
  height: 28px;
  stroke-width: 1.25;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 300;
}

/* --- Occasions Editorial --- */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.editorial-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.editorial-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: transform 8s var(--transition-smooth);
}
.editorial-card:hover .editorial-card-img {
  transform: scale(1.05);
}

.editorial-card-content {
  position: relative;
  z-index: 10;
  padding: 3rem;
  max-width: 80%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(4px);
  transition: border-color 0.4s;
}
.editorial-card:hover .editorial-card-content {
  border-color: var(--accent);
}

.editorial-card-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.editorial-card-subtitle {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.editorial-card-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  font-weight: 500;
  border-bottom: 1px solid var(--white);
  padding-bottom: 2px;
}
.editorial-card-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* --- Promotional Feature Banner --- */
.promo-banner {
  background-color: var(--primary);
  color: var(--white);
  padding: 7.5rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 4rem;
}

.promo-subtitle {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.promo-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.promo-text {
  font-size: 1rem;
  color: #a8a096;
  margin-bottom: 2rem;
  font-weight: 300;
}

.promo-img-wrapper {
  border: 1px solid rgba(197, 168, 128, 0.3);
  padding: 1rem;
}
.promo-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* --- Conversion CTA Banner --- */
.conversion-banner {
  background-color: var(--accent-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  text-align: center;
}

.conversion-container {
  max-width: 680px;
  margin: 0 auto;
}

.conversion-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.conversion-text {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  font-weight: 300;
}

.conversion-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: 1.2rem;
  display: flex;
  gap: 3px;
}
.testimonial-stars i {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--accent-light);
}

.author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.author-comp {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- FAQ Accordion --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary);
  transition: color 0.3s;
}
.faq-question:hover {
  color: var(--accent);
}
.faq-question i {
  width: 18px;
  height: 18px;
  color: var(--accent);
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--transition-smooth);
}
.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Big enough to show answer */
}

/* --- Newsletter --- */
.newsletter-section {
  padding: 4.5rem 0;
  background-color: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: center;
  gap: 4rem;
}

.newsletter-title-wrapper {
  text-align: left;
  margin-bottom: 0;
}
.newsletter-title-wrapper h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.newsletter-title-wrapper p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  width: 100%;
}

.form-group {
  flex-grow: 1;
}

.form-input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.9rem 1.2rem;
  background-color: var(--bg-main);
  border: 1px solid var(--border);
  outline: none;
  transition: all 0.3s;
}
.form-input:focus {
  border-color: var(--accent);
  background-color: var(--white);
}

/* --- Product Listing Page --- */
.listing-layout {
  padding: 3rem 0 6rem;
}

.listing-header {
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
}

.breadcrumbs {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumbs a:hover {
  color: var(--accent);
}

.listing-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.listing-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 700px;
}

.listing-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  background-color: var(--white);
  padding: 1rem 1.5rem;
  border: 1px solid var(--border);
}

.listing-info-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.listing-sort-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.listing-sort-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.sort-select {
  padding: 0.4rem 1.5rem 0.4rem 0.8rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  border: 1px solid var(--border);
  outline: none;
  background: var(--bg-main) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%236e675f" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>') no-repeat right 8px center;
  background-size: 14px;
  -webkit-appearance: none;
  cursor: pointer;
}

.listing-main {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
}

/* Sidebar Filters */
.filters-sidebar {
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 1.8rem;
  height: fit-content;
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.filter-section {
  margin-bottom: 1.8rem;
}
.filter-section:not(:last-child) {
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.checkbox-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
  position: relative;
  user-select: none;
  gap: 0.6rem;
}
.checkbox-label input {
  opacity: 0;
  position: absolute;
  cursor: pointer;
}

.custom-checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid var(--border);
  background-color: var(--bg-main);
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
}
.checkbox-label:hover input ~ .custom-checkbox {
  border-color: var(--accent);
}
.checkbox-label input:checked ~ .custom-checkbox {
  background-color: var(--primary);
  border-color: var(--primary);
}
.checkbox-label input:checked ~ .custom-checkbox::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 4px;
  height: 8px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.mobile-filter-bar {
  display: none;
}

/* --- Product Detail Page --- */
.detail-layout {
  padding: 3rem 0 6rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

/* Detail Gallery */
.detail-gallery {
  display: flex;
  gap: 1.2rem;
}

.detail-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.thumb-btn {
  width: 76px;
  height: 76px;
  border: 1px solid var(--border);
  padding: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.3s;
}
.thumb-btn.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-main-img-wrapper {
  flex-grow: 1;
  border: 1px solid var(--border);
  background-color: var(--white);
  position: relative;
  aspect-ratio: 1.05;
  overflow: hidden;
}
.detail-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Detail Info Panel */
.detail-info {
  display: flex;
  flex-direction: column;
}

.detail-cat-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-hover);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.detail-name {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.detail-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}
.detail-stars {
  color: var(--accent);
  display: flex;
  gap: 2px;
}
.detail-stars i {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.detail-rating-count {
  color: var(--text-muted);
}

.detail-price-row {
  margin-bottom: 1.8rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}
.detail-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary);
}
.detail-price-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.detail-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Variant Selection */
.detail-option-group {
  margin-bottom: 1.8rem;
}
.detail-option-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.variant-btn-group {
  display: flex;
  gap: 0.8rem;
}
.variant-btn {
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 0.5rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
}
.variant-btn:hover {
  border-color: var(--accent);
}
.variant-btn.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Customization Area */
.customization-box {
  background-color: var(--accent-light);
  border: 1px solid rgba(197, 168, 128, 0.2);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.custom-input-group {
  margin-top: 0.8rem;
}
.custom-input-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.purchase-row {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
}
.purchase-row .qty-selector {
  border-color: var(--primary);
}
.purchase-row .qty-btn {
  width: 38px;
  height: 48px;
  font-size: 1rem;
}
.purchase-row .qty-val {
  width: 44px;
  font-size: 1rem;
}

.purchase-actions {
  flex-grow: 1;
  display: flex;
  gap: 0.8rem;
}
.purchase-actions .btn {
  flex: 1;
}

.corporate-bulk-callout {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--border);
  background-color: var(--white);
}
.corporate-bulk-callout i {
  width: 20px;
  height: 20px;
  color: var(--accent-hover);
  flex-shrink: 0;
  margin-top: 2px;
}
.corporate-bulk-callout h4 {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.corporate-bulk-callout p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

/* Tabs Accordion styling below details */
.detail-tabs-section {
  border-top: 1px solid var(--border);
  padding-top: 3.5rem;
}
.tab-headers {
  display: flex;
  gap: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.tab-header-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 0;
  cursor: pointer;
  color: var(--text-muted);
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}
.tab-header-btn.active {
  color: var(--primary);
  font-weight: 600;
}
.tab-header-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}
.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}
.tab-content.active {
  display: block;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.specs-table td {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
}
.specs-table td.spec-name {
  font-weight: 600;
  color: var(--primary);
  width: 25%;
}
.specs-table td.spec-val {
  color: var(--text-muted);
}

.mobile-sticky-purchase {
  display: none;
}

/* --- Cart Page --- */
.cart-layout {
  padding: 4rem 0 6rem;
}
.cart-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
}
.cart-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3.5rem;
  align-items: start;
}

.cart-items-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-items-table th {
  text-align: left;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.cart-items-table td {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.cart-table-product {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.cart-table-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border: 1px solid var(--border);
}
.cart-table-product-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.3rem;
}
.cart-table-product-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cart-table-price {
  font-weight: 600;
}

.cart-table-remove {
  text-align: right;
}

.cart-order-summary {
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
}
.summary-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.cart-summary-divider {
  border-top: 1px solid var(--border);
  margin: 1.2rem 0;
}

/* --- Checkout Layout --- */
.checkout-layout {
  padding: 4rem 0 6rem;
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
}
.checkout-section-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.checkout-form-grid .full-width {
  grid-column: span 2;
}

.checkout-form-group {
  margin-bottom: 1rem;
}
.checkout-form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.checkout-form-group input,
.checkout-form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  border: 1px solid var(--border);
  background-color: var(--white);
  outline: none;
}
.checkout-form-group input:focus,
.checkout-form-group select:focus {
  border-color: var(--accent);
}

.checkbox-option-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  cursor: pointer;
}

.checkout-summary-box {
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}
.checkout-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
  max-height: 280px;
  overflow-y: auto;
}
.checkout-item-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.checkout-item-img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 1px solid var(--border);
}
.checkout-item-name {
  font-size: 0.85rem;
  font-weight: 500;
  flex-grow: 1;
}
.checkout-item-qty {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.checkout-item-price {
  font-size: 0.85rem;
  font-weight: 600;
}

.secure-payment-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 1rem;
}
.secure-payment-badge i {
  width: 14px;
  height: 14px;
  color: var(--success);
}

/* --- Corporate Gifting Dedicated Page --- */
.corp-hero {
  background-color: var(--primary);
  color: var(--white);
  padding: 8rem 0;
  text-align: center;
  position: relative;
}
.corp-hero-content {
  max-width: 750px;
  margin: 0 auto;
}
.corp-hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.corp-hero-text {
  font-size: 1.15rem;
  color: #c9c4be;
  margin-bottom: 2.2rem;
  font-weight: 300;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.8rem;
  margin-top: 1rem;
}
.why-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.why-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--accent-light);
  color: var(--accent-hover);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.why-card-icon i {
  width: 24px;
  height: 24px;
}
.why-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.why-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  font-weight: 300;
}

/* --- Corporate Enquiry Page --- */
.enquiry-layout {
  padding: 4rem 0 6rem;
}
.enquiry-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 5rem;
  align-items: stretch;
}

.enquiry-form-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 3rem;
}
.enquiry-form-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.enquiry-form-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.enquiry-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.enquiry-form-grid .full-width {
  grid-column: span 2;
}

/* File Upload Simulation */
.file-upload-wrapper {
  border: 1px dashed var(--accent);
  background-color: var(--accent-light);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}
.file-upload-wrapper:hover {
  background-color: rgba(197, 168, 128, 0.1);
}
.file-upload-wrapper input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.upload-icon {
  width: 32px;
  height: 32px;
  color: var(--accent-hover);
  margin-bottom: 0.75rem;
}
.upload-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.2rem;
}
.upload-subtext {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.upload-preview {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.enquiry-info-panel {
  background-color: var(--primary);
  color: var(--white);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.enquiry-info-header h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
}
.enquiry-info-header p {
  color: #a8a096;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.enquiry-steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.enquiry-step-item {
  display: flex;
  gap: 1rem;
}
.enquiry-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}
.enquiry-step-text h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.enquiry-step-text p {
  font-size: 0.8rem;
  color: #a8a096;
}

/* --- Customer Account Portal --- */
.account-layout {
  padding: 3rem 0 6rem;
}
.account-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-weight: 500;
}
.account-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.account-sidebar-nav {
  list-style: none;
  background-color: var(--white);
  border: 1px solid var(--border);
}
.account-nav-item a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.account-nav-item i {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}
.account-nav-item.active a {
  background-color: var(--accent-light);
  color: var(--primary);
  font-weight: 600;
}
.account-nav-item.active i {
  color: var(--accent-hover);
}

.account-panel {
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
  min-height: 480px;
}

.account-panel-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1.8rem;
  font-weight: 500;
  color: var(--primary);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.8rem;
}

.dashboard-widgets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.widget-card {
  border: 1px solid var(--border);
  padding: 1.5rem;
  background-color: var(--bg-main);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.widget-icon {
  width: 48px;
  height: 48px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-hover);
}
.widget-icon i {
  width: 20px;
  height: 20px;
}
.widget-info h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.widget-info p {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
}

/* History lists inside account */
.history-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.history-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.history-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.history-item-details h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.history-item-details p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.history-item-price {
  font-weight: 600;
  font-size: 0.95rem;
}
.status-badge {
  display: inline-flex;
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 20px;
}
.status-ordered     { background-color: #e2f0fe; color: #1c73e8; }
.status-confirmed   { background-color: #e5f6fd; color: #0288d1; }
.status-processing  { background-color: #fef3d6; color: #b78103; }
.status-dispatched  { background-color: #f3e5f5; color: #8e24aa; }
.status-delivered   { background-color: #e8f5e9; color: #2e7d32; }
.status-pending     { background-color: #fff3e0; color: #f57c00; }
.status-approved    { background-color: #e8f5e9; color: #2e7d32; }
.status-changes     { background-color: #efebe9; color: #5d4037; }

/* --- Order Details & Quote Details Page --- */
.detail-doc-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 3rem;
}

.doc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.8rem;
  margin-bottom: 2rem;
}
.doc-title-block h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.doc-title-block p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.doc-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.doc-meta-item h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.doc-meta-item p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

/* Order timeline */
.timeline-wrapper {
  margin-bottom: 3.5rem;
  background-color: var(--bg-main);
  padding: 2rem;
  border: 1px solid var(--border);
}
.timeline-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.timeline-flow {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.timeline-flow::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 5%;
  right: 5%;
  height: 2px;
  background-color: var(--border);
  z-index: 1;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  width: 15%;
}
.timeline-node {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--text-muted);
  transition: all 0.3s;
}
.timeline-step.completed .timeline-node {
  background-color: var(--success);
  border-color: var(--success);
  color: var(--white);
}
.timeline-step.active .timeline-node {
  background-color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-light);
  color: var(--accent-hover);
}
.timeline-step-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.6rem;
  text-align: center;
}
.timeline-step.completed .timeline-step-label,
.timeline-step.active .timeline-step-label {
  color: var(--primary);
  font-weight: 600;
}

.doc-items-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2.5rem;
}
.doc-items-table th {
  text-align: left;
  padding: 0.8rem 0;
  border-bottom: 2px solid var(--primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
}
.doc-items-table td {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.doc-items-table td.doc-item-desc h4 {
  font-weight: 500;
  color: var(--primary);
}
.doc-items-table td.doc-item-desc p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.doc-totals {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2.5rem;
}
.doc-totals-box {
  width: 320px;
}
.doc-actions-row {
  display: flex;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

/* --- Skeleton Loaders --- */
.skeleton {
  background: linear-gradient(90deg, #f2ece4 25%, #eae2d6 50%, #f2ece4 75%);
  background-size: 200% 100%;
  animation: loading-skeleton 1.5s infinite;
}

.skeleton-text {
  height: 12px;
  margin-bottom: 8px;
  border-radius: 2px;
}
.skeleton-text.title { height: 24px; margin-bottom: 15px; width: 60%; }
.skeleton-text.short { width: 40%; }

.skeleton-image {
  aspect-ratio: 1;
  width: 100%;
  margin-bottom: 12px;
}

@keyframes loading-skeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --- Empty States, Loading States, Error States --- */
.state-panel {
  text-align: center;
  padding: 5rem 2rem;
  max-width: 500px;
  margin: 4rem auto;
}
.state-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--accent-light);
  color: var(--accent-hover);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.state-icon-wrapper i {
  width: 32px;
  height: 32px;
}
.state-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.state-desc {
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  font-size: 0.95rem;
  font-weight: 300;
}

/* --- Toast Notifications --- */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 380px;
  width: 100%;
  pointer-events: none;
}

.toast-item {
  background-color: var(--primary);
  color: var(--white);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: auto;
}

.toast-item.active {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  flex-shrink: 0;
  display: flex;
}
.toast-icon i {
  width: 18px;
  height: 18px;
}
.toast-success .toast-icon i { color: var(--accent); }
.toast-error .toast-icon i { color: var(--error); }
.toast-info .toast-icon i { color: var(--accent); }

.toast-message {
  font-size: 0.85rem;
  font-weight: 400;
  flex-grow: 1;
}

.toast-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  display: flex;
  padding: 2px;
  transition: color 0.3s;
}
.toast-close:hover {
  color: var(--white);
}
.toast-close i {
  width: 14px;
  height: 14px;
}

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

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* --- Laptop & Medium Screens (Max 1200px) --- */
@media (max-width: 1200px) {
  .container { padding: 0 1.5rem; }
  .hero-title { font-size: 2.8rem; }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .discovery-grid { grid-template-columns: repeat(3, 1fr); }
  .budget-grid { grid-template-columns: repeat(3, 1fr); }
  .why-choose-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Tablet Screens (Max 992px) --- */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero-img { height: 380px; }
  .split-feature-grid { grid-template-columns: 1fr; }
  .split-feature-info { padding: 4rem 2rem; }
  .split-feature-info.reverse { order: 0; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .step-card:not(:last-child)::after { display: none; }
  .editorial-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; gap: 2rem; }
  .promo-img { height: 280px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .newsletter-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .listing-main { grid-template-columns: 1fr; }
  
  /* Filter adjustments for mobile catalog */
  .filters-sidebar {
    display: none; /* We show this as a bottom sheet / drawer on mobile */
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    z-index: 1100;
    overflow-y: auto;
    border-radius: 16px 16px 0 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(100%);
    transition: transform 0.4s var(--transition-smooth);
  }
  .filters-sidebar.active {
    display: block;
    transform: translateY(0);
  }
  
  .mobile-filter-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .mobile-filter-bar .btn {
    flex: 1;
  }
  
  .detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cart-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .checkout-grid { grid-template-columns: 1fr; gap: 3rem; }
  .checkout-summary-box { position: static; }
  .enquiry-grid { grid-template-columns: 1fr; gap: 3rem; }
  .account-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* --- Mobile Navigation and Icons toggling --- */
@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }
  .desktop-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .request-quote-btn { display: none; } /* Hide on mobile header, show in mobile drawer */
  
  .logo { font-size: 1.4rem; letter-spacing: 0.15em; }
  .header-actions { gap: 0.8rem; }
  
  .section-padding { padding: 4rem 0; }
  .section-title { font-size: 2rem; }
  
  .hero-title { font-size: 2.3rem; }
  .hero-img { height: 260px; }
  
  .discovery-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .discovery-card { height: 180px; padding: 1rem; }
  .discovery-card-title { font-size: 1.1rem; }
  
  .budget-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .budget-card { padding: 1.5rem 0.5rem; }
  .budget-card-range { font-size: 1rem; }
  
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .product-card-info { padding: 0.9rem; }
  .product-card-name { font-size: 0.85rem; }
  .product-card-desc { display: none; }
  .product-card-tags { font-size: 0.65rem; }
  .product-card-price { font-size: 0.9rem; }
  
  .why-choose-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  
  .timeline-flow {
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 1.5rem;
  }
  .timeline-flow::after {
    left: 21px;
    top: 5%;
    bottom: 5%;
    width: 2px;
    height: auto;
  }
  .timeline-step {
    flex-direction: row;
    width: 100%;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }
  .timeline-step-label {
    margin-top: 0;
    text-align: left;
  }
  
  /* Details Gallery Mobile styling */
  .detail-gallery { flex-direction: column-reverse; }
  .detail-thumbnails { flex-direction: row; justify-content: center; }
  .thumb-btn { width: 64px; height: 64px; }
  .detail-name { font-size: 2rem; }
  .purchase-row { flex-direction: column; }
  .purchase-actions { width: 100%; }
  
  /* Sticky purchase controls on mobile detail */
  .mobile-sticky-purchase {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    padding: 0.8rem 1.2rem;
    z-index: 999;
    align-items: center;
    gap: 1rem;
  }
  .sticky-purchase-info {
    flex-grow: 1;
  }
  .sticky-purchase-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
  }
  .sticky-purchase-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
  }
  .sticky-purchase-btn {
    flex-grow: 2;
    padding: 0.8rem 1.2rem !important;
    font-size: 0.8rem !important;
  }
  
  /* Adjust detail layout padding for sticky footer */
  .detail-layout {
    padding-bottom: 8rem;
  }
  
  .cart-table-product-meta { display: none; }
  .cart-table-img { width: 60px; height: 60px; }
  .cart-table-product { gap: 0.8rem; }
  .cart-table-product-name { font-size: 0.85rem; }
  
  .checkout-form-grid { grid-template-columns: 1fr; }
  .checkout-form-grid .full-width { grid-column: span 1; }
  
  .enquiry-form-card { padding: 1.5rem; }
  .enquiry-form-grid { grid-template-columns: 1fr; }
  .enquiry-form-grid .full-width { grid-column: span 1; }
  
  .account-panel { padding: 1.5rem; }
  .dashboard-widgets { grid-template-columns: 1fr; }
  
  .doc-meta-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .doc-header { flex-direction: column; gap: 1rem; }
  .doc-header .text-right { text-align: left; }
  .doc-totals { justify-content: flex-start; }
  .doc-totals-box { width: 100%; }
  .doc-actions-row { flex-direction: column; }
}

@media (max-width: 480px) {
  .grid-2 { grid-template-columns: 1fr; }
  .discovery-grid { grid-template-columns: 1fr; }
  .why-choose-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SITE FOOTER DESIGN SYSTEM
   ========================================================================== */
.site-footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 6rem 0 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-sans);
}

.footer-grid {
  display: grid;
  grid-template-columns: 3.5fr 2fr 2fr 2fr 2fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.brand-col {
  max-width: 320px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--white);
  margin-bottom: 1.2rem;
  display: block;
}

.brand-tagline {
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.brand-desc {
  font-size: 0.8rem;
  color: #a8a096;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  font-weight: 300;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8a096;
  transition: all 0.3s var(--transition-smooth);
}

.social-links a:hover {
  color: var(--white);
  border-color: var(--accent);
  background-color: rgba(197, 168, 128, 0.1);
  transform: translateY(-2px);
}

.social-links a i {
  width: 16px;
  height: 16px;
}

.footer-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1.8rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: #a8a096;
  transition: all 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #7e776e;
}

.footer-info p {
  margin-bottom: 0.3rem;
  font-weight: 300;
}

.contact-info {
  display: flex;
  gap: 2.5rem;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #a8a096;
}

.contact-info i {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

/* --- Responsive Adjustments for Footer --- */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .brand-col {
    grid-column: span 2;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .brand-col {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .contact-info {
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
  }
}
