@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Caveat:wght@400..700&display=swap');

:root {
  /* Jagdish Brand Colors - Refined for a more premium look */
  --primary-color: #438e0b;
  /* Slightly deeper, more professional green */
  --primary-color-dark: #357008;
  --secondary-color: #0E7CC1;
  /* Premium Blue */
  --secondary-color-dark: #0a5d91;
  --accent-light: #f1f8e9;

  /* UI Colors */
  --text-dark: #1a1a1a;
  --text-light: #5a5a5a;
  --hero-text: #244a06;
  /* Deep brand green - neither black nor white */
  --hero-title: #244a06;
  --bg-light: #f8f6f0;
  --bg-white: #ffffff;
  --border-color: rgba(0, 0, 0, 0.08);

  /* Functional Colors */
  --danger: #e63946;
  --success: #2a9d8f;
  --warning: #ffb703;

  /* Typography */
  --font-main: 'Outfit', sans-serif;
  --font-accent: 'Caveat', cursive;

  /* Box Shadows - Softer and more realistic */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 50px -12px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 30px 60px -12px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

  /* Professional Lighting */
  --light-glow: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 80%);
}

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

html {
  scroll-behavior: smooth;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.flex {
  display: flex;
}

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

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

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

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

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

.gap-4 {
  gap: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  text-transform: capitalize;
}

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

.btn-primary:hover {
  background-color: var(--primary-color-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
  background-color: var(--secondary-color-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

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

/* Section Padding */
.section-padding {
  padding: 80px 0;
}

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

.section-title span {
  color: var(--secondary-color);
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.2rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 25px 0;
  background: transparent;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 80px;
  transition: var(--transition);
}

.header.scrolled .logo img {
  height: 50px;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  background-color: var(--bg-white);
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  align-items: center;
}

.nav-link {
  font-family: var(--font-main);
  font-weight: 300;
  font-size: 1rem;
  color: var(--text-dark);
  position: relative;
  padding: 5px 10px;
  transition: var(--transition);
}

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

/* Remove underline effect for pill menu */
.nav-link::after {
  display: none;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: var(--bg-white);
  padding: 15px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
}

.icon-btn {
  color: var(--text-dark);
  font-size: 1.3rem;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: var(--secondary-color);
  color: var(--bg-white);
  font-size: 0.75rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.mobile-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--bg-white);
  cursor: pointer;
}

.header.scrolled .mobile-toggle,
.header.static .mobile-toggle {
  color: var(--text-dark);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #000;
  /* Prevent white flashes during transitions */
}

.hero .container {
  width: 100%;
}

/* ==========================================
   HERO BANNER SLIDER
   ========================================== */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.5s ease-in-out;
  /* Smooth cross-fade */
  image-rendering: -webkit-optimize-contrast;
  /* Sharpen images */
  transform: scale(1.1);
  /* Start slightly zoomed for Ken Burns effect */
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  /* Light subtle wash for dark text */
  pointer-events: none;
  z-index: 2;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1);
  /* Slow zoom out animation */
  transition: opacity 1.5s ease-in-out, transform 6s ease-out;
}

.hero-slide.out {
  opacity: 0;
  z-index: 1;
  transition: opacity 1.5s ease-in-out;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid #fff;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.hero-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* Arrow Buttons */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.3s, transform 0.3s;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.hero-arrow-left {
  left: 20px;
}

.hero-arrow-right {
  right: 20px;
}

.hero-content {

  max-width: 700px;
  /* Increased for better layout */
  color: var(--hero-text);
  position: relative;
  z-index: 3;
  margin: 0 auto;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--hero-title);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.hero-text {
  font-size: 1.2rem;
  color: var(--hero-text);
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.hero-btns .btn-outline {
  border-color: var(--primary-color);
  color: var(--primary-color);

}

.hero-btns .btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

/* ==========================================
   CATEGORY SECTION
   ========================================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.category-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--border-color);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary-color);
}

.category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background-color: rgba(101, 182, 41, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.category-card:hover .category-icon {
  background-color: var(--secondary-color);
}

.category-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: var(--transition);
}

.category-card:hover .category-icon img {
  filter: brightness(0) invert(1);
}

.category-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
  transition: var(--transition);
}

.category-card:hover h3 {
  color: var(--primary-color);
}

/* ==========================================
   SNACK MOOD SECTION
   ========================================== */
.mood-section {
  color: var(--bg-white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.mood-section::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background-image: url('../images/promo_bg.png');
  background-size: cover;
  background-position: center;
  filter: blur(3px) brightness(0.6);
  z-index: 0;
}

.mood-section .container {
  position: relative;
  z-index: 1;
}

.mood-header {
  text-align: center;
  margin-bottom: 2rem;
}

.mood-header h2 {
  font-size: 3rem;
  color: var(--bg-black);
}

.mood-header .script-text {
  color: #FFD700;
  /* Yellow */
  font-family: var(--font-accent);
  /* Handwritten style */
  font-size: 4.5rem;
  display: block;
  margin-top: 0.5rem;
}

.mood-container {
  position: relative;
  height: 500px;
  /* Give space for floating elements */
}

.floating-emoji {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.floating-emoji img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.floating-emoji span {
  font-weight: 600;
  font-size: 1rem;
  color: var(--bg-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

/* Hover effect */
.floating-emoji:hover img {
  transform: scale(1.2);
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

.floating-emoji.active img {
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
}

/* Ensure anchor-based floating-emoji looks identical to div version */
a.floating-emoji {
  text-decoration: none;
  color: inherit;
}


/* Animations */
.floating-emoji:nth-child(1) {
  animation: float 6s ease-in-out infinite;
}

.floating-emoji:nth-child(2) {
  animation: float 5s ease-in-out infinite 1s;
}

.floating-emoji:nth-child(3) {
  animation: float 7s ease-in-out infinite 0.5s;
}

.floating-emoji:nth-child(4) {
  animation: float 6s ease-in-out infinite 1.5s;
}

.floating-emoji:nth-child(5) {
  animation: float 5s ease-in-out infinite 2s;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(3deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Packets Display */
.packet-display {
  position: absolute;
  bottom: 20px;
  /* Position at bottom */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 600px;
  z-index: 3;
}

.packet {
  position: absolute;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 200px;
}

.packet img {
  width: 100%;
  height: auto;
}

.packet-left {
  transform: translateX(-100px) rotate(-15deg) scale(0.8);
  z-index: 1;
  opacity: 0.7;
}

.packet-center {
  transform: translateX(0) rotate(0deg) scale(1);
  z-index: 3;
  opacity: 1;
}

.packet-right {
  transform: translateX(100px) rotate(15deg) scale(0.8);
  z-index: 1;
  opacity: 0.7;
}

/* Animation state for packet change */
.packet-display.animating .packet {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
}

/* Premium Organic Torn Paper Divider */
.mood-divider {
  position: absolute;
  bottom: -1px;
  /* Align to bottom, overlap slightly to prevent gap */
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 10;
  pointer-events: none;
  overflow: visible;
}

.mood-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Premium Organic Torn Paper Divider (Top) */
.mood-divider-top {
  position: absolute;
  top: -1px;
  /* Align to top, overlap slightly to prevent gap */
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 10;
  pointer-events: none;
  overflow: visible;
}

.mood-divider-top svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ==========================================
   POPULAR DISHES (PRODUCT GRID)
   ========================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border-color);
}

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

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--danger);
  color: var(--bg-white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}

.product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-actions {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  padding: 20px 0 10px;
}

.product-card:hover .product-actions {
  bottom: 0;
}

.product-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-white);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.product-action-btn:hover {
  background: var(--secondary-color);
  color: var(--bg-white);
}

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

.product-rating {
  color: var(--warning);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.1rem;
  /* Medium font size */
  margin-bottom: 0.5rem;
}

.product-title a:hover {
  color: var(--secondary-color);
}

.product-desc {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-size: 1.2rem;
  /* Medium font size */
  font-weight: 700;
  color: var(--primary-color);
}

/* Product Card Action Buttons */
.product-card-buttons {
  display: flex;
  gap: 10px;
  margin-top: 1.2rem;
}

.btn-add-to-cart {
  flex: 1.2;
  background-color: var(--primary-color);
  color: var(--bg-white);
  border: none;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-add-to-cart:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(101, 182, 41, 0.2);
}

.btn-view-details {
  flex: 1;
  background-color: transparent;
  color: var(--primary-color);
  border: 1.5px solid var(--primary-color);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 12px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-view-details:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(101, 182, 41, 0.2);
}

.product-price del {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
  margin-right: 0.5rem;
}

/* ==========================================
   NEWSLETTER SECTION
   ========================================== */
.newsletter-section {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.newsletter-text h2 {
  color: var(--bg-white);
  margin-bottom: 0.5rem;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.newsletter-form {
  flex: 1;
  max-width: 500px;
  display: flex;
  background: var(--bg-white);
  padding: 5px;
  border-radius: 50px;
}

.newsletter-form input {
  flex: 1;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  outline: none;
  font-family: var(--font-main);
  font-size: 1rem;
}

.newsletter-form .btn {
  border-radius: 50px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: var(--bg-white);
  color: var(--text-dark);
  padding: 80px 0 0;
  position: relative;
}

/* Organic Torn Paper Divider for Footer */
.footer-divider {
  position: absolute;
  top: -119px;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 10;
  pointer-events: none;
  overflow: visible;
}

.footer-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-widget h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 50px;
}

.footer-text {
  margin-bottom: 1.5rem;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-dark);
  transition: var(--transition);
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a::before {
  content: '→';
  color: var(--secondary-color);
  transition: var(--transition);
}

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

.footer-links a:hover::before {
  transform: translateX(5px);
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 1rem;
}

.footer-contact i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin-bottom: 0;
}

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

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

/* ==========================================
   PAGE HEADER (For internal pages)
   ========================================== */
.page-header {
  position: relative;
  padding: 115px 0 35px !important;
  background: url('../images/banner.png') center/cover no-repeat !important;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(67, 142, 11, 0.15);
}

.page-header .page-title {
  color: var(--hero-title) !important;
  font-size: 2.8rem;
  font-weight: 800;
  text-shadow: none;
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.page-header .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-header .breadcrumb li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light) !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-shadow: none;
}

.page-header .breadcrumb li:not(:last-child)::after {
  content: '/';
  color: rgba(255, 255, 255, 0.5) !important;
}

.page-header .breadcrumb a {
  color: var(--text-dark) !important;
  transition: var(--transition);
}

.page-header .breadcrumb a:hover {
  color: var(--primary-color) !important;
}

/* Bubbles Container & Bubble styling for Dark/Light Semi-Transparent effects */
.bubbles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.bubble {
  position: absolute;
  bottom: -100px;
  border-radius: 50%;
  animation: float-bubble 15s infinite linear;
}

/* Dark transparent bubbles */
.bubble:nth-child(odd) {
  background: rgba(67, 142, 11, 0.12);
  border: 1px solid rgba(67, 142, 11, 0.2);
}

/* Light transparent bubbles */
.bubble:nth-child(even) {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Various bubbles with randomized animation parameters */
.bubble:nth-child(1) {
  left: 8%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 12s;
}

.bubble:nth-child(2) {
  left: 22%;
  width: 90px;
  height: 90px;
  animation-delay: 3s;
  animation-duration: 18s;
}

.bubble:nth-child(3) {
  left: 38%;
  width: 45px;
  height: 45px;
  animation-delay: 1s;
  animation-duration: 9s;
}

.bubble:nth-child(4) {
  left: 52%;
  width: 110px;
  height: 110px;
  animation-delay: 5s;
  animation-duration: 22s;
}

.bubble:nth-child(5) {
  left: 68%;
  width: 70px;
  height: 70px;
  animation-delay: 2s;
  animation-duration: 14s;
}

.bubble:nth-child(6) {
  left: 82%;
  width: 35px;
  height: 35px;
  animation-delay: 6s;
  animation-duration: 10s;
}

.bubble:nth-child(7) {
  left: 93%;
  width: 80px;
  height: 80px;
  animation-delay: 4s;
  animation-duration: 16s;
}

.bubble:nth-child(8) {
  left: 15%;
  width: 50px;
  height: 50px;
  animation-delay: 8s;
  animation-duration: 13s;
}

.bubble:nth-child(9) {
  left: 45%;
  width: 100px;
  height: 100px;
  animation-delay: 7s;
  animation-duration: 20s;
}

.bubble:nth-child(10) {
  left: 78%;
  width: 55px;
  height: 55px;
  animation-delay: 9s;
  animation-duration: 15s;
}

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

  15% {
    opacity: 0.7;
  }

  85% {
    opacity: 0.7;
  }

  100% {
    transform: translateY(-450px) scale(1.3) rotate(360deg);
    opacity: 0;
  }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 992px) {
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 80px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease-in-out;
    z-index: 999;
  }

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

  .nav-link {
    color: var(--text-dark);
    font-size: 1.2rem;
  }

  .mobile-toggle {
    display: block;
    z-index: 1001;
  }

  .hero-title {
    font-size: 3rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}

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

  .hero-btns {
    flex-direction: column;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   E-COMMERCE ENHANCEMENTS
   ========================================== */

/* Brand Story Section */
.brand-story-section {
  background-color: transparent;
  padding: 40px 0;
}

.brand-story-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.brand-story-text .accent-title {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.5rem;
}

.brand-story-text .story-heading {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.brand-story-text .story-paragraph {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.brand-story-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Card Flip Effect */
.flip-card {
  width: 250px;
  background-color: transparent;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  animation: card-flip 5s infinite ease-in-out;
}

.flip-card-front,
.flip-card-back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  /* Safari */
}

.flip-card-front {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotateY(180deg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.flip-card img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(var(--shadow-md));
}

@keyframes card-flip {

  0%,
  40% {
    transform: rotateY(0deg);
  }

  45%,
  90% {
    transform: rotateY(180deg);
  }

  95%,
  100% {
    transform: rotateY(360deg);
  }
}

@media (max-width: 768px) {
  .brand-story-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .brand-story-logo {
    order: -1;
  }
}

/* Trust Badges */
.trust-section {
  background-color: transparent;
  padding: 40px 0;
}

.trust-badges-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-badge {
  text-align: center;
  flex: 1;
  min-width: 250px;
  padding: 20px;
  transition: var(--transition);
}

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

.trust-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.trust-badge h4 {
  font-size: 1.2rem;
  color: #0f0f1a;
  margin-bottom: 5px;
}

.trust-badge p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 20px 0;
  transition: bottom 0.5s ease-in-out;
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.cookie-text p {
  margin: 0;
  color: var(--text-dark);
}

.cookie-text a {
  color: var(--primary-color);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-text {
    flex-direction: column;
  }
}

/* Wishlist Active State */
.product-action-btn.active-wishlist {
  background-color: var(--danger);
  color: var(--bg-white);
}

.product-action-btn.active-wishlist i {
  font-weight: 900;
  /* FontAwesome solid */
}

/* Sticky Cart Bar */
.sticky-cart-bar {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 0;
  transition: bottom 0.3s ease-in-out;
  border-top: 2px solid var(--primary-color);
}

.sticky-cart-bar.visible {
  bottom: 0;
}

.sticky-cart-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sticky-product-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sticky-product-image {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.sticky-product-title {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-dark);
}

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

/* ==========================================
   POPULAR PRODUCTS (CUSTOM LAYOUT)
   ========================================== */
.popular-products-section {
  background-color: #f8f6f0;
  /* Matching var(--bg-light) for seamless transition with divider */
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Background Decoration Packets */
.popular-bg-decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
  /* Subtle transparency */
  filter: blur(1px);
  /* Slight blur for depth */
  transition: var(--transition);
  animation: float-slow 8s ease-in-out infinite;
}

.popular-bg-decor img {
  width: 100%;
  height: auto;
  max-width: 200px;
}

.decor-1 {
  top: 10%;
  left: -5%;
  transform: rotate(-15deg);
  animation-duration: 10s;
}

.decor-2 {
  bottom: 15%;
  left: 2%;
  transform: rotate(20deg);
  animation-duration: 12s;
  animation-delay: 1s;
}

.decor-3 {
  top: 5%;
  right: -3%;
  transform: rotate(15deg);
  animation-duration: 9s;
  animation-delay: 0.5s;
}

.decor-4 {
  bottom: 10%;
  right: 1%;
  transform: rotate(-20deg);
  animation-duration: 11s;
  animation-delay: 1.5s;
}

.decor-5 {
  top: 40%;
  left: 45%;
  opacity: 0.08;
  max-width: 150px;
  animation-duration: 15s;
  animation-delay: 2s;
}

@keyframes float-slow {

  0%,
  100% {
    transform: translateY(0) rotate(var(--rot, 0deg));
  }

  50% {
    transform: translateY(-20px) rotate(calc(var(--rot, 0deg) + 5deg));
  }
}

/* Set specific rotation for each to avoid override by animation */
.decor-1 {
  --rot: -15deg;
}

.decor-2 {
  --rot: 20deg;
}

.decor-3 {
  --rot: 15deg;
}

.decor-4 {
  --rot: -20deg;
}

.decor-5 {
  --rot: 5deg;
}

.popular-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.popular-header .section-title.ornate {
  margin-bottom: 0;
}

.popular-header .section-title .subtitle {
  font-family: var(--font-accent);
  font-size: 2rem;
  color: var(--secondary-color);
  text-transform: none;
  letter-spacing: 1px;
  display: block;
  margin-bottom: -10px;
}

.popular-header .section-title .main-title {
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.heading-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 5px;
}

.heading-divider .line {
  height: 2px;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

.heading-divider i {
  color: var(--secondary-color);
  font-size: 0.8rem;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.4));
}


.slider-nav {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
}

.nav-btn:hover {
  background: var(--primary-color);
  color: var(--bg-white);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.popular-slider-viewport {
  overflow: hidden;
  margin: 0 -15px;
  padding: 20px 15px 40px;
}

.popular-products-grid {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.popular-product-card {
  flex: 0 0 calc(33.333% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  background: var(--bg-white);
  padding: 0;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.popular-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.popular-product-image {
  aspect-ratio: 1 / 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  position: relative;
}

.popular-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  transition: var(--transition);
}

.popular-product-card:hover .popular-product-image img {
  transform: scale(1.05) translateY(-5px);
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.popular-product-content {
  padding: 20px;
  width: 100%;
}

.brand-name {
  color: #c41e3a;
  /* Premium Red */
  font-weight: 700;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.3rem;
  text-transform: none;
}

.popular-product-content .product-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.6rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.popular-product-content .product-desc {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-meta {
  margin-bottom: 1.2rem;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.btn-dark {
  background-color: #4a9e0a;
  /* Matching the screenshot's green */
  color: white;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 500;
  display: inline-block;
  transition: var(--transition);
  font-size: 0.95rem;
}

.btn-dark:hover {
  background-color: #3d8208;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(74, 158, 10, 0.2);
}

.slider-dots-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--primary-color);
  width: 30px;
  border-radius: 10px;
}

@media (max-width: 992px) {
  .popular-product-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .popular-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .popular-header .section-title {
    text-align: center;
  }

  .popular-product-card {
    flex: 0 0 100%;
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .popular-product-image {
    flex: 0 0 150px;
    width: 150px;
    margin-bottom: 20px;
  }
}

/* Wave Line at the bottom */
/* .popular-products-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 50px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" preserveAspectRatio="none"><path fill="%23f5f3e9" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') center bottom/100% 100% no-repeat;
  z-index: 2;
} */

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

  .popular-products-grid .popular-product-card:nth-child(odd) {
    transform: none;
  }

  .popular-product-card {
    flex-direction: column;
    text-align: center;
  }

  .popular-product-image {
    flex: 0 0 auto;
    width: 150px;
  }
}

/* ==========================================
   CART SIDE DRAWER (PREMIUM DESIGN)
   ========================================== */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 15, 26, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  background-color: var(--bg-white);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-main);
}

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

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

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

.cart-drawer-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-drawer-close {
  background: none;
  border: none;
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
  line-height: 1;
}

.cart-drawer-close:hover {
  color: var(--secondary-color);
  transform: rotate(90deg);
}

.cart-drawer-body {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-drawer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.cart-drawer-item {
  display: flex;
  gap: 15px;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

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

.cart-drawer-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-drawer-item-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.cart-drawer-item-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.cart-drawer-qty-container {
  display: flex;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  overflow: hidden;
  width: 90px;
  height: 32px;
  align-items: center;
}

.cart-drawer-qty-btn {
  flex: 1;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cart-drawer-qty-btn:hover {
  background-color: var(--border-color);
}

.cart-drawer-qty-input {
  width: 30px;
  text-align: center;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  background: none;
}

.cart-drawer-remove-btn {
  background: none;
  border: none;
  color: var(--danger, #dc3545);
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-drawer-remove-btn:hover {
  background-color: rgba(220, 53, 69, 0.1);
  transform: scale(1.1);
}

.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-white);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.02);
}

.cart-drawer-totals {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.cart-drawer-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-light);
}

.cart-drawer-total-row.total-grand {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  border-top: 1px dashed var(--border-color);
  padding-top: 12px;
  margin-top: 4px;
}

.cart-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================
   CATEGORY CLOCK SECTION
   ========================================== */
.category-clock-section {
  padding: 120px 0;
  background-color: #EBF7E3;
  /* Soft mint green from reference */
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clock-wrapper {
  position: relative;
  width: 650px;
  height: 650px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clock-center {
  position: relative;
  width: 320px;
  height: 320px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
}

.promo-text {
  z-index: 15;
}

.promo-text h3 {
  color: var(--primary-color);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0;
  line-height: 1;
}

.promo-text p {
  color: #444;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.promo-code {
  margin-bottom: 2rem;
}

.promo-code span {
  display: block;
  font-size: 0.9rem;
  color: #555;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 5px;
}

.promo-code strong {
  font-size: 2rem;
  color: #FF5252;
  /* Vivid red from image */
  font-weight: 800;
  letter-spacing: 1px;
}

.order-now {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 800;
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.order-now:hover {
  transform: scale(1.1);
  color: var(--primary-color-dark);
}

.order-now::before,
.order-now::after {
  content: '☆';
  margin: 0 15px;
  font-size: 1.8rem;
  vertical-align: middle;
}

.clock-items {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.clock-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  margin-top: -70px;
  margin-left: -70px;
  transition: var(--transition);
  /* Distribute items in a circle */
  --angle: calc(360deg / var(--total) * var(--i) - 90deg);
  transform: rotate(var(--angle)) translate(280px) rotate(calc(-1 * var(--angle)));
}

.clock-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  text-decoration: none;
}

.item-img-wrapper {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border: 5px solid var(--bg-white);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.clock-item span {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.8);
  padding: 2px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(-10px);
  transition: var(--transition);
}

.clock-item:hover .item-img-wrapper {
  transform: scale(1.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-color);
}

.clock-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

/* Clock Hands Styling */
.clock-hand {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--primary-color);
  transform-origin: bottom center;
  border-radius: 20px;
  z-index: 5;
  opacity: 0.7;
}

.hand-long {
  width: 12px;
  height: 200px;
  margin-left: -6px;
  margin-top: -200px;
  transform: translate(0, 15px) rotate(20deg);
}

.hand-short {
  width: 12px;
  height: 130px;
  margin-left: -6px;
  margin-top: -130px;
  transform: translate(0, 15px) rotate(-130deg);
}

.hand-center {
  width: 35px;
  height: 35px;
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  border: 6px solid #8db35c;
  /* Lighter green ring */
  box-shadow: 0 0 0 4px var(--primary-color);
}

/* Decorative corner elements */
.clock-decor {
  position: absolute;
  width: 150px;
  height: 150px;
  opacity: 0.15;
  pointer-events: none;
}

.decor-tl {
  top: 20px;
  left: 20px;
  background-image: radial-gradient(circle, var(--primary-color) 20%, transparent 20%);
  background-size: 20px 20px;
}

.decor-br {
  bottom: 20px;
  right: 20px;
  background-image: radial-gradient(circle, var(--primary-color) 20%, transparent 20%);
  background-size: 20px 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .clock-wrapper {
    width: 100%;
    height: 500px;
  }

  .clock-item {
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    transform: rotate(var(--angle)) translate(180px) rotate(calc(-1 * var(--angle)));
  }

  .item-img-wrapper {
    width: 80px;
    height: 80px;
  }

  .clock-center {
    width: 250px;
    height: 250px;
  }

  .promo-text h3 {
    font-size: 2rem;
  }

  .promo-text p {
    font-size: 0.8rem;
  }

  .order-now {
    font-size: 1.5rem;
  }

  .hand-long {
    height: 140px;
    margin-top: -140px;
  }

  .hand-short {
    height: 90px;
    margin-top: -90px;
  }
}