/* =========================================
   1. Variables & Reset
   ========================================= */
:root {
  /* Primary Colors */
  --primary-pink: #f2c5d3;
  --secondary-green: #1B4D3E;
  --accent-gold: #D4AF37;
  --text-dark: #2C3531;
  --bg-white: #FFFAFA;

  /* Mapped to existing variables for compatibility */
  --color-primary: #f2c5d3;
  --color-secondary: #1B4D3E;
  --color-accent: #fef0f0;
  --color-accent: #fef0f0;
  --color-white: #FFFAFA;
  --color-gray-100: #f3f4f6;
  --color-gray-400: #9ca3af;

  /* Backgrounds */
  --bg-white: #fff5f8;
  /* Touch of pink */
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-shadow: rgba(0, 0, 0, 0.1);

  /* Fonts - All using Spartan */
  --font-serif: 'Spartan', sans-serif;
  --font-sans: 'Spartan', sans-serif;
  --font-display: 'Spartan', sans-serif;

  --transition-fast: 0.3s ease;
  --transition-slow: 0.5s ease-out;
}

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

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Libre Baskerville", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

p,
a,
li,
span,
div {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e0a3b8;
}

/* =========================================
   2. Utilities & Layout
   ========================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.flex {
  display: flex;
}

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-col {
  flex-direction: column;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

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

.uppercase {
  text-transform: uppercase;
}

.font-bold {
  font-weight: 700;
}

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

/* =========================================
   3. Navbar
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 1.5rem 0;
  transition: padding var(--transition-fast);
  background: transparent;
}

.navbar.scrolled {
  padding: 1rem 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.logo img {
  height: 4rem;
  width: auto;
}

.nav-links {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: white;
  /* White text for transparent header */
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.navbar.scrolled .nav-link {
  color: var(--color-secondary);
  /* Dark text on white scrolled header */
}

/* Mobile/Cart Icons Color Logic */
.navbar .cart-btn,
.navbar .mobile-menu-btn {
  color: white;
  /* Default white on transparent header */
  border-color: rgba(255, 255, 255, 0.2);
}

.navbar.scrolled .cart-btn,
.navbar.scrolled .mobile-menu-btn {
  color: var(--color-secondary);
  /* Dark on white scrolled header */
  border-color: var(--color-gray-100);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--color-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

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

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  /* Subtle glass effect */
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cart-btn:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  transform: translateY(-2px);
  border-color: var(--color-secondary);
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--color-primary);
  color: var(--color-secondary);
  font-size: 0.65rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes bump {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.cart-btn.bump {
  animation: bump 0.3s ease-out;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: block;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  transform: rotate(90deg);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  /* Backdrop */
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

/* Sidebar Drawer */
.mobile-menu-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  /* Not full width */
  max-width: 300px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.856);
  padding: 2rem;
  display: flex;
  flex-direction: column;

  gap: 1.5rem;
  transform: translateX(100%);
  /* Slide out by default */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active .mobile-menu-inner {
  transform: translateX(0);
  /* Slide in */
}

.mobile-link {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-secondary);
  border-bottom: 1px solid var(--color-gray-100);
  padding-bottom: 0.5rem;
  transition: color 0.3s;
}

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

/* =========================================
   Cart Sidebar
   ========================================= */
.cart-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

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

.cart-sidebar-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  max-width: 400px;
  height: 100%;
  background-color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.cart-sidebar.active .cart-sidebar-inner {
  transform: translateX(0);
}

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

.cart-header h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-secondary);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-right: 0.5rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: var(--color-gray-100);
  border-radius: 0.75rem;
  transition: transform 0.2s;
}

.cart-item:hover {
  transform: translateX(-4px);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--color-gray-500);
  font-weight: 600;
  flex-shrink: 0;
}

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

.cart-item-title {
  font-weight: 600;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--color-secondary);
}

.cart-item-price {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 700;
}

.empty-cart-msg {
  text-align: center;
  color: var(--color-gray-400);
  margin-top: 3rem;
  font-style: italic;
  font-size: 1.1rem;
}

.cart-footer {
  padding-top: 1.5rem;
  border-top: 2px solid var(--color-gray-100);
  margin-top: 1rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
  color: var(--color-secondary);
}

.cart-total span:last-child {
  color: var(--color-primary);
}

/* Close Button */
.close-btn {
  align-self: flex-end;
  padding: 0.5rem;
  border-radius: 50%;
  background: var(--color-gray-100);
  transition: all 0.3s;
  margin-bottom: 1rem;
}

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

/* =========================================
   4. Hero Section
   ========================================= */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../assets/hero1.gif') no-repeat center center/cover;
  overflow: hidden;
}

/* Mobile Hero Image Tag Styling */
.hero-bg-mobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: none;
}

@media (max-width: 768px) {
  .hero {
    background: none !important;
    /* Disable CSS background on mobile */
  }

  .hero-bg-mobile {
    display: block;
    /* Show HTML image on mobile */
  }
}

/* Dark Overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Dark overlay for text readability */
  z-index: 1;
}

/* Blobs - Hidden for GIF background */
.blob {
  display: none;
}

/* Ensure content is above overlay */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  opacity: 0;
  transform: translateY(2.5rem);
  transition: all 1s ease-out;
}


/* Update text colors for dark background */
.hero-subtitle {
  display: block;
  color: var(--color-primary);
  /* Keep pink, stands out on dark */
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Mobile Hero Video */
.hero-video-mobile {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.7;
  display: none;
}

@media (max-width: 768px) {
  .hero {
    background-image: none !important;
    overflow: hidden;
  }

  .hero-video-mobile {
    display: block;
  }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: white;
  /* White text on dark */
}

.hero-text {
  color: var(--color-gray-100);
  /* Lighter gray/white */
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  opacity: 0;
  transform: translateY(2.5rem);
  transition: all 1s ease-out;
}

.hero-subtitle {
  display: block;
  color: var(--color-primary);
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

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

@media (min-width: 1024px) {
  .hero-title {
    font-size: 6rem;
  }
}

.highlight {
  background: linear-gradient(to right, var(--color-primary), #f472b6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  color: #eeeeee;
  /* Brighter white/gray */
  font-family: var(--font-serif);
  /* Use serif font for elegance */
  font-size: 1.5rem;
  /* Larger font size */
  font-style: italic;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.02em;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn {
  padding: 1rem 2rem;
  border-radius: 9999px;
  /* full */
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.btn:hover {
  transform: scale(1.05);
}

.btn:active {
  transform: scale(0.95);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: #eedce4;
}

/* Hero Specific Button */
.btn-hero {
  background: transparent;
  /* border: 2px solid white; Removed for animated border */
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.8rem 1rem;
  /* Reduced padding for mobile */
  font-size: 0.8rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  width: 50%;
  margin: 0 auto;
  position: relative;
  /* Needed for absolute child */
  overflow: hidden;
  /* Clip the rotating gradient */
  border: none;
  /* remove default border */
}

/* User requested animated border effect */
.animated-link-effect-demo {
  pointer-events: none;
  border-radius: 9999px;
  /* Match button pill shape */
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 2px;
  /* Border thickness */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: exclude;
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

.animated-link-effect-demo div {
  background-image: conic-gradient(from 0 at 50% 50%, rgba(255, 255, 255, .5) 0deg, rgba(255, 255, 255, 0) 60deg, rgba(255, 255, 255, 0) 310deg, rgba(255, 255, 255, .5) 360deg);
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 200%;
  /* Make large enough to cover rotation */
  height: 200%;
  animation: rotate-demo 2s linear infinite;
  aspect-ratio: 1;
}

@keyframes rotate-demo {
  from {
    transform: translate(-50%, -50%) scale(1.4) rotate(0turn);
  }

  to {
    transform: translate(-50%, -50%) scale(1.4) rotate(1turn);
  }
}

@media (min-width: 768px) {
  .btn-hero {
    padding: 1rem 2.5rem;
    /* Restore larger padding for desktop */
    font-size: 0.9rem;
  }
}

.btn-hero:hover {
  background-color: rgba(255, 255, 255, 0.1);
  /* Subtle hover bg since we have animated border */
  /* border-color: var(--color-primary); Removed */
  color: var(--color-secondary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn-hero i {
  transition: transform 0.3s;
}

.btn-hero:hover i {
  transform: translateX(4px);
}

.btn-outline {
  background-color: white;
  border: 1px solid #e5e7eb;
  color: var(--color-secondary);
}

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

/* =========================================
   5. Shop Banner Hero
   ========================================= */
/* =========================================
   5. Shop Banner Content & Effects
   ========================================= */
.shop-banner-hero {
  position: relative;
  width: 100%;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  perspective: 1px;
}

.shop-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.1);
  filter: brightness(0.75) contrast(1.1);
  transition: transform 0.1s ease-out;
}

.shop-banner-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(27, 77, 62, 0.4) 0%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(27, 77, 62, 0.6) 100%);
  z-index: 1;
}

.shop-banner-hero .navbar {
  z-index: 20;
}

/* Elegant Navbar Overlay */
.navbar-transparent {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  transition: all 0.4s ease;
}

.navbar-transparent .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
}

.navbar-transparent .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-transparent .nav-link:hover {
  color: #fff;
}

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

/* Banner Content Wrapper */
.shop-banner-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 4rem;
  /* Increased top padding to move content down */
}

/* Premium Glass Card */
.shop-banner-content .section-header {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 3.5rem;
  border-radius: 2px;
  /* Sharper corners for luxury feel */
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  animation: fadeUp 1s ease-out;
}

/* Decorative Card Border */
.shop-banner-content .section-header::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  /* Gold accent */
  pointer-events: none;
}

/* Typography Enhancements */
.shop-banner-content .hero-subtitle {
  color: var(--accent-gold);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  display: block;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1.2s ease-out 0.2s backwards;
}

.banner-title {
  color: #fff;
  font-family: var(--font-display);
  font-size: 4.5rem;
  /* Larger, more impactful */
  font-weight: 400;
  /* Lighter weight for elegance */
  line-height: 1;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1.2s ease-out 0.4s backwards;
}

.banner-description {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1.2s ease-out 0.6s backwards;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .shop-banner-hero {
    min-height: 400px;
  }

  .banner-title {
    font-size: 2.75rem;
  }

  .shop-banner-content .section-header {
    padding: 2.5rem 1.5rem;
    margin: 0 1rem;
    width: auto;
  }

  .shop-banner-content .section-header::before {
    inset: 4px;
  }
}

@media (max-width: 768px) {
  .shop-banner-hero {
    min-height: 400px;
  }

  .banner-title {
    font-size: 2rem;
  }
}

/* =========================================
   6. Gallery Section
   ========================================= */
.section-gallery {
  background-color: var(--color-accent);
  overflow: hidden;
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.slider-container {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn {
  position: absolute;
  z-index: 20;
  padding: 0.75rem;
  background: white;
  border-radius: 50%;
  box-shadow: 0 10px 15px -3px var(--color-shadow);
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 1rem;
}

.slider-btn.next {
  right: 1rem;
}

@media (min-width: 768px) {
  .slider-btn.prev {
    left: 5rem;
  }

  .slider-btn.next {
    right: 5rem;
  }


}

/* Slider Track logic already handled in JS via inline styles, but base styles here */
#slider-track {
  /* Absolute pos injected by JS */
}

/* =========================================
   6. Shop Section (Grid)
   ========================================= */
.section-shop {
  background-color: transparent;
  width: 80%;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Mobile: 2 columns */
  gap: 1rem;
  /* Smaller gap for mobile */
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    /* Restore larger gap */
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--color-gray-100);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--color-secondary);
}

.product-image-container {
  height: 12rem;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-color-1, #fef3c7), var(--bg-color-2, #fde68a));
  overflow: hidden;
}

.product-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.product-image-container::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.product-card:hover .product-image-container::after {
  opacity: 1;
  animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    transform: translate(-25%, -25%);
  }

  50% {
    transform: translate(25%, 25%);
  }
}

.bg-yellow {
  --bg-color-1: #fef3c7;
  --bg-color-2: #fde68a;
}

.bg-red {
  --bg-color-1: #fee2e2;
  --bg-color-2: #fecaca;
}

.bg-amber {
  --bg-color-1: #fef3c7;
  --bg-color-2: #fcd34d;
}

.bg-green {
  --bg-color-1: #dcfce7;
  --bg-color-2: #bbf7d0;
}

.product-placeholder {
  color: var(--color-gray-400);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 1;
}

.add-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  z-index: 2;
  opacity: 1;
  transform: scale(1);
}

.product-card:hover .add-btn {
  transform: scale(1.1);
}

.add-btn:hover {
  background: var(--color-secondary);
  color: white;
  transform: scale(1.15);
  box-shadow: 0 4px 12px #000;
}

.add-btn:active {
  transform: scale(0.95);
}

.product-details {
  padding: 1rem 1rem 1rem;
  background: white;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  align-items: center;
}

.badge {
  font-size: 0.4rem;
  font-weight: 500;
  color: var(--color-secondary);
  background: transparent;
  border: 1px solid var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
}

.rating {
  display: none;
}

.product-title {
  font-size: .75rem;
  font-family: 'Spartan', sans-serif;
  font-weight: 700;

  margin-bottom: 0.75rem;
  color: var(--color-secondary);
  line-height: 1.3;
  transition: color 0.3s;
}

/* .product-card:hover .product-title {
  color: var(--color-primary);
} */

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-gray-100);
}

.price {
  font-size: .75rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--color-secondary);
}

.text-link-btn {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  color: var(--color-secondary);
}

.text-link-btn:hover {
  background: var(--color-secondary);
  color: white;
  transform: scale(1.15);
}

.text-link-btn:active {
  transform: scale(0.95);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .product-image-container {
    height: 10rem;
  }

  .product-title {
    font-size: 1rem;
  }

  .price {
    font-size: 1.125rem;
  }
}

/* Product Modal */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-modal.active {
  display: flex;
  animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  background: white;
  border-radius: 1.5rem;
  max-width: 80%;
  /* Updated from 70% */
  max-height: 50vh;
  width: 80%;
  /* Explicit width */
  overflow-y: auto;
  position: relative;
  transform: scale(0.5) translateY(50px) rotate(-15deg);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  opacity: 0;
}

.product-modal.active .modal-content {
  transform: scale(1) translateY(0) rotate(0deg);
  opacity: 1;
  animation: modalSpiral 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalSpiral {
  0% {
    transform: scale(0.5) translateY(50px) rotate(-15deg);
    opacity: 0;
  }

  50% {
    transform: scale(1.05) translateY(-10px) rotate(5deg);
  }

  100% {
    transform: scale(1) translateY(0) rotate(0deg);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-gray-100);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

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

/* Close Animation */
.product-modal.closing {
  animation: fadeOut 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.product-modal.closing .modal-content {
  animation: modalClose 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes modalClose {
  0% {
    transform: scale(1) translateY(0) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: scale(0.8) translateY(30px) rotate(10deg);
    opacity: 0;
  }
}

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

@media (max-width: 768px) {
  .modal-content {
    max-width: 95%;
    margin: 1rem;
  }

  .modal-body {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem;
  }
}

.modal-image {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

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

.modal-image-placeholder {
  font-size: 2.5rem;
}

.modal-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-badge {
  display: inline-block;
  width: fit-content;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--color-secondary);
  background: transparent;
  border: 1px solid var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.3;
}

.modal-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin: 0.25rem 0;
  font-family: var(--font-serif);
}

.modal-description {
  color: var(--color-gray-600);
  line-height: 1.4;
  margin: 0;
  font-size: 0.8rem;
}

.modal-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gray-700);
  font-size: 0.75rem;
}

.feature-icon {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.modal-actions {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

.modal-add-to-cart {
  width: 100%;
  padding: 0.625rem 1.25rem;
  background: var(--color-secondary);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-add-to-cart:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* =========================================
   Footer
   ========================================= */
.footer {
  background-color: var(--color-secondary);
  color: white;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 2 columns for mobile */
  gap: 2rem;
  margin-bottom: 4rem;
  text-align: center;
}

/* Mobile Specifics */
/* Brand spans full width */
.footer-col:nth-child(1) {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Quick Links & Support side-by-side (natural flow) */
.footer-col:nth-child(2),
.footer-col:nth-child(3) {
  text-align: left;
  padding-left: 0.5rem;
}

/* Newsletter spans full width */
.footer-col:nth-child(4) {
  grid-column: 1 / -1;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    text-align: left;
  }

  /* Reset Mobile Overrides */
  .footer-col:nth-child(1) {
    grid-column: auto;
    align-items: flex-start;
  }

  .footer-col:nth-child(4) {
    grid-column: auto;
    margin-top: 0;
  }

  .footer-col:nth-child(2),
  .footer-col:nth-child(3) {
    padding-left: 0;
  }
}

.footer-col h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.footer-col h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-text {
  color: var(--color-gray-400);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  /* Center on mobile */
}

@media (min-width: 768px) {
  .social-links {
    justify-content: flex-start;
  }
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.social-icon:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
}

.footer-links li {
  list-style: none;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--color-gray-400);
}

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

.newsletter-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  /* Glass effect background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.35rem;
  border-radius: 3rem;
  /* Pill shape */
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  outline: none;
  font-size: 0.9rem;
  min-width: 0;
  /* Fix flex overflow */
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  background: var(--color-primary);
  color: var(--color-secondary);
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
}

.newsletter-form button:hover {
  transform: scale(1.1);
  background: white;
  color: var(--color-secondary);
}

.newsletter-form button i,
.newsletter-form button svg {
  width: 1.1rem;
  height: 1.1rem;
}

/* Legacy classes kept if used elsewhere, generally safe to ignore for footer lookup */
.input-field {
  display: none;
}

.btn-submit {
  display: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--color-gray-500);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* =========================================
   8. Animations (Reveal on Scroll)
   ========================================= */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(3rem) scale(0.95);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  /* Elegant ease-out */
  will-change: opacity, transform;
  filter: blur(10px);
  /* Add blur for depth */
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0) scale(1) !important;
  filter: blur(0);
}

/* =========================================
   9. Slider Components (Dynamic)
   ========================================= */
/* =========================================
   9. New Slider Components
   ========================================= */
/* =========================================
   9. Slider Components (Dynamic)
   ========================================= */
.slider-item {
  position: relative;
  flex-shrink: 0;
  width: 240px;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-out;
  transform-origin: center;
  cursor: pointer;
  /* Default state for non-active items */
  opacity: 0.5;
  transform: scale(0.8);
  filter: grayscale(100%);
  z-index: 0;
}

@media (min-width: 768px) {
  .slider-item {
    width: 320px;
    height: 80%;
  }
}

.slider-item.active {
  opacity: 1;
  transform: scale(1.25);
  filter: grayscale(0%);
  z-index: 10;
}

.slider-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.1));
  transition: all 0.5s;
}

/* Ensure modal is always on top */
#product-modal {
  z-index: 9999 !important;
}

/* =========================================
   Product Modal Styles
   ========================================= */
.product-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-modal.active {
  display: flex;
  opacity: 1;
}

.product-modal.closing {
  opacity: 0;
}

.modal-content {
  background: white;
  border-radius: 1.5rem;
  width: 80%;
  /* Updated from 90% */
  max-width: 80%;
  /* Updated from 900px */
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: white;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--color-gray-100);
  transform: rotate(90deg);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem;
}

@media (min-width: 768px) {


  .modal-body {
    grid-template-columns: 1fr 1fr;
    padding: 3rem;
  }
}

.modal-image {
  background: var(--color-gray-100);
  border-radius: 1rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

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

.modal-image-placeholder {
  font-size: 5rem;
}

.modal-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  width: fit-content;
}

.modal-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin: 0;
}

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

.modal-description {
  color: var(--color-gray-600);
  line-height: 1.6;
  margin: 0;
}

.modal-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-gray-700);
}

.feature-icon {
  color: var(--color-primary);
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}

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

.modal-add-to-cart {
  flex: 1;
  padding: 1rem 2rem;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.modal-add-to-cart:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(227, 160, 8, 0.3);
}

/* =========================================
   Cart Page Styles
   ========================================= */
.cart-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.cart-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
}

.clear-cart-btn {
  background: none;
  border: 1px solid #fee2e2;
  color: #dc2626;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
}

.clear-cart-btn:hover {
  background: #fee2e2;
}

.cart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cart-item {
  background: white;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  border: 1px solid var(--color-gray-100);
}

.cart-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cart-img-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-gray-100);
}

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

.cart-placeholder {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border-radius: 0.5rem;
}

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

.cart-item-title {
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

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

.empty-cart-msg {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--color-gray-500);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border-radius: 1rem;
  border: 2px dashed var(--color-gray-200);
}

.added-feedback {
  background-color: var(--color-secondary) !important;
  color: white !important;
  border-color: var(--color-secondary) !important;
}

/* Updated Cart UI Styles */
.clear-cart-btn-styled {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--color-red-200, #fee2e2);
  color: var(--color-red-600, #dc2626);
  background: white;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.clear-cart-btn-styled:hover {
  background: var(--color-red-50, #fef2f2);
  border-color: var(--color-red-300, #fca5a5);
  transform: translateY(-1px);
}

/* Navbar solid background for non-home pages */
.navbar-solid {
  background: var(--color-secondary);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

/* Ensure container has width */
#cart-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

/* =========================================
   Mobile Modal Refinements (User Request)
   ========================================= */
@media (max-width: 768px) {
  .product-modal {
    align-items: center;
    padding: 0.5rem;
    /* Reduced padding on wrapper */
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
  }

  .modal-content {
    max-height: 90vh;
    /* Further increased */
    width: 95%;
    /* Slightly wider */
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 1.5rem;
    position: relative;
    background: white;
  }

  .modal-body {
    padding: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    text-align: center;
  }

  /* Details Wrapper */
  .modal-details {
    padding: 1rem;
    /* Reduced from 1.5rem */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    /* Tighter gap */
  }

  /* Badge */
  .modal-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 20;

    font-size: 0.6rem;
    font-weight: 700;
    color: white;
    background: var(--color-secondary);
    border: none;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  /* Taller Image - "increase the height of the picture" */
  .modal-image {
    width: 100%;
    height: 350px;
    /* Increased from 250px */
    border-radius: 0;
    background: var(--color-gray-100);
    margin: 0;
    flex-shrink: 0;
    box-shadow: none;
    position: relative;
  }

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

  .modal-title {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    color: var(--color-secondary);
    margin: 0.25rem 0 0;
    /* Reduced margin */
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    /* "text transform the heading to uppercase" */
    letter-spacing: 0.05em;
  }

  /* Price */
  .modal-price {
    font-size: 1.2rem;
    color: var(--color-secondary);
    font-weight: 800;
    margin: 0.25rem 0;
    /* Reduced margin */

    background: #fdf2f8;
    padding: 0.3rem 1rem;
    /* Slightly smaller padding */
    border-radius: 1rem;
    display: inline-block;
  }

  /* Hidden elements */
  .modal-description,
  .modal-features {
    display: none;
  }

  /* Size Selector */
  .modal-size-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 0.5rem 0 1rem;
    /* Reduced margins */

    background: transparent;
    border: 1px solid var(--color-gray-200);
    padding: 0.3rem 0.8rem;
    border-radius: 99px;
    width: auto;
  }

  .size-label {
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--color-gray-500);
    margin-right: 0.25rem;
    text-transform: uppercase;
  }

  .size-options {
    display: flex;
    gap: 1rem;
  }

  .size-option {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-secondary);
  }

  .size-option input {
    accent-color: var(--color-secondary);
    width: 1rem;
    height: 1rem;
  }

  /* Actions */
  .modal-actions {
    width: 100%;
    margin-top: auto;
  }

  .modal-add-to-cart {
    width: 100%;
    padding: 0.8rem;
    /* Slightly reduced */
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;

    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    border-radius: 2rem;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
  }

  .modal-add-to-cart:hover {
    background: var(--color-secondary);
    color: white;
  }

  .modal-add-to-cart i {
    width: 1.2rem;
    height: 1.2rem;
  }
}


/* =========================================
   Final Polish (Container, Cards, Typography)
   ========================================= */

/* "div carrying the whole featured products container should have 100% max width" */
/* "div carrying the whole featured products container should have 100% max width" */
.section-shop {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 1rem;
  /* Prevent edge collision */
  margin: 3rem 0 !important;
  /* Added margin above and below product div */
}

/* "the margins should also be reduced" - targeting container margins if any */
.container {
  padding: 0 1rem;
  /* Ensure consistent padding */
}

/* "product name font should be reduced as well" */
.product-title {
  font-size: 0.7rem !important;
  margin-bottom: 0.25rem !important;
  /* Reduced margin */
}

/* "pricing should be in naira and with a smaller font" */
.price {
  font-size: 0.7rem !important;
  font-weight: 700;
}

/* "the margins should also be reduced" - targeting details */
.product-details {
  padding: 0.5rem !important;
  /* Reduced from 1rem */
}

/* Tighter spacing for meta (rating/badge) */
.product-meta {
  margin-bottom: 0.25rem !important;
}

/* Tighter spacing for price row */
.price-row {
  padding-top: 0.25rem !important;
  border-top: 1px solid var(--color-gray-100);
}

/* Adjust grid gap slightly if needed for "widened" feel, 
   but 100% width container usually does the trick */
@media (min-width: 768px) {
  .product-grid {
    gap: 1.5rem;
    /* Slightly reduced gap from 2rem to give more width to cards */
  }
}

/* =========================================
   About Page Specific Styles
   ========================================= */

/* Hero Overrides */
.about-hero {
  min-height: 40vh !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-position: center;
  /* Center the background */
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  /* Dark placeholder if image loads slowly */
  background-color: var(--color-gray-900);
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.about-hero .banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
}

.about-hero .banner-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  font-family: var(--font-display);
}

.about-hero .banner-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
  font-family: var(--font-serif);
}

/* Modal Slider Styles */
.modal-slider {
  width: 100%;
  height: 100%;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* Hide scrollbar */
  -ms-overflow-style: none;
}

.modal-slider::-webkit-scrollbar {
  display: none;
}

.modal-slide {
  min-width: 100%;
  height: 100%;
  scroll-snap-align: center;
}

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

.modal-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.modal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}

.modal-dot.active {
  background: white;
  transform: scale(1.2);
}

/* About Section Typography */
.section-about h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-about h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--color-secondary);
}

.about-text-content {
  font-size: 1rem;
  /* Reduced to match contact page */
  line-height: 1.9;
  color: var(--color-gray-700);
  text-align: left;
  margin-bottom: 2rem;
}

/* Values Section Cards */
.value-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary-light);
}

.value-icon-wrapper {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--color-accent);
  /* Make sure accent color exists or uses fallback */
  background-color: #fef3c7;
  /* Fallback to light yellow */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  color: var(--color-secondary);
}

.value-card:hover .value-icon-wrapper {
  background: var(--color-secondary);
  color: white;
  transform: rotateY(180deg) scale(1.1);
}

.value-icon-wrapper i,
.value-icon-wrapper svg {
  width: 2.5rem !important;
  height: 2.5rem !important;
}

.value-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-gray-900);
}

.value-text {
  color: var(--color-gray-600);
  line-height: 1.6;
  font-size: 1rem;
}

/* =========================================
   Contact Page Specific Styles
   ========================================= */

/* Reuse About Hero base but override image */
.contact-hero {
  border-bottom: none;
  background-image: url('../assets/contact-hero.jpg');
  background-position: center top !important;
  background-attachment: scroll !important;
  position: relative;
  z-index: 1;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  min-height: 50vh;
  /* Ensure enough height */
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Slightly lighter overlay */
  z-index: -1;
}

.contact-hero .banner-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

.contact-hero .banner-subtitle {
  font-size: 1rem;
  /* Reduced from 1.25rem */
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-family: var(--font-serif);
  color: white;
  /* Explicitly set color */
}

/* Contact Page Layout Refinements */
.section-contact .container,
.section-about .container,
.section-values .container {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Info Icons */
/* Contact Info Icons */
.contact-icon-wrapper {
  width: 3.5rem;
  /* Reduced from 4.5rem */
  height: 3.5rem;
  /* Reduced from 4.5rem */
  border-radius: 50%;
  background: white;
  /* Clean white background */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  /* Soft shadow */
  border: 1px solid var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  /* Secondary color for elegance */
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.contact-item:hover .contact-icon-wrapper {
  background: var(--color-secondary);
  color: white;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon-wrapper svg {
  width: 1.5rem;
  /* Reduced from 2rem */
  height: 1.5rem;
  /* Reduced from 2rem */
}

.contact-item {
  display: flex;
  align-items: center;
  /* Vertically center aligned */
  gap: 1.25rem;
  /* Slightly reduced gap */
  padding: 1.25rem;
  /* Slightly reduced padding */
  border-radius: 1rem;
  transition: background-color 0.3s;
}

/* Reduced Text Sizes for Contact Info */
.contact-item h4 {
  font-size: 1rem !important;
  /* Override util class if needed */
  margin-bottom: 0.2rem;
}

.contact-item p {
  font-size: 0.95rem !important;
  /* Override util class if needed */
}

.contact-item:hover {
  background-color: var(--color-gray-50);
}

/* Spacing for "Let's Talk Cake" Heading */
.contact-heading-wrapper {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

/* Contact Form Enhancements */
.contact-form-container {
  background: white;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  /* Deeper shadow */
  border: 1px solid var(--color-gray-200);
}

.contact-input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid #6b7280;
  border-radius: 0.75rem;
  background-color: white;
  transition: all 0.3s;
  outline: none;
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-gray-800);
  margin-bottom: 1rem;
}

.contact-input:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(var(--color-secondary-rgb, 12, 12, 12), 0.1);
  transform: translateY(-1px);
}

.contact-input::placeholder {
  color: var(--color-gray-500);
  font-family: inherit;
  /* Ensure placeholder uses same font */
}

.contact-label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-secondary);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.contact-submit-btn {
  width: 100%;
  padding: 1.1rem;
  background: var(--color-secondary);
  color: white;
  font-weight: 700;
  border-radius: 0.75rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.contact-submit-btn:hover {
  background: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
}

/* Map Placeholder Polish */
.map-placeholder {
  min-height: 450px;
  background-color: var(--color-gray-100);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder::before {
  /* Simple grid pattern to look technical like a map */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(var(--color-gray-200) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-gray-200) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.map-pin {
  width: 60px;
  height: 60px;
  color: var(--color-secondary);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
  z-index: 10;
  animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}


/* Contact Social Icons (Image Based) */
.social-img-link {
  display: block;
  width: 4rem;
  height: 4rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: grayscale(20%);
  /* Slight mute */
  animation: bounce 2s infinite ease-in-out;
  /* Default bounce animation */
}

.social-img-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.15));
  transition: all 0.4s ease;
}

.social-img-link:hover {
  transform: translateY(-8px) scale(1.15);
  filter: grayscale(0%);
  animation-play-state: paused;
  /* Optional: pause on hover */
}

.social-img-link:hover img {
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
}

/* Stronger shadow by default on mobile since no hover */
@media (max-width: 768px) {
  .social-img-link img {
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.2));
  }
}

/* =========================================
   Floating WhatsApp Button
   ========================================= */
@keyframes localizedBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25D366;
  color: white;
  width: 60px;
  /* Fixed width */
  height: 60px;
  /* Fixed height */
  border-radius: 50%;
  /* Perfect circle */
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center icon */
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid white;
  animation: localizedBounce 3s infinite ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  /* Slight grow on hover */
  animation: none;
  /* Pause bounce on hover */
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
  font-size: 1.25rem;
  /* Smaller icon */
}

.whatsapp-float {
  bottom: 1.5rem;
  right: 1.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}


/* Cart Page Hero */
.cart-hero {
  background: url('../assets/about-hero.jpg') no-repeat center center/cover;
  position: relative;
  height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}

.cart-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.cart-hero .banner-content {
  position: relative;
  z-index: 2;
  color: white;
  width: 100%;
}

/* Cart Page Hero Typography */
.cart-hero .banner-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  /* Reduced from 3.5rem */
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.cart-hero .banner-subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  /* Reduced from 1.2rem */
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

/* Cart Section Typography */
.cart-section-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  /* Reduced from 2rem */
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

/* Enhanced Cart Actions */
.cart-total-display {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.total-label {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  /* Reduced from 1.25rem */
  color: var(--color-gray-600);
}

.total-amount {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  /* Reduced from 2rem */
  font-weight: 700;
  color: var(--color-secondary);
}

.checkout-btn-styled {
  background: var(--color-secondary) !important;
  color: white !important;
  padding: 0.75rem 2.5rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 10px;
  /* 10px Corner Radius */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  /* Neutral shadow */
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0;
}

.checkout-btn-styled:hover {
  transform: translateY(-2px);
  background: #153b30 !important;
  /* Slightly darker secondary for hover */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Cart Item Price Override */
.cart-item-price {
  color: var(--color-secondary) !important;
  font-weight: 600;
  font-size: 0.95rem;
  /* Reduced from 1.1rem */
}

.cart-item-title {
  font-size: 1rem;
}

.cart-actions-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-gray-200);
  flex-wrap: wrap;
  gap: 1rem;
}

.cart-summary {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

/* .cart-summary p {
    display: none
  } */

.cart-summary .total-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
}

/* =========================================
   Payment Modal Styles
   ========================================= */
.payment-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.payment-modal {
  background: white;
  width: 90%;
  max-width: 400px;
  max-height: 90vh;
  height: auto;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modalSlideUp 0.3s ease-out;
  overflow: hidden;
}

@keyframes modalSlideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.payment-header {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--color-gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.payment-header h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-secondary);
  margin: 0;
}

.close-modal-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--color-gray-500);
  transition: color 0.2s;
}

.close-modal-btn:hover {
  color: var(--color-primary);
}

.payment-body {
  padding: 1rem;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Countdown Timer */
.countdown-timer {
  text-align: center;
  margin-bottom: 0.25rem;
}

.countdown-timer #timer {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Courier New', monospace;
  color: var(--color-secondary);
  display: block;
  line-height: 1;
}

.countdown-timer p {
  font-size: 0.7rem;
  color: var(--color-gray-500);
  margin-top: 0.1rem;
}

/* Bank Details Card */
.bank-details-card {
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  border-radius: 0.5rem;
  padding: 0.75rem;
  text-align: center;
}

.bank-logo {
  margin-bottom: 0.25rem;
}

.opay-text {
  font-family: 'Arial Black', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: #10B981;
  letter-spacing: -1px;
}

.account-info .label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray-500);
  margin-bottom: 0.1rem;
}

.number-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}

.number-display span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 0.5px;
}

.copy-btn {
  background: white;
  border: 1px solid var(--color-gray-200);
  border-radius: 0.25rem;
  padding: 0.25rem;
  cursor: pointer;
  color: var(--color-gray-600);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.copy-btn i {
  width: 0.8rem;
  height: 0.8rem;
}

.account-name {
  font-weight: 600;
  color: var(--color-gray-800);
  font-size: 0.75rem;
}

.payment-amount-box {
  text-align: center;
  margin: 0.25rem 0;
}

.payment-amount-box p {
  font-size: 0.75rem;
  color: var(--color-gray-500);
  margin-bottom: 0.1rem;
}

.payment-amount-box h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-secondary);
  margin: 0;
  line-height: 1.1;
}

.payment-amount-box h2 span {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-gray-400);
  display: block;
}

.delivery-note {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  color: #92400e;
  padding: 0.5rem;
  border-radius: 0.35rem;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.3;
}

.delivery-note i {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
}

.delivery-note strong {
  font-weight: 800;
}

.btn-block {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border-radius: 4px;
  background: transparent;
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
  font-weight: 600;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.btn-block:hover {
  background: var(--color-secondary);
  color: white;
  transform: translateY(-1px);
}

.checkout-container {
  min-height: 100vh;
  background: var(--color-gray-100);
  padding: 4rem 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .checkout-grid {
    grid-template-columns: 1.6fr 1fr;
    align-items: start;
  }
}

.checkout-section {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  /* Rounded corners for card look */
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--color-secondary);
  font-weight: 700;
  border-bottom: 2px solid var(--color-gray-100);
  padding-bottom: 1rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.75rem;
  position: relative;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-gray-700);
  font-size: 0.9rem;
  font-family: var(--font-sans);
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--color-gray-100);
  border: 2px solid transparent;
  border-radius: 0.75rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-secondary);
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  background: white;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(242, 197, 211, 0.2);
}

.form-input::placeholder {
  color: var(--color-gray-400);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* Order Summary */
#order-items {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 0.5rem;
  margin-bottom: 2rem;
}

#order-items::-webkit-scrollbar {
  width: 6px;
}

#order-items::-webkit-scrollbar-thumb {
  background-color: var(--color-gray-200);
  border-radius: 3px;
}

.order-item {
  display: flex;
  gap: 1.25rem;
  padding: 1rem;
  background: white;
  border-bottom: 1px solid var(--color-gray-100);
  transition: transform 0.2s;
}

.order-item:last-child {
  border-bottom: none;
}

.order-item-img {
  width: 70px;
  height: 70px;
  border-radius: 0.75rem;
  background-color: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  overflow: hidden;
}

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

.order-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.order-item-title {
  font-weight: 600;
  font-family: var(--font-serif);
  color: var(--color-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.order-item-price {
  color: var(--color-gray-600);
  font-weight: 600;
  font-size: 0.85rem;
}

.order-summary-totals {
  background: white;
  border: 1px solid var(--color-gray-100);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: var(--color-gray-500);
}

.summary-row span:last-child {
  font-weight: 600;
  color: var(--color-gray-700);
}

.summary-row.total {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--color-secondary);
  background-color: var(--color-gray-50);
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-gray-200);
  align-items: center;
}

.summary-row.total .amount {
  color: var(--color-secondary);
  font-size: 1.25rem;
  font-weight: 800;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gray-600);
  font-weight: 600;
  margin-bottom: 2rem;
  transition: all 0.3s;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.back-link:hover {
  background: white;
  color: var(--color-primary);
  transform: translateX(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.empty-cart-bg {
  background: white;
  border-radius: 2rem;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 4rem auto;
  padding: 3rem;
  text-align: center;
}

.sticky-summary {
  position: sticky;
  top: 2rem;
}

.checkout-submit-btn {
  background: var(--color-secondary);
  color: white;
  width: 100%;
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.checkout-submit-btn:hover {
  background: #153b30;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* =========================================
   Events Catering Section Removed
   ========================================= */