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

/* ==========================================================================
   KAFF Luxury Kitchen — Style Sheet
   ========================================================================== */

:root {
  /* Colors */
  --primary-black: #0A0A0A;
  --secondary-grey: #121212;
  --card-grey: #1C1C1C;
  --input-grey: #262626;
  --border-grey: rgba(255, 255, 255, 0.08);
  --text-primary: #FFFFFF;
  --text-secondary: #8A8A8A;
  --text-muted: #555555;
  --accent-gold: #D4AF37;
  --accent-gold-hover: #E5C547;
  --accent-gold-glow: rgba(212, 175, 55, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.07);

  /* Fonts */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-product: 'Poppins', sans-serif;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Base Reset & Defaults --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
}

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

::-webkit-scrollbar-track {
  background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
  background: var(--card-grey);
  border-radius: 4px;
  border: 2px solid var(--primary-black);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* ==========================================================================
   Utility Classes & Layout
   ========================================================================== */

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2.5rem;
  }
}

@media (min-width: 1440px) {
  .container {
    padding: 0 4rem;
  }
}


.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-bg-dark {
  background-color: var(--primary-black);
}

.section-bg-grey {
  background-color: var(--secondary-grey);
}

/* --- Typography --- */
.text-gradient {
  background: linear-gradient(135deg, var(--accent-gold), #FFF3B0, var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.uppercase-tracking {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  font-weight: 600;
}

/* --- Section Heading --- */
.section-heading {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-heading.align-left {
  text-align: left;
}

.section-heading .accent-line {
  width: 60px;
  height: 2px;
  background-color: var(--accent-gold);
  margin: 0 auto 1.5rem;
}

.section-heading.align-left .accent-line {
  margin: 0 0 1.5rem 0;
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-heading p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading.align-left p {
  margin-left: 0;
}

@media (min-width: 768px) {
  .section-heading h2 {
    font-size: 3rem;
  }
}

/* --- Glassmorphism Card --- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--primary-black);
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 70px;
  border-bottom-color: var(--border-grey);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

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

.logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  color: var(--text-primary);
  user-select: none;
  transition: var(--transition-smooth);
}

.logo:hover {
  color: var(--accent-gold);
}

.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 0.35rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    padding: 0.3rem 0.4rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.35s ease, letter-spacing 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  padding: 0.5rem 0.85rem;
  display: inline-block;
  border-radius: 50px;
  white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent-gold);
  letter-spacing: 0.16em;
  background: rgba(212, 175, 55, 0.08);
  box-shadow: inset 0 0 18px rgba(212, 175, 55, 0.06), 0 0 12px rgba(212, 175, 55, 0.04);
}

/* Animated underline: expands from center with gold gradient glow */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 30%, var(--accent-gold) 70%, transparent 100%);
  transform: translateX(-50%);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 1px 6px rgba(212, 175, 55, 0.3);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 60%;
}

/* Floating gold diamond indicator dot above active */
.nav-links a::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: linear-gradient(135deg, var(--accent-gold), #f0d060);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  transform: translateX(-50%) rotate(45deg) scale(0);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-links a:hover::before, .nav-links a.active::before {
  transform: translateX(-50%) rotate(45deg) scale(1);
}

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

.nav-actions button {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.nav-actions button:hover {
  color: var(--text-primary);
  transform: scale(1.1);
}

/* --- Premium Vector SVG Icons --- */
.icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
  transition: var(--transition-smooth);
}

.category-icon-circle svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
  transition: var(--transition-smooth);
}

.why-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
  transition: var(--transition-smooth);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
  transition: var(--transition-smooth);
}

.contact-info-card svg, .btn-whatsapp svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
}


.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

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

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

/* --- Mobile Drawer --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75vw;
  max-width: 320px;
  height: 100vh;
  background-color: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 999;
  border-left: 1px solid var(--border-grey);
  display: flex;
  flex-direction: column;
  padding: 6.5rem 2rem 2rem;
  transition: var(--transition-slow);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-drawer a {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--text-secondary);
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

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

/* ==========================================================================
   Hero Section (Cinematic, Unique & High-End)
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--primary-black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.05);
}

@keyframes kenBurnsBg {
  0% { transform: scale(1); }
  100% { transform: scale(1.08) rotate(0.3deg); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle 450px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 175, 55, 0.09), transparent 80%),
    radial-gradient(circle at center, rgba(10, 10, 10, 0.15) 0%, rgba(10, 10, 10, 0.85) 100%);
  z-index: 2;
  pointer-events: none;
  transition: background 0.15s ease-out;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 850px;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-pre {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 7vw, 4.25rem); /* Beautiful large luxury scale */
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: #fff;
  text-transform: capitalize;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-title span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent-gold);
  background: linear-gradient(135deg, var(--accent-gold) 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 0 4px;
}

.hero-content p {
  color: var(--accent-silver, #C0C0C0);
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 2.75rem;
  line-height: 1.65;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

/* Metallic Shimmer Shine for CTA Button */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(30deg);
  pointer-events: none;
  animation: metallicShine 4.5s infinite ease-in-out;
}

@keyframes metallicShine {
  0% { left: -60%; }
  15% { left: 130%; }
  100% { left: 130%; }
}

/* --- Floating Particles --- */
.particle {
  position: absolute;
  border-radius: 50%;
  background-color: var(--accent-gold);
  box-shadow: 0 0 10px 2px rgba(212, 175, 55, 0.4);
  pointer-events: none;
  z-index: 2;
  animation: floatParticle 8s ease-in-out infinite;
}

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-30px) scale(1.2); opacity: 0.8; }
}

/* --- Unique Mouse Scroll Indicator --- */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.hero-scroll:hover {
  opacity: 0.8;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid var(--accent-gold);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  animation: mouseScrollWheel 1.8s infinite ease-in-out;
}

@keyframes mouseScrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0; }
  51% { transform: translateY(-2px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.scroll-text {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-secondary);
  font-weight: 700;
}

/* --- Bottom Gradient Blend --- */
.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--primary-black), transparent);
  pointer-events: none;
  z-index: 5;
}

/* ==========================================================================
   Categories Section
   ========================================================================== */

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

@media (min-width: 640px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.category-card {
  position: relative;
  height: 220px; /* Reduced from 280px to look medium size, neat and clean */
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  border: 1px solid var(--border-grey);
  transition: var(--transition-smooth);
}

.category-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px var(--accent-gold-glow);
}

.category-img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

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

.category-gradient-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1c1c1c 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-slow);
  color: var(--accent-gold);
}

.category-gradient-placeholder:not(:has(svg)) {
  font-size: 4rem;
  color: initial; /* Preserve native emoji colors */
  font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
}

.category-gradient-placeholder svg {
  width: 64px;
  height: 64px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition-smooth);
}

.category-card:hover .category-gradient-placeholder {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.2) 60%, transparent 100%);
  z-index: 2;
}

.category-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.category-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  color: var(--accent-gold);
}

.category-icon-circle:not(:has(svg)) {
  font-size: 1.25rem;
  color: initial; /* Preserve native emoji colors */
  font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
}

.category-card:hover .category-icon-circle {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #0a0a0a;
}

.category-card:hover .category-icon-circle:not(:has(svg)) {
  color: initial; /* Keep emoji native colors on hover */
}

.category-details h3 {
  font-family: var(--font-product);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.category-details p {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.category-arrow {
  margin-left: auto;
  font-size: 1.15rem;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.category-card:hover .category-arrow {
  color: var(--accent-gold);
  transform: translateX(5px);
}

/* Add Collection Card */
.category-card-add {
  border: 1px dashed var(--accent-gold) !important;
  background: transparent;
  cursor: pointer;
}

.category-card-add:hover {
  border-color: var(--accent-gold) !important;
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.18);
  background: rgba(212, 175, 55, 0.03);
}

/* ==========================================================================
   Featured Products Section
   ========================================================================== */

.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.filter-tab {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-grey);
  color: var(--text-secondary);
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.05em;
}

.filter-tab:hover, .filter-tab.active {
  background-color: var(--accent-gold);
  color: var(--primary-black);
  border-color: var(--accent-gold);
  font-weight: 600;
}

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

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

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

.product-card {
  background-color: var(--card-grey);
  border: 1px solid var(--border-grey);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.04);
}

.product-img-wrapper {
  position: relative;
  height: 180px;
  background-color: transparent;
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: var(--accent-gold);
  color: var(--primary-black);
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  z-index: 10;
}

.product-info {
  padding: 1.15rem; /* Reduced from 1.5rem to look tighter and cleaner */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  color: var(--text-secondary);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.product-info h3 {
  font-family: var(--font-product);
  font-size: 1rem; /* Slightly reduced for a premium compact look */
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: var(--accent-gold);
  font-size: 0.75rem;
  margin-bottom: 0.75rem; /* Reduced from 1.25rem */
}

.product-rating span {
  color: var(--text-secondary);
  font-size: 0.7rem;
  margin-left: 0.2rem;
}

.product-features-list {
  list-style: none;
  margin-bottom: 0.85rem; /* Reduced from 1.5rem */
  flex-grow: 1;
}

.product-features-list li {
  font-size: 0.75rem; /* Slightly tighter text */
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.product-features-list li::before {
  content: '✓';
  color: var(--accent-gold);
  font-weight: bold;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.85rem; /* Reduced from 1.25rem */
  padding-top: 0.75rem; /* Reduced from 1rem */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-price {
  font-family: var(--font-product);
  font-size: 1.15rem; /* Slightly tighter price sizing */
  font-weight: 700;
}

.product-price-original {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-decoration: line-through;
}

.product-actions-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 0.4rem;
}

.product-actions-grid button {
  background-color: var(--input-grey);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem; /* Tighter typography */
  padding: 0.5rem 0.4rem; /* Tighter padding for a neat look */
  transition: var(--transition-smooth);
}

.product-actions-grid button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-gold);
}

.product-actions-grid .btn-add-cart {
  background-color: var(--accent-gold);
  color: var(--primary-black);
  border: none;
  font-weight: 600;
  font-size: 0.8rem;
  gap: 0.35rem;
}

.product-actions-grid .btn-add-cart:hover {
  background-color: var(--accent-gold-hover);
}

/* ==========================================================================
   Why Choose KAFF — Premium Unique Design
   ========================================================================== */

.why-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 5rem;
  counter-reset: why-counter;
}

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

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

.why-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  counter-increment: why-counter;
  height: 230px;
}

/* Large translucent counter number in top-right corner */
.why-card::before {
  content: '0' counter(why-counter);
  position: absolute;
  top: -10px;
  right: -5px;
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.04);
  line-height: 1;
  pointer-events: none;
  transition: color 0.5s ease;
  z-index: 0;
}

.why-card:hover::before {
  color: rgba(212, 175, 55, 0.1);
}

/* Animated diagonal accent stripe */
.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--accent-gold) 0%, transparent 100%);
  border-radius: 0 0 4px 0;
  transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.why-card:hover::after {
  height: 100%;
}

.why-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.08), 0 4px 16px rgba(0, 0, 0, 0.3);
  background: rgba(212, 175, 55, 0.02);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 2;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-gold);
  fill: none;
  stroke-width: 1.8;
  transition: transform 0.4s ease, stroke 0.3s ease;
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #f0d060 100%);
  border-color: var(--accent-gold);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.why-card:hover .why-icon svg {
  stroke: var(--primary-black);
  transform: scale(1.15) rotate(-5deg);
}

.why-card h3 {
  font-family: var(--font-product);
  font-size: 1.1rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.why-card:hover h3 {
  color: var(--accent-gold);
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.65;
  position: relative;
  z-index: 2;
}

/* --- Stats panel --- */
.stats-panel {
  background-color: var(--secondary-grey);
  border: 1px solid var(--border-grey);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (min-width: 1024px) {
  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.08);
  }
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 2.25rem;
  }
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   Kitchen Inspiration Gallery
   ========================================================================== */

.gallery-masonry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
  border: 1px solid var(--border-grey);
}

.gallery-item.h-tall,
.gallery-item.h-short {
  height: 220px;
}

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

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

.gallery-item-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(28, 28, 28, 0.9) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.8);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-smooth);
}

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

.gallery-item-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  margin-bottom: 1rem;
}

.gallery-item:hover .gallery-item-overlay h4 {
  transform: translateY(0);
}

.gallery-item-overlay .btn-view {
  transform: translateY(20px);
  transition: var(--transition-smooth);
  transition-delay: 0.05s;
}

.gallery-item:hover .gallery-item-overlay .btn-view {
  transform: translateY(0);
}

.gallery-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  z-index: 5;
  background-color: rgba(10, 10, 10, 0.6);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-label {
  opacity: 0;
}

/* ==========================================================================
   AI Kitchen Planner
   ========================================================================== */

.planner-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .planner-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.planner-desc p {
  color: var(--accent-silver, #C0C0C0);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.planner-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.planner-step {
  display: flex;
  gap: 1.25rem;
  align-items: start;
}

.planner-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), transparent);
  border: 1px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.planner-step h4 {
  font-family: var(--font-product);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.planner-step p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

.planner-card {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.planner-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background-color: rgba(212, 175, 55, 0.04);
  border-radius: 50%;
  filter: blur(50px);
}

.upload-zone {
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  cursor: pointer;
  margin-bottom: 1.75rem;
  transition: var(--transition-smooth);
}

.upload-zone:hover {
  border-color: var(--accent-gold);
  background-color: rgba(255, 255, 255, 0.01);
}

.upload-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.upload-zone p {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}

.upload-zone span {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
  display: block;
}

.dims-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.dims-grid label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.dims-grid input {
  width: 100%;
  background-color: var(--input-grey);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.75rem;
  color: white;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.dims-grid input:focus {
  border-color: var(--accent-gold);
  outline: none;
}

/* ==========================================================================
   Product Comparison
   ========================================================================== */

.compare-selectors {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .compare-selectors {
    grid-template-columns: repeat(2, 1fr);
  }
}

.compare-selectors label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.compare-selectors select {
  width: 100%;
  background-color: var(--input-grey);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.85rem;
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238A8A8A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.compare-selectors select:focus {
  border-color: var(--accent-gold);
  outline: none;
}

.compare-table {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.compare-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-header div {
  padding: 1.25rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-header div:first-child {
  justify-content: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  font-size: 0.75rem;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition-smooth);
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-row:hover {
  background-color: rgba(255, 255, 255, 0.01);
}

.compare-row div {
  padding: 1.15rem 1rem;
  font-size: 0.85rem;
  color: var(--accent-silver, #C0C0C0);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-row div:first-child {
  justify-content: flex-start;
  color: var(--text-primary);
  font-weight: 500;
}

.compare-row .better-highlight {
  color: var(--accent-gold);
  font-weight: 600;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 3rem;
}

.testimonials-track {
  overflow: hidden;
  position: relative;
  min-height: 250px;
}

.testimonial-slide {
  display: none;
  animation: fadeTestimonial 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.testimonial-slide.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@keyframes fadeTestimonial {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-quote {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--accent-silver, #C0C0C0);
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  font-size: 4rem;
  color: var(--accent-gold-glow);
  position: absolute;
  left: -20px;
  top: -30px;
  line-height: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), #FFF);
  color: var(--primary-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.testimonial-details {
  text-align: left;
}

.testimonial-details h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.15rem;
}

.testimonial-details p {
  color: var(--text-secondary);
  font-size: 0.75rem;
}

.testimonial-controls {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--card-grey);
  border: 1px solid var(--border-grey);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: var(--transition-smooth);
}

.testimonial-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background-color: rgba(255, 255, 255, 0.02);
}

/* ==========================================================================
   Dealer Locator
   ========================================================================== */

.dealers-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .dealers-layout {
    grid-template-columns: 1.2fr 2fr;
  }
}

.dealers-panel {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dealers-search-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.dealers-search-form input {
  flex-grow: 1;
  background-color: var(--input-grey);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.85rem;
  color: white;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.dealers-search-form input:focus {
  border-color: var(--accent-gold);
  outline: none;
}

.dealers-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
  max-height: 380px;
  padding-right: 0.5rem;
}

.dealer-item {
  background-color: var(--input-grey);
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 1.25rem;
  transition: var(--transition-smooth);
}

.dealer-item:hover {
  border-color: rgba(212, 175, 55, 0.2);
}

.dealer-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.dealer-header h4 {
  font-family: var(--font-product);
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
}

.dealer-distance {
  font-size: 0.65rem;
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--accent-gold);
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.dealer-item p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.dealer-contact {
  font-size: 0.75rem;
  color: var(--accent-silver, #C0C0C0);
}

.dealers-map-panel {
  background: linear-gradient(135deg, #1C1C1C 0%, #121212 100%);
  border: 1px solid var(--border-grey);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.dealers-map-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.map-placeholder-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
  animation: floatIcon 6s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.dealers-map-panel h4 {
  font-family: var(--font-product);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.dealers-map-panel p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-width: 320px;
  margin-bottom: 1.75rem;
}

.badge-coming-soon {
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--accent-gold);
  font-weight: 700;
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ==========================================================================
   Service & Support Section
   ========================================================================== */

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

@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.service-card {
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition-smooth);
}

.service-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--primary-black);
}

.service-card h3 {
  font-family: var(--font-product);
  font-size: 1.2rem;
  font-weight: 600;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

.service-link {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-top: auto;
}

.service-link:hover {
  color: var(--accent-gold-hover);
  text-decoration: underline;
}

/* ==========================================================================
   Blog Section
   ========================================================================== */

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

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog-card {
  position: relative;
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 380px;
  transition: var(--transition-smooth);
}

@media (min-width: 768px) {
  .blog-card {
    height: 440px;
  }
}

.blog-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.blog-img-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.06);
}

.blog-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-img-wrapper .blog-card-gradient {
  transform: scale(1.06);
}

.blog-img-placeholder {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  z-index: 10;
}

.blog-body {
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 1.5rem;
  border-radius: 0 0 24px 24px;
  background: rgba(15, 15, 15, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-body {
  background: rgba(15, 15, 15, 0.78);
  border-top-color: rgba(212, 175, 55, 0.3);
}

.blog-category {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.blog-body h3 {
  font-family: var(--font-product);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: white;
}

.blog-body p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: var(--text-secondary);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1.2fr 1fr;
  }
}

.contact-form-panel {
  padding: 2.5rem;
}

.contact-form-panel h3 {
  font-family: var(--font-product);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

@media (min-width: 640px) {
  .form-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

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

.form-group label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
  background-color: var(--input-grey);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: white;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent-gold);
  outline: none;
}

.form-group textarea {
  resize: none;
}

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

.contact-info-card {
  padding: 2.25rem;
}

.contact-info-card h3 {
  font-family: var(--font-product);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item {
  display: flex;
  align-items: start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.info-details h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.info-details p, .info-details a {
  font-size: 0.85rem;
  color: var(--accent-silver, #C0C0C0);
  line-height: 1.5;
}

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

.contact-map-placeholder {
  height: 250px;
  background: linear-gradient(135deg, #1C1C1C 0%, #0A0A0A 100%);
  border: 1px solid var(--border-grey);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.contact-map-placeholder h4 {
  font-family: var(--font-product);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-map-placeholder p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */

.footer {
  background-color: var(--primary-black);
  border-top: 1px solid var(--border-grey);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.5rem;
  margin-bottom: 4rem;
}

.footer-brand {
  grid-column: 1 / -1;
}

.footer-col:nth-child(4) {
  grid-column: 1 / -1;
  text-align: center;
}

.footer-col:nth-child(4) .contact-info {
  align-items: center;
}

.footer-col:nth-child(4) .contact-info li {
  justify-content: center;
}

@media (min-width: 640px) and (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-col:nth-child(4) {
    grid-column: auto;
    text-align: left;
  }
  .footer-col:nth-child(4) .contact-info {
    align-items: flex-start;
  }
  .footer-col:nth-child(4) .contact-info li {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-col:nth-child(4) {
    grid-column: auto;
    text-align: left;
  }
  .footer-col:nth-child(4) .contact-info {
    align-items: flex-start;
  }
  .footer-col:nth-child(4) .contact-info li {
    justify-content: flex-start;
  }
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.75rem;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 260px;
}

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.social-link:hover {
  border-color: var(--accent-gold);
  color: var(--text-primary);
  background-color: var(--accent-gold-glow);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.footer-col a:hover {
  color: white;
  transform: translateX(3px);
  display: inline-block;
}

.footer-col .contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col .contact-info li {
  display: flex;
  gap: 0.75rem;
  align-items: start;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-col .contact-info svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-newsletter {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 2.5rem;
}

.newsletter-flex {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .newsletter-flex {
    flex-direction: row;
    align-items: center;
  }
}

.newsletter-text h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.newsletter-text p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.newsletter-form {
  display: flex;
  width: 100%;
  max-width: 420px;
}

.newsletter-form input {
  flex-grow: 1;
  background-color: var(--input-grey);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px 0 0 10px;
  padding: 0.85rem 1rem;
  color: white;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.newsletter-form input:focus {
  border-color: var(--accent-gold);
  outline: none;
}

.newsletter-form button {
  background-color: var(--accent-gold);
  color: var(--primary-black);
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  padding: 0 1.5rem;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.newsletter-form button:hover {
  background-color: var(--accent-gold-hover);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1.5rem;
}

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

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

.footer-links a:hover {
  color: white;
}

/* ==========================================================================
   Micro-Animations & ScrollReveal
   ========================================================================== */

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Float animations */
.animate-float {
  animation: floatAppliance 6s ease-in-out infinite;
}

@keyframes floatAppliance {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Shimmer loader */
.shimmer {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0) 100%);
  background-size: 200% 100%;
  animation: shimmerAnim 2.5s infinite;
}

@keyframes shimmerAnim {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Star rating pulse */
.star-pulse {
  animation: starPulseAnim 2s infinite ease-in-out;
}

@keyframes starPulseAnim {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* ==========================================================================
   Product Popup Modal (Scaled down & Compact)
   ========================================================================== */

.product-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 1rem;
}

.product-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.product-popup {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  width: 100%;
  max-width: 440px; /* Reduced from 520px for a more compact, neat medium size */
  max-height: 85vh; /* Reduced slightly from 90vh */
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.product-popup-overlay.active .product-popup {
  transform: translateY(0) scale(1);
}

.product-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 10;
  transition: all 0.3s ease;
}

.product-popup-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}

.product-popup-image {
  width: 100%;
  height: 190px; /* Reduced from 260px to shrink the vertical size */
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 20px 20px 0 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.product-popup-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--accent-gold);
  color: #0a0a0a;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}

.product-popup-body {
  padding: 1.25rem; /* Reduced from 1.75rem to look tighter and cleaner */
}

.product-popup-category {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.product-popup-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem; /* Reduced from 1.3rem */
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-popup-desc {
  font-size: 0.8rem; /* Reduced from 0.85rem */
  color: #8a8a8a;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-popup-features {
  list-style: none;
  margin-bottom: 1rem;
  padding: 0;
}

.product-popup-features li {
  font-size: 0.75rem; /* Reduced from 0.8rem */
  color: #a0a0a0;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.product-popup-features li::before {
  content: '✓';
  color: var(--accent-gold);
  font-weight: bold;
  font-size: 0.7rem;
}

.product-popup-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.product-popup-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem; /* Reduced from 1.5rem */
  font-weight: 700;
  color: #fff;
}

.product-popup-original-price {
  font-size: 0.85rem;
  color: #555;
  text-decoration: line-through;
}

.product-popup-discount {
  font-size: 0.65rem;
  font-weight: 700;
  color: #25D366;
  background: rgba(37, 211, 102, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 50px;
}

.product-popup-actions {
  display: flex;
  gap: 0.5rem;
}

.product-popup-actions .btn-popup-whatsapp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.25rem; /* Shrunk padding */
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.product-popup-actions .btn-popup-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.product-popup-actions .btn-popup-whatsapp svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  stroke: none;
}

.product-popup-actions .btn-popup-cart {
  padding: 0.75rem 1.25rem;
  background: var(--accent-gold);
  color: #0a0a0a;
  border: none;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-popup-actions .btn-popup-cart:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-2px);
}

/* Product popup scrollbar */
.product-popup::-webkit-scrollbar {
  width: 4px;
}

.product-popup::-webkit-scrollbar-track {
  background: transparent;
}

.product-popup::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

@media (max-width: 480px) {
  .product-popup {
    max-width: 100%;
    border-radius: 16px;
  }
  
  .product-popup-image {
    height: 160px;
    border-radius: 16px 16px 0 0;
  }
  
  .product-popup-body {
    padding: 1rem;
  }
  
  .product-popup-body h3 {
    font-size: 1rem;
  }
  
  .product-popup-actions {
    flex-direction: column;
  }
}

/* ==========================================================================
   Admin Add Product Button & Styles
   ========================================================================== */

.filter-tab-add {
  background-color: transparent;
  border: 1px dashed var(--accent-gold);
  color: var(--accent-gold);
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.filter-tab-add:hover {
  background-color: var(--accent-gold);
  color: var(--primary-black);
  border-style: solid;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

/* WhatsApp Button inside Card */
.btn-card-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.65rem 1rem;
  background-color: #25D366;
  color: #fff;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.12);
}

.btn-card-whatsapp:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.25);
}

.btn-card-whatsapp svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}

/* Scanner spinner */
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   PIN-Secured Delete Buttons Styles
   ========================================================================== */

.btn-delete-product {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  border-radius: 50% !important;
  background: rgba(225, 29, 72, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: white !important;
  cursor: pointer;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 15;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 10px rgba(225, 29, 72, 0.3);
  padding: 0 !important;
}

.btn-delete-product svg {
  width: 14px !important;
  height: 14px !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  fill: none !important;
}

.btn-delete-product:hover {
  background: rgba(225, 29, 72, 1) !important;
  transform: scale(1.1) !important;
}

.delete-collection-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  color: #ff4d4d;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 5;
  background: rgba(0, 0, 0, 0.6);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.delete-collection-btn:hover {
  background: rgba(225, 29, 72, 0.9);
  color: white;
}

/* Hover triggers to reveal delete buttons */
.product-card:hover .btn-delete-product,
.gallery-item:hover .btn-delete-product {
  opacity: 1;
  visibility: visible;
}

.category-card:hover .delete-collection-btn {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   Service Card WhatsApp Button Styling
   ========================================================================== */

.service-card {
  position: relative;
}

.service-whatsapp-btn {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 10;
  text-decoration: none;
}

.service-whatsapp-btn:hover {
  background-color: #20ba59;
  transform: scale(1.15) rotate(15deg);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
  color: white;
}

.service-whatsapp-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ==========================================================================
   Super Combo Offers Styles
   ========================================================================== */

.combos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .combos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.combo-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.combo-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.08);
}

.combo-badge-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.combo-discount-badge {
  background: var(--accent-gold);
  color: #0a0a0a;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.combo-gift-badge-small {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.combo-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.combo-gift-badge {
  background: rgba(212, 175, 55, 0.06);
  border: 1px dashed rgba(212, 175, 55, 0.3);
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.combo-items-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.combo-item-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 1rem;
}

.combo-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 0.4rem;
}

.combo-item-type {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8a8a8a;
  font-weight: 700;
}

.combo-item-model {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.combo-item-specs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.combo-item-specs li {
  font-size: 0.75rem;
  color: #a0a0a0;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.combo-item-specs li::before {
  content: '•';
  color: var(--accent-gold);
  font-size: 1rem;
  line-height: 1;
}

.combo-price-section {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.combo-price-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.combo-mrp {
  font-size: 0.75rem;
  color: #666;
}

.combo-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.combo-savings {
  font-size: 0.8rem;
  font-weight: 700;
  color: #25d366;
  background: rgba(37, 211, 102, 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  border: 1px solid rgba(37, 211, 102, 0.1);
}

.combo-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-combo-flyer {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-combo-flyer:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-combo-whatsapp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-combo-whatsapp:hover {
  background: #20ba59;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

/* Edit and Delete Buttons on Cards */
.btn-edit-product {
  position: absolute;
  top: 0.75rem;
  right: 3rem;
  width: 32px;
  height: 32px;
  border-radius: 50% !important;
  background: var(--accent-gold) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: #0a0a0a !important;
  cursor: pointer;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 15;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
  padding: 0 !important;
}

.btn-edit-product svg {
  width: 14px !important;
  height: 14px !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  fill: none !important;
}

.btn-edit-product:hover {
  background: var(--accent-gold-hover) !important;
  transform: scale(1.1) !important;
}

/* Show edit and delete buttons on hover */
.product-card:hover .btn-edit-product,
.combo-card:hover .btn-edit-product,
.combo-card:hover .btn-delete-product {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   COMPREHENSIVE MOBILE RESPONSIVE OVERRIDES
   ========================================================================== */

/* ---- Small Phones (max 480px) ---- */
@media (max-width: 480px) {

  /* Global */
  .section {
    padding: 3.5rem 0;
  }
  .container {
    padding: 0 1rem;
  }
  .section-heading {
    margin-bottom: 2.5rem;
  }
  .section-heading h2 {
    font-size: 1.65rem;
  }
  .section-heading p {
    font-size: 0.85rem;
    padding: 0 0.25rem;
  }

  /* Header */
  .header {
    height: 64px;
  }
  .header.scrolled {
    height: 60px;
  }
  .logo {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
  }

  /* Hero */
  .hero {
    min-height: 85vh;
  }
  .hero-content {
    padding: 0 1rem;
  }
  .hero-pre {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
  }
  .hero-title {
    font-size: clamp(1.5rem, 6.5vw, 2.5rem) !important;
    white-space: normal !important;
    word-break: break-word;
    line-height: 1.2;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
  .hero-ctas .btn {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.75rem !important;
  }
  .hero-scroll {
    bottom: 1.5rem;
  }

  /* Categories */
  .category-card {
    height: 180px;
    border-radius: 16px;
  }
  .category-body {
    padding: 1rem;
    gap: 0.75rem;
  }
  .category-icon-circle {
    width: 36px;
    height: 36px;
  }
  .category-details h3 {
    font-size: 1rem;
  }
  .category-details p {
    font-size: 0.7rem;
  }

  /* Filter Tabs */
  .filter-tabs {
    gap: 0.4rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filter-tabs::-webkit-scrollbar {
    display: none;
  }
  .filter-tab {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    flex-shrink: 0;
    white-space: nowrap;
  }

  /* Products Grid */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .product-img-wrapper {
    height: 130px;
    padding: 0.6rem;
    border-radius: 16px 16px 0 0;
  }
  .product-info {
    padding: 0.75rem;
  }
  .product-info h3 {
    font-size: 0.78rem;
    line-height: 1.25;
    margin-bottom: 0.25rem;
  }
  .product-category {
    font-size: 0.55rem;
    margin-bottom: 0.2rem;
  }
  .product-rating {
    font-size: 0.65rem;
    margin-bottom: 0.4rem;
  }
  .product-features-list {
    display: none;
  }
  .product-price-row {
    margin-bottom: 0.5rem;
    padding-top: 0.5rem;
  }
  .product-price {
    font-size: 0.9rem;
  }
  .product-price-original {
    font-size: 0.7rem;
  }
  .product-actions-grid {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
  .product-actions-grid button {
    font-size: 0.7rem;
    padding: 0.4rem;
  }
  .product-card {
    border-radius: 16px;
  }
  .btn-card-whatsapp {
    font-size: 0.7rem;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    margin-top: 0.5rem;
  }

  /* Combos */
  .combo-card {
    padding: 1rem;
    border-radius: 18px;
  }
  .combo-title {
    font-size: 1rem;
  }
  .combo-gift-badge {
    font-size: 0.7rem;
    padding: 0.5rem 0.75rem;
  }
  .combo-item-box {
    padding: 0.75rem;
    border-radius: 12px;
  }
  .combo-item-model {
    font-size: 0.75rem;
  }
  .combo-item-specs li {
    font-size: 0.68rem;
  }
  .combo-price-section {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  .combo-price {
    font-size: 1.1rem;
  }
  .combo-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  .btn-combo-flyer,
  .btn-combo-whatsapp {
    padding: 0.65rem 0.75rem;
    font-size: 0.7rem;
  }

  /* Why KAFF */
  .why-card {
    height: auto;
    min-height: 180px;
    padding: 1.25rem;
  }
  .why-card h3 {
    font-size: 0.95rem;
  }
  .why-card p {
    font-size: 0.75rem;
  }
  .why-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  /* Stats */
  .stats-panel {
    padding: 1.5rem 1rem;
  }
  .stats-grid {
    gap: 1.25rem;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .stat-label {
    font-size: 0.65rem;
  }

  /* Gallery */
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .gallery-item,
  .gallery-item.h-tall,
  .gallery-item.h-short {
    height: 150px;
    border-radius: 12px;
  }
  .gallery-label {
    font-size: 0.65rem;
    bottom: 0.5rem;
    left: 0.5rem;
    padding: 0.25rem 0.6rem;
  }
  .gallery-item-overlay h4 {
    font-size: 0.9rem;
  }

  /* Compare */
  .compare-header,
  .compare-row {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .compare-header div,
  .compare-row div {
    padding: 0.7rem 0.4rem;
    font-size: 0.65rem;
  }
  .compare-table {
    border-radius: 14px;
  }

  /* Testimonials */
  .testimonials-container {
    padding: 0 0.5rem;
  }
  .testimonial-quote {
    font-size: 0.9rem;
    line-height: 1.65;
  }
  .testimonial-quote::before {
    font-size: 2.5rem;
    left: -5px;
    top: -18px;
  }
  .testimonials-track {
    min-height: 200px;
  }
  .testimonial-btn {
    width: 34px;
    height: 34px;
  }
  .testimonial-controls {
    position: relative;
    transform: none;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  /* Dealers */
  .dealers-panel {
    padding: 1.25rem;
  }
  .dealers-search-form {
    flex-direction: column;
    gap: 0.5rem;
  }
  .dealers-list {
    max-height: 280px;
  }
  .dealer-item {
    padding: 1rem;
  }
  .dealers-map-panel {
    min-height: 250px;
    padding: 2rem 1.25rem;
  }

  /* Service */
  .service-card {
    padding: 1.5rem;
    gap: 1rem;
  }
  .service-icon {
    width: 50px;
    height: 50px;
  }
  .service-card h3 {
    font-size: 1rem;
  }
  .service-card p {
    font-size: 0.78rem;
  }

  /* Blog / Journal */
  .blog-card {
    height: 320px;
    border-radius: 18px;
  }
  .blog-body {
    padding: 1rem;
    border-radius: 0 0 18px 18px;
  }
  .blog-body h3 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  .blog-body p {
    font-size: 0.72rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .blog-footer {
    font-size: 0.6rem;
    padding-top: 0.75rem;
  }

  /* Contact */
  .contact-layout {
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
  .contact-form-panel {
    padding: 1.5rem;
  }
  .contact-form-panel h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }
  .contact-info-card {
    padding: 1.5rem;
  }
  .contact-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .info-item {
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .info-icon {
    width: 36px;
    height: 36px;
  }

  /* Footer */
  .footer {
    padding: 3rem 0 1.5rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
    margin-bottom: 2.5rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-col:nth-child(4) {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer-col:nth-child(4) .contact-info {
    align-items: center;
  }
  .footer-col:nth-child(4) .contact-info li {
    justify-content: center;
  }
  .footer-brand h3 {
    font-size: 1.35rem;
  }
  .footer-brand p {
    font-size: 0.8rem;
  }
  .footer-col h4 {
    font-size: 0.65rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.1em;
  }
  .footer-col a {
    font-size: 0.72rem;
  }
  .footer-col ul {
    gap: 0.5rem;
  }
  .footer-col .contact-info li {
    font-size: 0.72rem;
    gap: 0.4rem;
    word-break: break-word;
  }
  .footer-col .contact-info svg {
    width: 13px;
    height: 13px;
  }
  .newsletter-text h4 {
    font-size: 1rem;
  }
  .newsletter-form {
    max-width: 100%;
  }
  .newsletter-form input {
    font-size: 0.8rem;
    padding: 0.75rem;
  }
  .newsletter-form button {
    font-size: 0.65rem;
    padding: 0 1rem;
  }
  .footer-bottom {
    text-align: center;
    align-items: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  /* Popup / Modal */
  .product-popup-overlay {
    padding: 0.5rem;
    align-items: flex-end;
  }
  .product-popup {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
  }
  .product-popup-image {
    height: 150px;
    border-radius: 20px 20px 0 0;
  }
  .product-popup-body {
    padding: 1rem;
  }
  .product-popup-body h3 {
    font-size: 1rem;
  }
  .product-popup-actions {
    flex-direction: column;
  }

  /* Flyer Popup */
  .flyer-popup-overlay {
    padding: 0.5rem;
  }

  /* Admin buttons - hidden by default, shown on tap via .touched class */
  .btn-edit-product,
  .btn-delete-product {
    opacity: 0;
    visibility: hidden;
    width: 28px;
    height: 28px;
  }
  .touched > .btn-edit-product,
  .touched > .btn-delete-product,
  .touched .btn-edit-product,
  .touched .btn-delete-product {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .delete-collection-btn {
    opacity: 0;
    visibility: hidden;
  }
  .touched > .delete-collection-btn,
  .touched .delete-collection-btn {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* ---- Tablets & Medium Screens (481px to 768px) ---- */
@media (min-width: 481px) and (max-width: 768px) {

  .section {
    padding: 4.5rem 0;
  }
  .section-heading {
    margin-bottom: 3rem;
  }
  .section-heading h2 {
    font-size: 2rem;
  }

  /* Hero */
  .hero-title {
    white-space: normal !important;
    font-size: clamp(1.8rem, 5vw, 3rem) !important;
  }

  /* Products Grid */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .product-features-list {
    display: none;
  }
  .product-info h3 {
    font-size: 0.85rem;
  }
  .product-img-wrapper {
    height: 160px;
  }

  /* Combos */
  .combo-price-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /* Gallery */
  .gallery-item,
  .gallery-item.h-tall,
  .gallery-item.h-short {
    height: 180px;
  }

  /* Testimonials */
  .testimonials-container {
    padding: 0 1.5rem;
  }

  /* Blog */
  .blog-card {
    height: 360px;
  }

  /* Admin buttons on touch - hidden by default, shown on tap */
  .btn-edit-product,
  .btn-delete-product {
    opacity: 0;
    visibility: hidden;
  }
  .touched > .btn-edit-product,
  .touched > .btn-delete-product,
  .touched .btn-edit-product,
  .touched .btn-delete-product {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .delete-collection-btn {
    opacity: 0;
    visibility: hidden;
  }
  .touched > .delete-collection-btn,
  .touched .delete-collection-btn {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* ---- Landscape phones and small tablets (max-width: 768px) ---- */
@media (max-width: 768px) {

  /* Ensure hero text doesn't overflow */
  .hero-title {
    white-space: normal !important;
  }

  /* Contact section map */
  .contact-map-placeholder {
    height: 200px;
    border-radius: 20px;
  }

  /* Compare table horizontal scroll if needed */
  .compare-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Planner layout */
  .planner-card {
    padding: 1.5rem;
  }
  .dims-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  /* Mobile drawer improvements */
  .mobile-drawer {
    padding-top: 5rem;
  }
  .mobile-drawer a {
    font-size: 1rem;
    padding: 0.6rem 0;
  }
}

/* ==========================================================================
   Shopping Cart & Floating Footer Bar
   ========================================================================== */

.floating-cart-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 1999;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  visibility: hidden;
}

.floating-cart-bar.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.cart-bar-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.cart-bar-badge {
  background: var(--accent-gold);
  color: var(--primary-black);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
}

.cart-bar-divider {
  color: rgba(255, 255, 255, 0.15);
}

.cart-bar-total {
  color: var(--accent-gold);
  font-family: var(--font-product);
}

.cart-bar-btn {
  background: var(--accent-gold);
  color: var(--primary-black);
  border: none;
  border-radius: 50px;
  padding: 0.45rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-bar-btn:hover {
  background: var(--accent-gold-hover);
  transform: scale(1.03);
}

/* Cart items listing */
.cart-items-list {
  max-height: 240px;
  overflow-y: auto;
  padding-right: 0.25rem;
  margin-top: 0.5rem;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: 1rem;
}

.cart-item-details {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.cart-item-img {
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: 8px;
  padding: 0;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-info {
  display: flex;
  flex-direction: column;
}

.cart-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-product);
}

.cart-item-price {
  font-size: 0.8rem;
  color: var(--accent-gold);
}

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

.cart-qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.cart-qty-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.cart-item-qty {
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
  color: #fff;
  font-weight: 600;
}

.cart-remove-btn {
  background: transparent;
  border: none;
  color: #ff4d4d;
  cursor: pointer;
  padding: 0.25rem;
  font-size: 1rem;
  margin-left: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.cart-remove-btn:hover {
  color: #ff3333;
  transform: scale(1.1);
}

.cart-remove-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.btn-cart-submit:hover {
  background: #20ba59 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

@media (max-width: 480px) {
  .floating-cart-bar {
    width: calc(100% - 32px);
    border-radius: 20px;
    padding: 0.6rem 1rem;
    gap: 0.75rem;
    justify-content: space-between;
  }
  .cart-bar-info {
    font-size: 0.78rem;
    gap: 0.4rem;
  }
}

/* ---- Print-friendly hide overlay elements ---- */
@media print {
  .header,
  .mobile-drawer,
  .drawer-overlay,
  .hero-scroll,
  .product-popup-overlay,
  .btn-edit-product,
  .btn-delete-product,
  #floating-offers-container {
    display: none !important;
  }
}

/* ==========================================================================
   Floating Glass-Themed Active Offer Container & Hover Animations
   ========================================================================== */

#floating-offers-container {
  position: absolute;
  top: 115%;
  right: 0;
  width: 280px;
  z-index: 999;
  display: none;
}

@media (max-width: 480px) {
  #floating-offers-container {
    width: 240px;
    right: -5px;
    top: 120%;
  }
}

.floating-offer-glass {
  background: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 0.85rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  animation: fadeInUp 0.4s ease;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-offer-glass:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

