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

:root {
  /* ========================================
     Premium Brand Colors
  ======================================== */
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-dark: #1e3a8a;
  --primary-light: #eff6ff;
  --primary-soft: #dbeafe;

  --secondary: #6366f1;
  --secondary-dark: #4f46e5;
  --secondary-light: #eef2ff;

  --accent: #06b6d4;
  --accent-light: #ecfeff;

  --accent-green: #10b981;
  --accent-green-light: #ecfdf5;

  --accent-warm: #f97316;
  --accent-warm-light: #fff7ed;

  --accent-pink: #ec4899;
  --accent-purple: #8b5cf6;

  --danger: #ef4444;
  --danger-light: #fef2f2;

  --warning: #f59e0b;
  --warning-light: #fffbeb;

  --success: #22c55e;
  --success-light: #f0fdf4;


  /* ========================================
     Printer Brand Colors
  ======================================== */
  --hp-blue: #0096d6;
  --canon-red: #d90429;
  --brother-blue: #003b73;
  --epson-blue: #1428a0;


  /* ========================================
     Backgrounds
  ======================================== */
  --bg-main: #f6f8fc;
  --bg-card: #ffffff;
  --bg-soft: #f1f5f9;

  --bg-dark: #0f172a;
  --bg-darker: #020617;

  --bg-navy: #0b1220;
  --bg-gradient: linear-gradient(
    135deg,
    #0f172a 0%,
    #172554 50%,
    #1e3a8a 100%
  );


  /* ========================================
     Text Colors
  ======================================== */
  --text-main: #0f172a;
  --text-dark: #111827;

  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --text-white: #ffffff;
  --text-white-muted: rgba(255, 255, 255, 0.72);


  /* ========================================
     Borders
  ======================================== */
  --border-light: #e5e7eb;
  --border-soft: #edf0f5;
  --border-hover: #cbd5e1;
  --border-focus: #93c5fd;


  /* ========================================
     Shadows
  ======================================== */
  --shadow-xs:
    0 1px 2px rgba(15, 23, 42, 0.04);

  --shadow-sm:
    0 2px 6px rgba(15, 23, 42, 0.06);

  --shadow-md:
    0 6px 16px rgba(15, 23, 42, 0.08);

  --shadow-lg:
    0 12px 30px rgba(15, 23, 42, 0.10);

  --shadow-xl:
    0 20px 50px rgba(15, 23, 42, 0.14);

  --shadow-2xl:
    0 30px 70px rgba(15, 23, 42, 0.18);

  --shadow-primary:
    0 10px 30px rgba(37, 99, 235, 0.22);

  --shadow-glow:
    0 0 30px rgba(37, 99, 235, 0.20);


  /* ========================================
     Gradients
  ======================================== */
  --gradient-primary:
    linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);

  --gradient-blue:
    linear-gradient(135deg, #0284c7 0%, #2563eb 100%);

  --gradient-premium:
    linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);

  --gradient-cyan:
    linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);

  --gradient-dark:
    linear-gradient(135deg, #0f172a 0%, #172554 100%);

  --gradient-soft:
    linear-gradient(135deg, #eff6ff 0%, #eef2ff 100%);


  /* ========================================
     Border Radius
  ======================================== */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-2xl: 28px;
  --radius-full: 9999px;


  /* ========================================
     Transitions
  ======================================== */
  --transition-fast:
    all 0.2s ease;

  --transition-normal:
    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --transition-smooth:
    all 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  --transition-bounce:
    all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);


  /* ========================================
     Glass Effect
  ======================================== */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.35);
  --glass-blur: blur(18px);


  /* ========================================
     Z-Index System
  ======================================== */
  --z-dropdown: 1000;
  --z-sticky: 1100;
  --z-fixed: 1200;
  --z-modal-backdrop: 1300;
  --z-modal: 1400;
  --z-popover: 1500;
  --z-tooltip: 1600;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--bg-dark);
  line-height: 1.2;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  /* color: white; */
}

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

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

/* Top Announcement Bar */
.top-bar {
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
  color: #f1f5f9;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-badge {
  background: rgba(2, 132, 199, 0.2);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.75rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.currency-selector {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
  color: #38bdf8;
}

/* Main Header & Navbar */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 2rem;
}

/* Brand Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.65rem;
  color: var(--bg-dark);
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

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

/* Search Bar */
.search-container {
  flex: 1;
  max-width: 540px;
  position: relative;
}

.search-form {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  padding: 0.25rem 0.5rem 0.25rem 1.25rem;
  transition: var(--transition-normal);
}

.search-form:focus-within {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}

.search-input {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 0.5rem 0;
}

.search-btn {
  background: var(--primary);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.search-btn:hover {
  background: var(--primary-hover);
  transform: scale(1.05);
}

/* Nav Actions (Wishlist, Cart, User) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  color: var(--text-main);
  background: #f8fafc;
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.icon-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: rgba(2, 132, 199, 0.3);
  transform: translateY(-2px);
}

.icon-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--danger);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

.cart-btn-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1e293b 100%);
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.cart-btn-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

.cart-count {
  background: var(--primary);
  color: #ffffff;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
}

/* Main & Secondary Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.secondary-nav {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 0.75rem 0;
}

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

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

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

/* =========================================================
   PREMIUM HERO SLIDER
========================================================= */

.hero-section {
  position: relative;
  padding: 2.5rem 0 3.5rem;
  background:
    radial-gradient(circle at 8% 15%, rgba(37, 99, 235, 0.14), transparent 28%),
    radial-gradient(circle at 92% 80%, rgba(99, 102, 241, 0.13), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #f1f5ff 100%);
  color: var(--text-main);
  overflow: hidden;
}

/* Decorative Background Glows */
.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(5px);
}

.hero-section::before {
  width: 380px;
  height: 380px;
  top: -220px;
  left: -180px;
  background: rgba(37, 99, 235, 0.08);
}

.hero-section::after {
  width: 420px;
  height: 420px;
  right: -220px;
  bottom: -250px;
  background: rgba(99, 102, 241, 0.09);
}


/* =========================================================
   SLIDER CONTAINER
========================================================= */

.hero-slider-container {
  position: relative;
  width: 100%;
  min-height: 560px;

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(59, 130, 246, 0.15),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f8fbff 48%,
      #eef4ff 100%
    );

  border: 1px solid rgba(148, 163, 184, 0.20);
  border-radius: var(--radius-2xl);

  box-shadow:
    0 25px 60px rgba(15, 23, 42, 0.10),
    0 8px 20px rgba(37, 99, 235, 0.05);

  overflow: hidden;
}


/* =========================================================
   SLIDE
========================================================= */

.hero-slide {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  opacity: 0;
  visibility: hidden;

  transform: translateX(30px);

  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;

  align-items: center;

  padding: 4rem 4.5rem;
  gap: 2.5rem;

  box-sizing: border-box;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
  position: relative;
  z-index: 5;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;

  padding: 0.5rem 1rem;

  background: rgba(239, 246, 255, 0.95);

  border: 1px solid rgba(37, 99, 235, 0.18);

  color: #2563eb;

  border-radius: var(--radius-full);

  font-size: 0.78rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 1px;

  margin-bottom: 1.15rem;

  box-shadow:
    0 6px 18px rgba(37, 99, 235, 0.08);
}

.hero-title {
  margin: 0 0 1rem;
  max-width: 650px;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.05;
  font-weight: 850;
  letter-spacing: -2px;
  color: #0f172a !important;
}

.hero-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  max-width: 570px;

  margin: 0 0 1.6rem;

  font-size: 1rem;
  line-height: 1.75;

  color: #64748b;
}


/* =========================================================
   PRICE
========================================================= */

.hero-price-wrap {
  display: flex;
  align-items: center;

  gap: 0.9rem;

  margin-bottom: 1.7rem;
}

.hero-price {
  font-size: 2rem;

  font-weight: 850;

  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-old-price {
  font-size: 1rem;

  color: #94a3b8;

  text-decoration: line-through;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-section .btn {
  min-height: 48px;

  padding: 0.75rem 1.35rem;

  border-radius: var(--radius-md);

  font-size: 0.9rem;
  font-weight: 750;

  transition: var(--transition-bounce);
}

.hero-section .btn-primary {
  background: var(--gradient-primary);

  color: #ffffff;

  border: none;

  box-shadow:
    0 10px 25px rgba(37, 99, 235, 0.22);
}

.hero-section .btn-primary:hover {
  transform: translateY(-3px);

  box-shadow:
    0 14px 30px rgba(37, 99, 235, 0.30);
}

.hero-section .btn-secondary {
  background: rgba(255, 255, 255, 0.9);

  color: #334155;

  border: 1px solid #dbe2ea;

  box-shadow: var(--shadow-sm);
}

.hero-section .btn-secondary:hover {
  transform: translateY(-3px);

  background: #ffffff;

  border-color: #bfdbfe;

  color: #2563eb;

  box-shadow: var(--shadow-md);
}


/* =========================================================
   PRODUCT SHOWCASE
========================================================= */

.hero-image-wrapper {
  position: relative;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;

  min-height: 400px;
}


/* Soft Glow Behind Product */
.hero-image-wrapper::before {
  content: "";

  position: absolute;

  width: 330px;
  height: 330px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(59, 130, 246, 0.18) 0%,
      rgba(99, 102, 241, 0.08) 42%,
      transparent 72%
    );

  filter: blur(8px);
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.studio-product-card {
  position: relative;

  width: min(430px, 100%);

  min-height: 340px;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 2.5rem;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(245, 248, 255, 0.96)
    );

  border-radius: 28px;

  border: 1px solid rgba(148, 163, 184, 0.22);

  box-shadow:
    0 30px 60px rgba(15, 23, 42, 0.12),
    0 10px 30px rgba(37, 99, 235, 0.08);

  z-index: 2;

  transition: var(--transition-smooth);
}

.studio-product-card:hover {
  transform: translateY(-8px) rotate(0.3deg);

  box-shadow:
    0 38px 75px rgba(15, 23, 42, 0.15),
    0 15px 35px rgba(37, 99, 235, 0.12);
}

.studio-product-card img {
  position: relative;

  z-index: 3;

  width: 88%;

  max-width: 330px;

  height: auto;

  object-fit: contain;

  filter:
    drop-shadow(0 22px 25px rgba(15, 23, 42, 0.15));
}


/* =========================================================
   FLOATING BADGES
========================================================= */

.hero-floating-badge {
  position: absolute;

  z-index: 5;

  display: flex;

  align-items: center;
  gap: 0.4rem;

  padding: 0.65rem 0.9rem;

  background: rgba(255, 255, 255, 0.88);

  border: 1px solid rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 12px;

  color: #1e293b;

  font-size: 0.72rem;

  font-weight: 800;

  white-space: nowrap;

  box-shadow:
    0 10px 25px rgba(15, 23, 42, 0.10);

  transition: var(--transition-normal);
}

.hero-floating-badge:hover {
  transform: translateY(-3px);
}

.badge-top-left {
  top: 22px;
  left: -22px;
}

.badge-top-right {
  top: 55px;
  right: -25px;
}

.badge-bottom-left {
  bottom: 22px;
  left: -30px;
}


/* =========================================================
   SLIDER ARROWS
========================================================= */

.slider-arrow {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  border: 1px solid rgba(148, 163, 184, 0.2);

  background: rgba(28, 71, 173, 0.92);

  backdrop-filter: blur(12px);

  color: #334155;

  font-size: 1rem;

  cursor: pointer;

  z-index: 10;

  box-shadow:
    0 8px 20px rgba(15, 23, 42, 0.10);

  transition: var(--transition-bounce);
}

.slider-arrow:hover {
  background: var(--primary);

  color: #ffffff;

  border-color: var(--primary);

  transform: translateY(-50%) scale(1.08);

  box-shadow:
    0 10px 25px rgba(37, 99, 235, 0.25);
}

.slider-prev {
  left: 18px;
}

.slider-next {
  right: 18px;
}


/* =========================================================
   DOTS
========================================================= */

.slider-dots {
  position: absolute;

  bottom: 22px;
  left: 50%;

  transform: translateX(-50%);

  display: flex;
  align-items: center;

  gap: 7px;

  z-index: 10;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;

  background: #cbd5e1;

  border-radius: 50%;

  cursor: pointer;

  transition: var(--transition-normal);
}

.slider-dots .dot.active {
  width: 28px;

  border-radius: 50px;

  background: var(--gradient-primary);

  box-shadow:
    0 4px 12px rgba(37, 99, 235, 0.25);
}


/* =========================================================
   SLIDE VARIANTS
========================================================= */

.hero-slide:nth-child(2) .hero-tag {
  color: #4f46e5;
  background: #eef2ff;
  border-color: rgba(99, 102, 241, 0.2);
}

.hero-slide:nth-child(3) .hero-tag {
  color: #0891b2;
  background: #ecfeff;
  border-color: rgba(6, 182, 212, 0.2);
}


@media (max-width: 1100px) {
  .hero-slider-container {
    min-height: 510px;
  }

  .hero-slide {
    padding: 3rem;
    gap: 1.5rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 4vw, 3.3rem);
  }

  .studio-product-card {
    width: 360px;
    min-height: 300px;
  }

  .badge-top-left {
    left: -10px;
  }

  .badge-top-right {
    right: -10px;
  }

  .badge-bottom-left {
    left: -12px;
  }
}


@media (max-width: 820px) {
  .hero-section {
    padding: 1.5rem 0 2.5rem;
  }

  .hero-slider-container {
    min-height: 760px;

    border-radius: 22px;
  }

  .hero-slide {
    grid-template-columns: 1fr;

    align-content: center;

    padding: 3rem 2rem 4.5rem;

    gap: 1.5rem;

    overflow-y: auto;
  }

  .hero-content {
    align-items: center;

    text-align: center;
  }

  .hero-title {
    max-width: 650px;

    font-size: clamp(2rem, 7vw, 3rem);

    letter-spacing: -1.2px;
  }

  .hero-description {
    max-width: 620px;

    font-size: 0.95rem;
  }

  .hero-price-wrap {
    justify-content: center;
  }

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

  .hero-image-wrapper {
    min-height: 320px;
  }

  .studio-product-card {
    width: min(380px, 90%);
    min-height: 280px;

    padding: 2rem;
  }

  .studio-product-card img {
    max-width: 280px;
  }

  .badge-top-left {
    left: -5px;
    top: 10px;
  }

  .badge-top-right {
    right: -5px;
    top: 30px;
  }

  .badge-bottom-left {
    left: 0;
    bottom: 10px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .slider-prev {
    left: 10px;
  }

  .slider-next {
    right: 10px;
  }
}


@media (max-width: 520px) {
  .hero-slider-container {
    min-height: 720px;
  }

  .hero-slide {
    padding: 2.2rem 1.25rem 4rem;
  }

  .hero-tag {
    font-size: 0.68rem;
    padding: 0.42rem 0.8rem;
  }

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

  .hero-description {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .hero-price {
    font-size: 1.65rem;
  }

  .hero-old-price {
    font-size: 0.9rem;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-section .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-image-wrapper {
    min-height: 260px;
  }

  .studio-product-card {
    min-height: 230px;

    padding: 1.5rem;

    border-radius: 20px;
  }

  .studio-product-card img {
    max-width: 225px;
  }

  .hero-floating-badge {
    font-size: 0.62rem;
    padding: 0.5rem 0.65rem;
  }

  .badge-top-left {
    left: -2px;
  }

  .badge-top-right {
    right: -2px;
  }

  .badge-bottom-left {
    left: 5px;
  }

  .slider-arrow {
    display: none;
  }
}
.studio-product-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 340px;
  background: #ffffff;
  border-radius: 24px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 30px rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.4s ease;
}

.studio-product-card img {
  max-height: 280px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.08));
}

/* Floating Feature Badges around studio card */
.hero-floating-badge {
  position: absolute;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  z-index: 5;
  animation: floatBadge 4s ease-in-out infinite;
}

.badge-top-left { top: -12px; left: -12px; }
.badge-top-right { top: -12px; right: -12px; animation-delay: 1.5s; }
.badge-bottom-left { bottom: -12px; left: -12px; animation-delay: 2.5s; }

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

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background:var(--primary);
  backdrop-filter: blur(12px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-fast);
}

.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 1rem; }
.slider-next { right: 1rem; }

.slider-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: var(--transition-fast);
  cursor: pointer;
}

.dot.active {
  width: 28px;
  border-radius: 6px;
  background: var(--primary);
}

/* Brands Strip Section */
.brands-strip {
  background: #ffffff;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.brands-title {
  text-align: center;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

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

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.5rem;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  cursor: pointer;
}

.brand-card:hover {
  background: #ffffff;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.brand-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand-card[data-brand="HP"] .brand-card-title { color: var(--hp-blue); }
.brand-card[data-brand="Canon"] .brand-card-title { color: var(--canon-red); }
.brand-card[data-brand="Brother"] .brand-card-title { color: var(--brother-blue); }
.brand-card[data-brand="Epson"] .brand-card-title { color: var(--epson-blue); }

.brand-count {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(100, 116, 139, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

/* Featured Products Carousel Slider */
.featured-section {
  padding: 4rem 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

.section-title-wrap h2 {
  font-size: 2.2rem;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
}

.carousel-controls {
  display: flex;
  gap: 0.75rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.carousel-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: scale(1.05);
}

.featured-carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem 1.5rem 0.25rem;
  scrollbar-width: none;
}

.featured-carousel-track::-webkit-scrollbar {
  display: none;
}

/* Product Card Styling */
.product-card {
  flex: 0 0 calc(25% - 1.125rem);
  min-width: 280px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  border-color: rgba(2, 132, 199, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 5;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-bestseller { background: #fef3c7; color: #d97706; border: 1px solid #fde68a; }
.badge-ecotank { background: #d1fae5; color: #059669; border: 1px solid #a7f3d0; }
.badge-pro { background: #e0e7ff; color: #4338ca; border: 1px solid #c7d2fe; }
.badge-hotdeal { background: #ffe4e6; color: #e11d48; border: 1px solid #fecdd3; }

.wishlist-card-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.wishlist-card-btn:hover, .wishlist-card-btn.active {
  color: var(--danger);
  background: #ffffff;
  transform: scale(1.1);
}

.product-img-box {
  height: 210px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.product-img-box svg, .product-img-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.quick-view-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.product-card:hover .quick-view-overlay {
  opacity: 1;
}

.quick-view-btn {
  background: #ffffff;
  color: var(--bg-dark);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
}

.quick-view-btn:hover {
  background: var(--primary);
  color: #ffffff;
}

.product-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-brand-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.product-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--accent-warm);
  margin-bottom: 0.8rem;
}

.review-count {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.product-specs-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.spec-pill {
  background: #f1f5f9;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
}

.product-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border-light);
}

.product-price-box {
  display: flex;
  flex-direction: column;
}

.current-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--bg-dark);
}

.original-price {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.add-to-cart-btn {
  background: var(--primary);
  color: #ffffff;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.add-to-cart-btn:hover {
  background: #0369a1;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.35);
}

/* Full Product Catalog & Filtering Section */
.catalog-section {
  padding: 4rem 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.catalog-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.catalog-header h2 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

/* Filter Controls Bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: #f8fafc;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  margin-bottom: 2.5rem;
}

.brand-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tab-btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: #ffffff;
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

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

.tab-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.secondary-filters {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.filter-select {
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: #ffffff;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
}

.filter-select:focus {
  border-color: var(--primary);
}

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

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}

.no-results-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Special Deal Banner */
.promo-deal-section {
  padding: 4rem 0;
}

.deal-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem 4rem;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.deal-content h3 {
  color: #ffffff;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.deal-desc {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.countdown-timer {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.time-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
  text-align: center;
  min-width: 76px;
}

.time-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: #38bdf8;
  display: block;
}

.time-lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 600;
}

.deal-img-wrapper img, .deal-img-wrapper svg {
  max-height: 340px;
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
}

/* Trust Features Section */
.features-section {
  padding: 3rem 0;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-light);
}

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

.feature-box {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

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

/* Customer Reviews / Testimonials */
.testimonials-section {
  padding: 4rem 0;
}

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

.review-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: var(--accent-warm);
  margin-bottom: 1rem;
}

.review-text {
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

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

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.reviewer-info h5 {
  font-size: 0.95rem;
}

.reviewer-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Footer Section */
.footer {
  background: var(--bg-dark);
  color: #cbd5e1;
  padding: 4rem 0 2rem 0;
}

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

.footer-about p {
  color: #94a3b8;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #64748b;
}

.payment-badge {
  display: flex;
  gap: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
}


/* Cart Overlay & Drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: #ffffff;
  z-index: 201;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer-overlay.active .cart-drawer {
  transform: translateX(0);
}

.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 {
  font-size: 1.3rem;
}

.close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.close-btn:hover {
  background: var(--danger);
  color: #ffffff;
}

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

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

.empty-cart-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 0.5rem;
  object-fit: contain;
}

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

.cart-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

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

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

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-sm);
  background: #f1f5f9;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.remove-cart-item {
  color: var(--danger);
  font-size: 0.8rem;
  margin-left: auto;
  font-weight: 600;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-light);
  background: #f8fafc;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.free-shipping-progress {
  background: #e2e8f0;
  height: 8px;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.free-shipping-bar {
  background: var(--accent);
  height: 100%;
  width: 0%;
  transition: width 0.4s ease;
}

.free-shipping-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-align: center;
}

/* Quick View Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

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

.modal-box {
  background: #ffffff;
  width: 100%;
  max-width: 850px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

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

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

.modal-img-wrapper {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-details h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.specs-list {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed var(--border-light);
}

.spec-key {
  color: var(--text-muted);
}

.spec-val {
  font-weight: 700;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  animation: slideInRight 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  border-left: 4px solid var(--accent);
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-slider-container {
    min-height: 580px;
  }
  .catalog-grid, .brands-grid, .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
  .hero-slide {
    grid-template-columns: 1fr;
    padding: 2.5rem 2rem 3.5rem 2rem;
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
    align-items: center;
  }
  .hero-price-wrap {
    justify-content: center;
  }
  .studio-product-card {
    max-width: 340px;
    height: 240px;
    margin: 0 auto;
  }
  .studio-product-card img {
    max-height: 190px;
  }
  .hero-floating-badge {
    display: none;
  }
  .deal-banner {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .modal-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .catalog-grid, .brands-grid, .features-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    flex: 0 0 100%;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .navbar {
    height: auto;
    padding: 1rem 0;
    flex-wrap: wrap;
  }
  .search-container {
    order: 3;
    max-width: 100%;
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SOBER & CLEAN PAGE STYLES (ABOUT US & CONTACT US)
   ========================================================================== */

.page-hero {
  background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border-light);
  padding: 3.5rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--bg-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Legal & Policy Reseller Banner */
.disclaimer-banner {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-left: 4px solid var(--primary);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
  color: #0369a1;
  font-size: 0.9rem;
  line-height: 1.6;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.05);
}

.disclaimer-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-hover);
}

/* About Us Layout Cards */
.about-section {
  padding: 3.5rem 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.about-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--bg-dark);
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

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

.mv-box {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.mv-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.mv-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.mv-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.mv-box h3 {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
  color: var(--bg-dark);
}

.mv-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.why-box {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: var(--transition-normal);
}

.why-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.1rem auto;
}

.why-box h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--bg-dark);
}

.why-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Contact Us Layout & Forms */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  padding: 3.5rem 0;
}

.contact-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-text h5 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  color: var(--bg-dark);
}

.info-text p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--bg-dark);
}

.form-control {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: #f8fafc;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-main);
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.faq-section {
  padding-bottom: 4rem;
}

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

.faq-card {
  background: #ffffff;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.faq-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--primary-hover);
}

.faq-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (DESKTOP, LAPTOP, TABLET, MOBILE)
   ========================================================================== */

/* Mobile Menu Toggle Button (Hidden on Desktop) */
.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary) 0%, #0369a1 100%);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
  transition: var(--transition-fast);
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
}

/* Laptop Breakpoint (max-width: 1024px) */
@media (max-width: 1024px) {
  .navbar {
    height: auto;
    padding: 0.75rem 0;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .search-container {
    max-width: 280px;
  }

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

  .hero-slide {
    grid-template-columns: 1fr;
    padding: 2.5rem 2rem;
    text-align: center;
  }

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

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet & Mobile Breakpoint (max-width: 900px) - HAMBURGER SLIDE MENU */
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex;
  }

  /* Top Announcement Bar Mobile */
  .top-bar {
    padding: 0.35rem 0;
    font-size: 0.78rem;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }

  .top-bar-left, .top-bar-right {
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
  }

  .top-bar-badge {
    font-size: 0.7rem;
    padding: 0.1rem 0.5rem;
  }

  /* Header Container */
  .header {
    padding: 0.5rem 0;
  }

  .navbar {
    height: auto;
    position: relative;
    padding: 0.25rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  /* Logo Mobile Scaling */
  .logo {
    font-size: 1.3rem;
    gap: 0.5rem;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    border-radius: 8px;
  }

  /* Hide Search Bar on Mobile */
  .search-container {
    display: none !important;
  }

  /* Slide-Down Navigation Menu Drawer */
  .main-nav, .secondary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.18);
    border-bottom: 3px solid var(--primary);
    padding: 1rem 1.25rem;
    display: none;
    flex-direction: column;
    z-index: 200;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .main-nav.mobile-open, .secondary-nav.mobile-open {
    display: flex !important;
    animation: slideDownNav 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes slideDownNav {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: var(--radius-md);
    color: var(--bg-dark);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
  }

  .nav-link:hover, .nav-link.active {
    background: linear-gradient(135deg, var(--primary) 0%, #0369a1 100%);
    color: #ffffff !important;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
  }

  /* Footer Mobile Rules */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-about p {
    max-width: 100%;
  }

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

  .payment-badge {
    justify-content: center;
    flex-wrap: wrap;
  }

  .grid-2, .mission-vision-grid, .why-us-grid, .contact-grid, .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 0.85rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .nav-link {
    font-size: 0.82rem;
    padding: 0.5rem 0.75rem;
  }

  .top-bar {
    font-size: 0.75rem;
  }
}


