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

:root {
  --primary-color: #0E3A2F;
  --primary-hover: #08251E;
  --secondary-color: #D4AF37;
  --secondary-hover: #BCA02E;
  --bg-color: #FDFBF7;
  --card-bg: #FFFFFF;
  --text-dark: #1C2220;
  --text-light: #5B6662;
  --border-color: #E2E8F0;
  --gold-light: #F7F3E9;
  --shadow-sm: 0 2px 4px rgba(14, 58, 47, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(14, 58, 47, 0.08), 0 4px 6px -2px rgba(14, 58, 47, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(14, 58, 47, 0.15), 0 10px 10px -5px rgba(14, 58, 47, 0.08);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
  background-color: rgba(253, 251, 247, 0.95);
}

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

header.scrolled .nav-wrapper {
  height: 65px;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 50px;
  width: auto;
  border-radius: 50%;
  border: 2px solid var(--secondary-color);
  object-fit: cover;
  transition: var(--transition-smooth);
}

header.scrolled .logo-img {
  height: 42px;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.brand-subtitle {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary-color);
  display: block;
  font-weight: 500;
  margin-top: -3px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--secondary-color);
  transition: var(--transition-smooth);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.action-btn {
  font-size: 1.25rem;
  color: var(--primary-color);
  position: relative;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.action-btn:hover {
  background-color: var(--gold-light);
  color: var(--secondary-color);
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--secondary-color);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.menu-toggle {
  display: none;
}

/* Mobile responsive menu */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-color);
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    gap: 2rem;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-lg);
  }

  header.scrolled .nav-menu {
    top: 65px;
    height: calc(100vh - 65px);
  }

  .nav-menu.active {
    left: 0;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  overflow: hidden;
  margin-top: 0;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(14, 58, 47, 0.8) 0%, rgba(14, 58, 47, 0.95) 100%), 
                    url('assets/logo.jpeg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--primary-color);
  background-attachment: fixed;
  z-index: 1;
}

/* Parallax adjustment for mobile (fixed attachment causes issues on mobile) */
@media (max-width: 768px) {
  .hero-bg-overlay {
    background-attachment: scroll;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  color: white;
  padding: 0 1rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  color: rgba(253, 251, 247, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.5px;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-btn-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (max-width: 480px) {
  .hero-btn-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--secondary-color);
  color: #1C2220;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  border: 1px solid rgba(253, 251, 247, 0.4);
  color: white;
  background-color: rgba(253, 251, 247, 0.05);
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
  background-color: rgba(253, 251, 247, 0.1);
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Trust Banner */
.trust-banner {
  padding: 4rem 0;
  background-color: var(--gold-light);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

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

@media (max-width: 576px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.trust-item {
  text-align: center;
  padding: 1rem;
  transition: var(--transition-smooth);
}

.trust-item:hover {
  transform: translateY(-5px);
}

.trust-icon {
  font-size: 2.25rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: inline-block;
  transition: var(--transition-smooth);
}

.trust-item:hover .trust-icon {
  color: var(--secondary-color);
  transform: scale(1.1);
}

.trust-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.trust-text {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Section Header */
.section {
  padding: 7rem 0;
}

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

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem auto;
}

.section-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary-color);
  letter-spacing: 4px;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
}

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

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
}

.section-divider span {
  height: 1px;
  background-color: var(--secondary-color);
  width: 50px;
}

.section-divider i {
  color: var(--secondary-color);
  font-size: 0.8rem;
}

/* Category Filters */
.catalog-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(14, 58, 47, 0.15);
  color: var(--text-dark);
  position: relative;
  background-color: transparent;
}

.filter-btn.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.filter-btn:not(.active):hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background-color: rgba(14, 58, 47, 0.02);
}

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

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

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

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

.product-card {
  background-color: var(--card-bg);
  border-bottom: 2px solid transparent;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.product-img-container {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: var(--gold-light);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2;
}

.badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.35rem 0.75rem;
  color: white;
  border-radius: 0;
}

.badge-tag {
  background-color: var(--primary-color);
}

.badge-sale {
  background-color: var(--secondary-color);
}

.product-actions-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  transform: translateY(100%);
  transition: var(--transition-smooth);
  z-index: 2;
}

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

.overlay-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: white;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.overlay-btn:hover {
  background-color: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

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

.add-to-cart-btn-card:hover {
  background-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.product-category {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-rating {
  display: flex;
  gap: 3px;
  color: var(--secondary-color);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.product-price-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

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

.product-price-old {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: var(--text-light);
}

/* Brand Story Section */
.story-split {
  display: flex;
  align-items: center;
  gap: 5rem;
}

@media (max-width: 992px) {
  .story-split {
    flex-direction: column;
    gap: 3rem;
  }
}

.story-content {
  flex: 1;
}

.story-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.story-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.story-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

.story-feature-item {
  display: flex;
  gap: 1rem;
}

.story-feature-icon {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-top: 0.2rem;
}

.story-feature-title {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

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

.story-image-container {
  flex: 1;
  position: relative;
}

.story-img-wrapper {
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
  aspect-ratio: 4/5;
  overflow: hidden;
}

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

.story-image-container:hover .story-img {
  transform: scale(1.05);
}

.story-image-container::before {
  content: '';
  position: absolute;
  top: 30px;
  left: -30px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--secondary-color);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 992px) {
  .story-image-container::before {
    display: none;
  }
}

/* Newsletter Section */
.newsletter {
  background-color: var(--primary-color);
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.newsletter-content {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.newsletter-tag {
  color: var(--secondary-color);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.newsletter-desc {
  color: rgba(253, 251, 247, 0.85);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-bottom: 2px solid rgba(253, 251, 247, 0.3);
  padding-bottom: 0.5rem;
  max-width: 500px;
  margin: 0 auto;
  transition: var(--transition-smooth);
}

.newsletter-form:focus-within {
  border-color: var(--secondary-color);
}

.newsletter-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  color: white;
  padding: 0.75rem 0.5rem;
  font-size: 1rem;
  font-family: var(--font-body);
}

.newsletter-input:focus {
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(253, 251, 247, 0.5);
}

.newsletter-submit-btn {
  background: transparent;
  color: var(--secondary-color);
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 1rem;
}

.newsletter-submit-btn:hover {
  color: white;
}

.newsletter-success {
  display: none;
  color: var(--secondary-color);
  font-weight: 500;
  margin-top: 1rem;
  animation: fadeInUp 0.4s ease;
}

/* Footer styling */
footer {
  background-color: #08251E;
  color: #D3DAD8;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-logo-img {
  height: 45px;
  width: auto;
  border-radius: 50%;
  border: 1.5px solid var(--secondary-color);
}

.footer-desc {
  color: rgba(211, 218, 216, 0.7);
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(253, 251, 247, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 1px solid rgba(253, 251, 247, 0.1);
}

.social-link:hover {
  background-color: var(--secondary-color);
  color: #1C2220;
  transform: translateY(-3px);
  border-color: var(--secondary-color);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1.5px;
  background-color: var(--secondary-color);
}

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

.footer-link-item a {
  color: rgba(211, 218, 216, 0.7);
}

.footer-link-item a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
  color: rgba(211, 218, 216, 0.7);
}

.footer-contact-item i {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(211, 218, 216, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(211, 218, 216, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--secondary-color);
}

/* Modals & Backdrop Drawer Overlay */
.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 58, 47, 0.4);
  backdrop-filter: blur(5px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background-color: var(--bg-color);
  z-index: 1001;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

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

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

.cart-drawer-header {
  padding: 2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

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

.cart-close-btn:hover {
  background-color: var(--gold-light);
  color: var(--secondary-color);
}

.cart-drawer-body {
  flex-grow: 1;
  padding: 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cart-empty-state {
  text-align: center;
  margin: auto;
  color: var(--text-light);
}

.cart-empty-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.cart-item {
  display: flex;
  gap: 1.25rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  padding-bottom: 1.25rem;
  align-items: center;
}

.cart-item-img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  background-color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

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

.cart-item-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.cart-item-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.cart-item-price {
  font-weight: 600;
  color: var(--primary-color);
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(14, 58, 47, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--primary-color);
}

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

.qty-val {
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  color: var(--text-light);
  font-size: 1.1rem;
  padding: 0.5rem;
}

.cart-item-remove:hover {
  color: #DC2626;
}

.cart-drawer-footer {
  padding: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  background-color: var(--gold-light);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.cart-summary-total {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  border-top: 1px dashed rgba(212, 175, 55, 0.3);
  padding-top: 1rem;
  margin-bottom: 1.5rem;
}

.checkout-btn {
  width: 100%;
  padding: 1.15rem;
  text-align: center;
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.checkout-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 58, 47, 0.15);
}

.cart-trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 1rem;
}

.cart-trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.cart-trust-badge-item i {
  color: var(--secondary-color);
}

/* Quick View Modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 58, 47, 0.5);
  backdrop-filter: blur(6px);
  z-index: 1010;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

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

.modal-content {
  background-color: var(--bg-color);
  width: 100%;
  max-width: 900px;
  max-height: 90%;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  transform: scale(0.9);
  transition: cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

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

@media (max-width: 768px) {
  .modal-content {
    flex-direction: column;
  }
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary-color);
  z-index: 10;
}

.modal-close-btn:hover {
  background-color: var(--primary-color);
  color: white;
  transform: rotate(90deg);
}

.modal-gallery {
  flex: 1.2;
  background-color: var(--gold-light);
  aspect-ratio: 3/4;
}

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

.modal-details {
  flex: 1.5;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
}

@media (max-width: 576px) {
  .modal-details {
    padding: 2rem 1.5rem;
  }
}

.modal-category {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--secondary-color);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.modal-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.modal-price-old {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: var(--text-light);
}

.modal-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 1.5rem;
}

.modal-stars {
  color: var(--secondary-color);
  display: flex;
  gap: 3px;
}

.modal-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.modal-meta-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.modal-meta-item {
  display: flex;
  gap: 0.5rem;
}

.modal-meta-label {
  font-weight: 600;
  color: var(--primary-color);
  min-width: 100px;
}

.modal-meta-value {
  color: var(--text-light);
}

.modal-options {
  margin-bottom: 2rem;
}

.modal-options-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}

.size-selector {
  display: flex;
  gap: 0.75rem;
}

.size-option {
  min-width: 44px;
  height: 44px;
  padding: 0 1rem;
  border: 1px solid rgba(14, 58, 47, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.size-option:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.size-option.active {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: white;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

@media (max-width: 480px) {
  .modal-actions {
    flex-direction: column;
  }
}

.modal-qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid rgba(14, 58, 47, 0.15);
}

.modal-qty-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary-color);
}

.modal-qty-val {
  width: 36px;
  text-align: center;
  font-weight: 600;
}

.modal-add-to-cart {
  flex-grow: 1;
  height: 48px;
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.modal-add-to-cart:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 58, 47, 0.15);
}

/* Scroll Fade In Animation Classes */
.fade-in-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-element.fade-in-active {
  opacity: 1;
  transform: translateY(0);
}

/* Success notification toast */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  background-color: var(--primary-color);
  border-left: 4px solid var(--secondary-color);
  color: white;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  font-weight: 500;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  color: var(--secondary-color);
}

/* Premium Checkout Form Styling */
#whatsapp-checkout-form input,
#whatsapp-checkout-form textarea {
  border: 1px solid rgba(14, 58, 47, 0.15);
  border-radius: 0;
  background-color: #FFFFFF;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

#whatsapp-checkout-form input:focus,
#whatsapp-checkout-form textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

#whatsapp-checkout-form input::placeholder,
#whatsapp-checkout-form textarea::placeholder {
  color: rgba(28, 34, 32, 0.4);
}

/* Modal Gallery Image Carousel Controls */
.carousel-control-btn {
  opacity: 0;
}

.modal-gallery:hover .carousel-control-btn {
  opacity: 1;
}

.carousel-control-btn:hover {
  background-color: var(--primary-color) !important;
  color: white !important;
  transform: translateY(-50%) scale(1.08) !important;
  box-shadow: var(--shadow-md) !important;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(28, 34, 32, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

/* Category-based Horizontal Carousel Styles */
.categories-container {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.category-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid rgba(14, 58, 47, 0.08);
  padding-bottom: 0.75rem;
}

.category-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category-view-all {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.25rem 0.5rem;
}

.category-view-all:hover {
  color: var(--secondary-hover);
  transform: translateX(4px);
}

.category-scroll-wrapper {
  position: relative;
  width: 100%;
}

.category-scroll-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0.25rem 1.5rem 0.25rem;
  scrollbar-width: none; /* Firefox */
}

.category-scroll-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.category-scroll-container .product-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

@media (max-width: 768px) {
  .category-scroll-container .product-card {
    flex: 0 0 230px;
  }
  
  .category-title {
    font-size: 1.4rem;
  }
}

/* Scroll row arrow controls (Desktop only hover) */
.scroll-arrow {
  position: absolute;
  top: calc(50% - 22px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(14, 58, 47, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border: 1px solid rgba(14, 58, 47, 0.05);
  z-index: 10;
  opacity: 0;
  transition: var(--transition-smooth);
}

.scroll-arrow.prev {
  left: -22px;
}

.scroll-arrow.next {
  right: -22px;
}

.category-scroll-wrapper:hover .scroll-arrow {
  opacity: 1;
}

@media (max-width: 1024px) {
  .scroll-arrow {
    display: none; /* Hide on mobile/touch, rely on native swipe */
  }
}

.scroll-arrow:hover {
  background-color: var(--primary-color);
  color: white;
  transform: scale(1.08);
}

/* Quick Navigation Bubbles */
.quick-nav-bubbles {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.bubble-item {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--gold-light);
  border: 1px solid rgba(14, 58, 47, 0.1);
  color: var(--primary-color);
  border-radius: 30px;
  transition: var(--transition-fast);
}

.bubble-item:hover, .bubble-item.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}
