@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* ==========================================================================
   DESIGN TOKENS & VARIABLE DECLARATIONS
   ========================================================================== */
:root {
  /* Colors */
  --bg-primary: #FAF8F5;
  --bg-secondary: #FFFFFF;
  --bg-tertiary: #F3EFE9;
  --bg-dark: #1C1B19;
  --bg-dark-secondary: #2C2B29;
  
  --text-main: #2C2A27;
  --text-muted: #6B665F;
  --text-light: #FAF8F5;
  
  --accent-gold: #C5A880;
  --accent-gold-hover: #B59870;
  --accent-gold-light: #F4EFEB;
  --accent-dark-gold: #8E734E;
  
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #128C7E;
  --color-border: #E8E3DC;
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(28, 27, 25, 0.04);
  --shadow-md: 0 8px 24px rgba(28, 27, 25, 0.08);
  --shadow-lg: 0 16px 40px rgba(28, 27, 25, 0.12);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  
  /* Layout */
  --header-height: 80px;
  --container-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

button {
  font-family: var(--font-sans);
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
  transition: var(--transition-fast);
}

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

ul {
  list-style: none;
}

/* ==========================================================================
   REUSABLE UTILITY CLASSES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  gap: 10px;
}

.btn-primary {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border: 1px solid var(--bg-dark);
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--bg-dark);
}

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

.btn-accent {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  border: 1px solid var(--accent-gold);
}

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

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: white;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
  transform: translateY(-2px);
}

/* Titles & Headers */
.section-tag {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 50px auto;
  font-size: 1.05rem;
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.header {
  height: var(--header-height);
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition-fast);
}

.header.scrolled {
  height: 70px;
  box-shadow: var(--shadow-sm);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 48px;
  width: auto;
  border-radius: 50%;
  border: 1px solid var(--accent-gold);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.02em;
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.action-btn {
  font-size: 1.25rem;
  color: var(--text-main);
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-btn:hover {
  background-color: rgba(197, 168, 128, 0.1);
  color: var(--accent-gold);
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
}

/* Responsive Navigation */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-secondary);
    flex-direction: column;
    padding: 40px 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    z-index: 99;
    border-left: 1px solid var(--color-border);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .header.scrolled .nav-menu {
    top: 70px;
    height: calc(100vh - 70px);
  }
}

/* ==========================================================================
   SHOPPING CART DRAWER (SLIDE-OUT)
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 27, 25, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background-color: var(--bg-secondary);
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-smooth);
}

@media (max-width: 420px) {
  .cart-drawer {
    right: -100%;
  }
}

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

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

.cart-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
}

.close-cart-btn {
  font-size: 1.5rem;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-cart-btn:hover {
  background-color: var(--bg-primary);
  color: var(--text-main);
}

.cart-items-container {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

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

.cart-empty-message i {
  font-size: 3rem;
  color: var(--accent-gold);
}

/* Cart Item Card */
.cart-item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  object-fit: cover;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--color-border);
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

.cart-item-category {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.cart-item-price {
  font-weight: 600;
  color: var(--accent-dark-gold);
  margin-top: 4px;
}

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

.quantity-controller {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.qty-btn:hover {
  background-color: var(--bg-primary);
}

.qty-val {
  width: 32px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.remove-item-btn {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.remove-item-btn:hover {
  color: #C94A4A;
}

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

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.cart-summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--color-border);
  font-size: 1.15rem;
  font-weight: 700;
}

.cart-checkout-btn {
  width: 100%;
  margin-top: 20px;
}

/* ==========================================================================
   HOMEPAGE COMPONENTS
   ========================================================================== */

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(197, 168, 128, 0.15) 0%, rgba(28, 27, 25, 0.85) 70%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

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

.hero-tag {
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(250, 248, 245, 0.75);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-bg-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(197, 168, 128, 0.2);
  animation: rotateCircle 20s linear infinite;
}

.hero-main-img {
  width: 320px;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(197, 168, 128, 0.3);
  position: relative;
  z-index: 2;
  transform: rotate(-3deg);
  transition: transform var(--transition-smooth);
}

.hero-main-img:hover {
  transform: rotate(0deg) scale(1.02);
}

@keyframes rotateCircle {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 992px) {
  .hero {
    height: auto;
    padding: 80px 0;
  }
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-showcase {
    margin-top: 40px;
  }
}

/* Feature Highlights */
.features-bar {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--color-border);
  padding: 40px 0;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-top: 4px;
}

.feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Category Banners */
.categories-showcase {
  background-color: var(--bg-primary);
}

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

.category-card {
  height: 480px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

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

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

.category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(28, 27, 25, 0.8) 0%, rgba(28, 27, 25, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  z-index: 2;
}

.category-card-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 8px;
}

.category-card-subtitle {
  font-size: 0.85rem;
  color: rgba(250, 248, 245, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.category-card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.category-card-link i {
  transition: transform var(--transition-fast);
}

.category-card:hover .category-card-link i {
  transform: translateX(6px);
}

@media (max-width: 992px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .category-card {
    height: 380px;
  }
}

/* Call to Action Banner */
.cta-banner {
  background-color: var(--bg-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner .section-title {
  color: var(--text-light);
}

.cta-banner-desc {
  font-size: 1.1rem;
  color: rgba(250, 248, 245, 0.7);
  margin-bottom: 40px;
}

/* ==========================================================================
   PRODUCT GRID & SHOP PAGE
   ========================================================================== */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

@media (max-width: 992px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
}

/* Sidebar Filter */
.shop-sidebar {
  background-color: var(--bg-secondary);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  align-self: start;
}

.filter-section {
  margin-bottom: 32px;
}

.filter-section:last-child {
  margin-bottom: 0;
}

.filter-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-item-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: left;
}

.filter-item-btn:hover, .filter-item-btn.active {
  color: var(--text-main);
  font-weight: 600;
}

.filter-item-btn.active .filter-indicator {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.filter-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  transition: var(--transition-fast);
}

.search-wrapper {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 12px 16px 12px 40px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background-color: var(--bg-primary);
  outline: none;
  transition: var(--transition-fast);
}

.search-input:focus {
  border-color: var(--accent-gold);
  background-color: var(--bg-secondary);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Shop Header Controls */
.shop-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
  flex-wrap: wrap;
}

.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.sort-select {
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background-color: var(--bg-secondary);
  font-family: var(--font-sans);
  color: var(--text-main);
  outline: none;
  cursor: pointer;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Card */
.product-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-img-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
  background-color: var(--bg-tertiary);
  border-bottom: 1px solid var(--color-border);
}

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

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

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
}

.product-badge.gold {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
}

.product-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-main);
  line-height: 1.3;
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}

.product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-dark-gold);
}

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

.add-cart-icon-btn:hover {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-color: var(--bg-dark);
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-story {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-highlight {
  border-left: 3px solid var(--accent-gold);
  padding-left: 20px;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-main);
  margin: 30px 0;
}

.about-img-box {
  position: relative;
}

.about-main-img {
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.about-stat-box {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--accent-gold);
}

@media (max-width: 576px) {
  .about-stat-box {
    position: static;
    margin-top: 30px;
  }
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-text {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Core Values section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background-color: var(--bg-secondary);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--accent-gold-light);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 24px auto;
}

.value-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-block {
  display: flex;
  gap: 20px;
}

.contact-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  border: 1px solid var(--color-border);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-block-details h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.contact-block-details a:hover {
  color: var(--accent-gold);
}

/* Contact Form */
.contact-form-wrapper {
  background-color: var(--bg-secondary);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background-color: var(--bg-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-main);
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-gold);
  background-color: var(--bg-secondary);
}

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

.form-submit-btn {
  width: 100%;
}

.map-container {
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

/* Map Mock/Embed Overlay */
.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--bg-tertiary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  padding: 24px;
  text-align: center;
  gap: 12px;
}

.map-placeholder i {
  font-size: 2.5rem;
  color: var(--accent-gold);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background-color: var(--bg-secondary);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 24px;
  right: 40px;
  font-size: 3rem;
  color: var(--accent-gold-light);
  line-height: 1;
  pointer-events: none;
}

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

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent-gold-light);
  color: var(--accent-gold);
  font-family: var(--font-display);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.user-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FOOTER COMPONENTS
   ========================================================================== */
.footer {
  background-color: var(--bg-dark);
  color: rgba(250, 248, 245, 0.7);
  padding: 80px 0 30px 0;
  font-size: 0.9rem;
  border-top: 1px solid var(--bg-dark-secondary);
}

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

.footer-brand h2 {
  font-family: var(--font-display);
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-desc {
  margin-bottom: 24px;
  line-height: 1.7;
}

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-dark-secondary);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.social-link:hover {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
}

.footer-heading {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

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

.footer-link:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

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

.footer-contact-icon {
  color: var(--accent-gold);
  font-size: 1.05rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-text a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid var(--bg-dark-secondary);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   SCROLL ANIMATIONS (INTERSECTION OBSERVER)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   MODALS AND NOTIFICATIONS
   ========================================================================== */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 1100;
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.toast.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast i {
  color: var(--accent-gold);
}

/* ==========================================================================
   ADD TO CART ANIMATION
   ========================================================================== */
.flying-cart-item {
  position: fixed;
  border-radius: 50%;
  object-fit: cover;
  z-index: 9999;
  pointer-events: none;
  border: 2px solid var(--accent-gold);
  box-shadow: var(--shadow-md);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes cartBounce {
  0% { transform: scale(1); }
  30% { transform: scale(1.3); }
  50% { transform: scale(0.95); }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.cart-bounce {
  animation: cartBounce 0.6s ease;
}
