:root {
  --primary-color: #F9B233; /* Honey gold from logo */
  --primary-dark: #D98C00; 
  --background-dark: #12100E; /* Deepest toffee black */
  --background-muted: #1C1917; /* Dark charcoal brown */
  --text-light: #FEF9E7; /* Warm honey cream from logo */
  --text-muted: rgba(254, 249, 231, 0.7);
  --card-bg: rgba(28, 25, 23, 0.6); /* Translucent dark glass */
  --glass-bg: rgba(28, 25, 23, 0.85);
  --glass-border: rgba(249, 178, 51, 0.2); /* Golden border */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.7);
  --font-primary: 'Outfit', 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --ease-custom: cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* Base Content Stacking */
main {
  position: relative;
  z-index: 5;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--primary-color);
}



/* Navbar */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 2rem;
  background: rgba(18, 16, 14, 0.8); /* Dark glass */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s var(--ease-custom);
}

header.scrolled {
  background: var(--background-dark);
  box-shadow: var(--shadow-sm);
  padding: 0.8rem 2rem;
}

.logo img {
  height: 60px;
  width: auto;
  transition: transform 0.4s var(--ease-custom);
}

.logo:hover img {
  transform: scale(1.05);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.4s var(--ease-custom);
}

nav a:hover::after {
  width: 100%;
}

.cart-icon {
  background: var(--background-dark);
  color: var(--primary-color);
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s var(--ease-custom);
}

.cart-icon:hover {
  transform: scale(1.1);
  background: var(--primary-color);
  color: var(--background-dark);
}

/* Section Background Wrapper for Opacity & Parallax */
.section-bg-wrapper {
  position: relative;
  overflow: hidden;
  background-color: var(--background-dark);
}

.parallax-bg {
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 160%; /* Extra height for parallax travel */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0.25; /* Soft background texture as requested */
  pointer-events: none;
  filter: contrast(110%) brightness(70%); /* Muted for dark mode comfort */
}

/* No light overlays - dark theme uses the natural deep background */


.hero-bg {
  background-image: url('assets/hero_bg.png');
}

.about-bg {
  background-image: url('assets/about_parallax.png');
}

.contact-bg {
  background-image: url('assets/contact_bg.png');
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 3rem;
  position: relative;
  z-index: 10;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  line-height: 1.1;
  color: var(--text-light);
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.hero h1 span {
  color: var(--primary-color);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-inline: auto;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}





.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--primary-color); /* Gold button for high visibility */
  color: var(--background-dark);
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.5s var(--ease-custom);
  border: 2px solid var(--primary-color);
  cursor: pointer;
  z-index: 10;
  position: relative;
}

.btn:hover {
  background-color: transparent;
  color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(249, 178, 51, 0.4);
}

/* Product Section */
.products {
  padding: 6rem 2rem;
  background-color: var(--background-dark); /* Unified dark background */
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.section-header h2 {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 2px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-custom);
  border: 1px solid var(--glass-border);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 178, 51, 0.4);
}

.img-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

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

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

.product-info {
  padding: 1.5rem;
  text-align: center;
}

.product-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.product-price {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.add-to-cart {
  width: 100%;
  padding: 0.8rem;
  background: var(--primary-color);
  color: var(--background-dark);
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s var(--ease-custom);
}

.add-to-cart:hover {
  background: transparent;
  color: var(--primary-color);
}

/* About Section */
.about {
  padding: 8rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.about-image-inner {
  width: 100%;
  height: 100%;
  background-image: url('assets/about_bg.png');
  background-size: cover;
  background-position: center;
}

.about-text {
  padding: 3rem;
}

.about-text h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

/* Instagram Section */
.instagram-feed {
  padding: 6rem 2rem;
  background-color: var(--background-muted);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}


.insta-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1/1;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-custom);
}

.insta-item:hover img {
  transform: scale(1.1);
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 16, 14, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease-custom);
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-overlay span {
  color: #FFFFFF;
}

/* Contact Section */
.contact {
  padding: 8rem 2rem;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 4rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 10;
  border: 1px solid var(--glass-border);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: 1rem;
  background-color: var(--text-light);
  transition: all 0.4s var(--ease-custom);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background-color: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(223, 190, 104, 0.3); /* Subtle focus glow */
}

.submit-btn {
  width: 100%;
  margin-top: 1rem;
}

/* Product Detail Page */
.product-page-main {
  padding: 120px 2rem 6rem;
  background-color: var(--background-dark);
  min-height: calc(100vh - 200px);
}

.product-details-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--glass-border);
}

.product-image-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-image-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--text-light); /* Warm honey-cream base to blend with white-bg assets */
  padding: 1.5rem; /* Breathing room for branded graphics */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.05);
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--ease-custom);
}

.product-gallery {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.gallery-thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: var(--text-light);
  transition: all 0.3s ease;
  padding: 4px;
}

.gallery-thumb:hover {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.product-info-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.breadcrumb {
  font-size: 0.9rem;
  color: #6B7280;
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.pd-title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.pd-price {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 2rem;
}

.pd-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.pd-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.variant-selector {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.variant-selector label,
.quantity-selector label {
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.size-dropdown {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  background-color: var(--text-light);
  color: var(--background-dark);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2312100E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  transition: all 0.4s var(--ease-custom);
}

.size-dropdown:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(223, 190, 104, 0.3);
}

.pd-weight-display {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: -0.5rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quantity-selector label {
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.quantity-selector input {
  width: 80px;
  padding: 0.5rem;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 1rem;
  background-color: var(--text-light);
  color: var(--background-dark);
  text-align: center;
  outline: none;
}

.pd-add-to-cart {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
  background: var(--primary-color);
  color: var(--background-dark);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s var(--ease-custom);
}

.pd-add-to-cart:hover {
  background: transparent;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(249, 178, 51, 0.4);
}

.hidden {
  display: none !important;
}

#product-error {
  text-align: center;
  padding: 4rem 2rem;
}

#product-error h2 {
  margin-bottom: 2rem;
}

/* Inner Pages (Policies, Text Pages) */
.inner-page-main {
  padding: 120px 2rem 6rem;
  background-color: var(--background-dark);
  min-height: calc(100vh - 200px);
}

.inner-page-header {
  text-align: center;
  margin-bottom: 4rem;
}

.inner-page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.inner-page-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card-bg);
  padding: 4rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--glass-border);
}

.policy-content h2 {
  font-size: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.policy-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.1rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.coming-soon-container {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.coming-soon-container svg {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

/* --- Hamburger Menu --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.35s var(--ease-custom);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--background-dark);
  z-index: 1050;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-custom);
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

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

/* Footer */
footer {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 4rem 2rem 2rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  text-align: left;
}

.footer-section h3 {
  color: var(--primary-color);
  font-family: var(--font-primary);
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: inherit;
  transition: all 0.4s var(--ease-custom);
}

.social-links a:hover {
  background: var(--primary-color);
  color: var(--background-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
  }
  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }
  .product-details-container {
    grid-template-columns: 1fr;
  }
}

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

  /* Show hamburger, hide desktop nav */
  nav ul {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .contact-container {
    padding: 2rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  /* Instagram grid: 2 columns on mobile */
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Product detail stacks on mobile */
  .product-details-container {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 2rem;
  }

  .pd-title {
    font-size: 2rem;
  }
}
/* Toast Notification */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary-color);
  color: var(--background-dark);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  transition: transform 0.4s var(--ease-custom), opacity 0.4s;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
}

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

/* --- Cart Drawer --- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: var(--background-muted);
  border-left: 1px solid var(--glass-border);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-custom);
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--glass-border);
}
.cart-drawer-header h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
}
.cart-close-btn {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}
.cart-close-btn:hover { color: var(--primary-color); }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 100%;
  color: var(--text-muted);
  text-align: center;
}
.cart-empty svg { color: var(--primary-color); opacity: 0.5; }
.cart-empty .btn { padding: 0.75rem 2rem; font-size: 0.9rem; }
.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 1rem;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem;
}
.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--text-light);
  padding: 4px;
}
.cart-item-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 2px;
}
.cart-item-variant {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.cart-item-price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.95rem;
}
.cart-item-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.qty-btn {
  background: var(--background-dark);
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.qty-btn:hover { background: var(--primary-color); color: var(--background-dark); border-color: var(--primary-color); }
.qty-display {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-light);
}
.remove-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.remove-btn:hover { color: #ff6b6b; }
.cart-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.cart-subtotal span:last-child { color: var(--primary-color); }
.cart-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}
.cart-checkout-btn {
  width: 100%;
  text-align: center;
  font-size: 1rem;
}
.cart-checkout-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--primary-color);
  color: var(--background-dark);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
