@font-face {
  font-family: "Mon1";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 500;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Mon1", Helvetica, sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #f5f7fb;
  color: #0a1f44;
  overflow-x: hidden;
  animation: pageFade 0.8s ease-in;
}


.auth-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.auth-modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 12px;
  width: 400px;
  max-width: 90%;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  cursor: pointer;
  color: #666;
}

.auth-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  /* 👈 THIS LINE */
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.auth-form.hidden {
  display: none;
}

.auth-form input {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.auth-form button {
  padding: 12px;
  background: #081b6b;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
}

.auth-form a {
  text-align: center;
  color: #081b6b;
  font-size: 14px;
}

input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button[type="submit"] {
  padding: 10px;
  border: none;
  background: #081b6b;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}


.hidden {
  display: none;
}


/* ================================
   WISHLIST HEART
================================ */

/* Parent image container */
.bluelly-product-image {
  position: relative;
  overflow: hidden;
}

/* Wishlist Heart */
.wishlist-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  color: #999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  user-select: none;
  z-index: 10;
}

/* Hover */
.wishlist-icon:hover {
  transform: scale(1.1);
}

/* Active (wishlisted) */
.wishlist-icon.active {
  background: #fff;
  color: #e63946;
}

/* ── Wishlist nav icon ──────────────────── */
.wishlist-nav-icon {
  position: relative;
  cursor: pointer;
  font-size: 20px;
  color: #0a1f66;
  transition: color 0.3s;
}

.wishlist-nav-icon:hover {
  color: #e74c3c;
}

/* ── Count badges ───────────────────────── */
.cart-count,
.wishlist-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: red;
  color: white;
  font-size: 11px;
  padding: 1px 5px;
  border-radius: 50%;
  font-weight: bold;
  line-height: 1.4;
}


@keyframes pageFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  height: 40px;
  width: 150px;
  background-image: url("../images/Logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.menu {
  display: flex;
  gap: 15px;
}

.menu a {
  margin: 0 18px;
  text-decoration: none;
  color: #0a1f66;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.menu a:hover {
  color: #3498db;
}

.menu .active {
  font-weight: 600;
  border-bottom: 2px solid #0a1f66;
  padding-bottom: 5px;
}

.auth {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.cart-icon,
.user-icon {
  position: relative;
  cursor: pointer;
  font-size: 20px;
  color: #0a1f66;
  transition: color 0.3s;
}

.cart-icon:hover,
.user-icon:hover {
  color: #3498db;
}


/* ── User area layout ───────────────────── */
.user-area {
  display: flex;
  align-items: center;
  position: relative;
}

/* ── Hamburger (mobile) ─────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #0a1f66;
  border-radius: 3px;
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  max-width: 90%;
  height: 100%;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 3000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}


/* Modal Backdrop */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

/* Authentication Modal */
.auth-modal {
  display: none;
  position: fixed;
  z-index: 4000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.auth-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  padding: 2.5rem;
  border-radius: 10px;
  width: 90%;
  max-width: 450px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: #7f8c8d;
  transition: color 0.3s;
}

.close:hover {
  color: #2c3e50;
}

.auth-tabs {
  display: flex;
  margin-bottom: 2rem;
  gap: 10px;
}

.tab-btn {
  flex: 1;
  padding: 12px;
  border: none;
  background: #ecf0f1;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
}

.tab-btn:hover {
  background: #d5dbdb;
}

.tab-btn.active {
  background: #0a1f66;
  color: white;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-form.hidden {
  display: none;
}

.auth-form h3 {
  margin-bottom: 1rem;
  color: #2c3e50;
  text-align: center;
}

.auth-form input {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 15px;
  transition: border-color 0.3s;
}

.auth-form input:focus {
  outline: none;
  border-color: #0a1f66;
}

.auth-form button {
  padding: 14px;
  background: #0a1f66;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.auth-form button:hover {
  background: #0a1f66;
}

.hidden {
  display: none;
}

.cart-header {
  padding: 1.5rem;
  background: #2c3e50;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  margin: 0;
}

.close-cart {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.close-cart:hover {
  color: #0a1f66;
}


    .cart-items {
      flex: 1;
      overflow-y: auto;
      padding: 20px;
    }

    .cart-item {
      display: flex;
      gap: 15px;
      margin-bottom: 15px;
      padding-bottom: 15px;
      border-bottom: 1px solid #eee;
    }

    .cart-item img {
      width: 50px;
      height: 50px;
      object-fit: contain;
      border-radius: 8px;
    }

    .cart-item div {
      flex: 1;
    }

    .cart-item button {
      padding: 5px 10px;
      margin: 0 3px;
      border: 1px solid #ccc;
      background: #f5f5f5;
      cursor: pointer;
      border-radius: 4px;
    }

    .cart-footer {
      padding: 20px;
      border-top: 1px solid #eee;
    }

    .cart-total {
      margin-bottom: 15px;
      font-size: 18px;
    }

    .checkout-btn {
      width: 100%;
      padding: 12px;
      background: #081b6b;
      color: #fff;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 16px;
      font-weight: 600;
    }


.quantity-btn {
  background: #0a1f66;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.quantity-btn:hover {
  background: #2980b9;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 2px solid #ecf0f1;
  background: #f8f9fa;
}

.cart-total {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #2c3e50;
}

.checkout-btn {
  width: 100%;
  padding: 15px;
  background:#0a1f66;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.checkout-btn:hover {
  background: #0a1f66;
}

.profile-menu {
  position: relative;
}

.profile-name {
  cursor: pointer;
  color: #081b6b;
  font-weight: 600;
}

.profile-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  margin-top: 5px;
  z-index: 100;
}

.profile-dropdown.show {
  display: block;
}

.profile-dropdown a,
.profile-dropdown button {
  display: block;
  padding: 10px 15px;
  color: #081b6b;
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.profile-dropdown a:hover,
.profile-dropdown button:hover {
  background: #f0f0f0;
}

/* WHY CHOOSE US */
.bluelly-why-exact {
  background: #071f6b;
  padding: 80px 20px 100px;
  text-align: center;
}

.bluelly-why-exact h2 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 70px;
  font-weight: 600;
}


/* Icon Circle */
.icon-circle {
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.bottom-left {
  grid-column: 1 / 2;
  margin-left: 350px;
}

.bottom-right {
  grid-column: 3 / 4;
  margin-right: 350px;
}


.icon-circle img {
  width: 90px;
  height: auto;
  animation: floatIcon 4s ease-in-out infinite;
}

/* Text */
.why-item-exact p {
  margin-top: 18px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

/* Grid Layout */
.why-grid-exact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 90px;
  column-gap: 120px;
  justify-items: center;
  align-items: center;
}


/* CTA */
.bluelly-cta-exact {
  background: url("../images/Rectangle\ 6.png");
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
}

.bluelly-cta-exact h2 {
  color: #071f6b;
  font-size: 36px;
  margin-bottom: 30px;
}

.bluelly-cta-exact button {
  background: #071f6b;
  color: #fff;
  padding: 16px 40px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
}

.bluelly-cta-exact h2 {
  font-size: 2.4rem;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 1s ease forwards;
}


.bluelly-testimonial-wrap {
  background: #071f6b;
  padding: 80px 40px 120px;
  text-align: center;
}

.testimonial-title {
  color: #fff;
  font-size: 36px;
  margin-bottom: 60px;
}

.testimonial-stage {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.testimonial-gradient {
  height: 360px;
  margin-left: 20%;
  width: 60%;
  background: linear-gradient(135deg, #c6c1ff, #f7a1c4);
  border-radius: 6px;
}

.testimonial-cards {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.testimonial-card {
  background: #ffffff;
  width: 340px;
  padding: 24px;
  border-radius: 10px;
  text-align: left;
}



.stars {
  font-size: 1.2rem;
  color: #f5b400;
  margin-bottom: 15px;
  animation: starGlow 5s ease-in-out infinite;
}


.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-info img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info span {
  font-size: 12px;
  color: #777;
}


@keyframes starGlow {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}


.testimonial-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}


@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* =========================
   SEARCH
========================= */
.search-bar {
  background: #0a1f7a;
  padding: 16px;
  display: flex;
  justify-content: center;
}

.search-bar input {
  width: 60%;
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
}

/* =========================
   HERO
========================= */
.hero {
  height: 500px;
  padding: 80px;
  background: url("../images/bg1.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text h1 {
  font-size: 44px;
  margin-bottom: 18px;
  animation: fadeUp 1s ease forwards;
}

.hero-text p {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeUp 1.2s ease forwards;
}

.hero-buttons {
  animation: fadeUp 1.4s ease forwards;
}

.hero-buttons button {
  padding: 14px 26px;
  margin-right: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: #0a1f7a;
  color: #fff;
  transition: all 0.3s ease;
}

.hero-buttons button:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   CATEGORIES
========================= */
.categories {
  background: #0a1f7a;
  padding: 70px 40px;
  text-align: center;
}

.categories h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 90px;
}

.category-list {
  display: flex;
  gap: 52px;
  justify-content: center;
  flex-wrap: wrap;
}

.category {
  color: #fff;
  width: 160px;
  transition: transform 0.3s ease;
}

.category img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  animation: floatIcon 4s ease-in-out infinite;
}

.category:hover {
  transform: translateY(-10px);
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* =========================
   PRODUCTS
========================= */
.bluelly-products-section {
  background: #071f6b;
  padding: 70px 60px;
}

.bluelly-section-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.bluelly-section-header h2 {
  color: #fff;
  font-size: 32px;
}

.bluelly-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.bluelly-product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.bluelly-product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.bluelly-product-image img {
  width: 100%;
  transition: transform 0.4s ease;
}

.bluelly-product-card:hover img {
  transform: scale(1.08);
}

.bluelly-product-content {
  padding: 18px;
}

.bluelly-product-title {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.bluelly-product-content p {
  font-size: 13px;
  margin: 12px 0;
}

.bluelly-product-actions {
  display: flex;
  gap: 10px;
}

.cart-btn {
  width: 42px;
  height: 42px;
  border: 1px solid #071f6b;
  background: #fff;
  cursor: pointer;
}

.buy-btn {
  flex: 1;
  background: #071f6b;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* =========================
   CTA
========================= */
.bluelly-cta {
  background: url("../images/Rectangle 6.png") center/cover no-repeat;
  padding: 80px 20px;
  text-align: center;
}

.bluelly-cta h2 {
  font-size: 36px;
  color: #071f6b;
  margin-bottom: 30px;
}

.bluelly-cta button {
  background: #071f6b;
  color: #fff;
  padding: 16px 40px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bluelly-cta button:hover {
  transform: translateY(-4px) scale(1.05);
}

/* =========================
   TESTIMONIALS
========================= */
.bluelly-testimonial {
  background: #071f6b;
  padding: 80px 40px;
  text-align: center;
}

.testimonial-title {
  color: #fff;
  font-size: 36px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: #fff;
  width: 340px;
  padding: 24px;
  border-radius: 10px;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}


body {
  padding-top: 80px;
  /* Fix for fixed navbar overlap on all pages */
}
@media (max-width: 768px) {

  /* ── BODY ── */
  body {
    padding-top: 70px;
  }

  /* ── NAVBAR ── */
  .navbar {
    padding: 15px 18px;
  }

  .logo {
    width: 110px;
    height: 35px;
  }

  /* ── SHOW HAMBURGER ── */
  .hamburger {
    display: flex;
  }

  /* Smooth X animation */
  .hamburger span {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ── MAIN NAV (.menu) — homepage ── */
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 899;
  }

  .menu.active {
    display: flex;
  }

  .menu a {
    margin: 0;
    padding: 13px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 15px;
  }

  .menu a:last-child {
    border-bottom: none;
  }

  /* ── ABOUT NAV (.nav-menu) — about page ── */
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 10px 25px rgba(4, 26, 113, 0.1);
    z-index: 899;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    list-style: none;
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 13px 0;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
  }

  .nav-menu li:last-child a {
    border-bottom: none;
  }

  /* ── NAV ACTIONS (login + hamburger row) ── */
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .btn-login {
    padding: 7px 14px;
    font-size: 13px;
  }

  /* ── NAV ICONS (cart, wishlist, user) ── */
  .nav-icons {
    gap: 14px;
    margin-left: 100px; /* ← FIXED: was pushing icons off screen */
  }

  /* ── SEARCH ── */
  .search-bar input {
    width: 92%;
  }

  /* ── HERO ── */
  .hero {
    flex-direction: column;
    padding: 60px 20px;
    height: 420px;
    max-height: 100%;
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 15px;
  }

  .hero-buttons button {
    width: 100%;
    margin: 8px 0;
  }

  /* ── CATEGORIES ── */
  .categories {
    padding: 50px 20px;
  }

  .categories h2 {
    font-size: 24px;
    margin-bottom: 50px;
  }

  .category-list {
    gap: 25px;
  }

  .category {
    width: 130px;
  }

  .category img {
    width: 95px;
    height: 95px;
  }

  /* ── PRODUCTS ── */
  .bluelly-products-section {
    padding: 50px 18px;
  }

  .bluelly-section-header h2 {
    font-size: 24px;
  }

  .bluelly-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .bluelly-product-content {
    padding: 14px;
  }

  .bluelly-product-content p {
    font-size: 12px;
  }

  .cart-btn {
    width: 36px;
    height: 36px;
  }

  /* ── WHY SECTION ── */
  .bluelly-why-exact {
    padding: 60px 20px;
  }

  .bluelly-why-exact h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .why-grid-exact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-items: center;
  }

  .bottom-left,
  .bottom-right {
    margin: 0;
    grid-column: auto;
  }

  /* ── TESTIMONIALS ── */
  .bluelly-testimonial-wrap {
    padding: 60px 20px;
  }

  .testimonial-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .testimonial-cards {
    position: static;
    transform: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .testimonial-gradient {
    display: none;
  }

  .testimonial-card {
    width: 100%;
    max-width: 95%;
  }

  /* ── CTA ── */
  .bluelly-cta,
  .bluelly-cta-exact {
    padding: 60px 20px;
  }

  .bluelly-cta h2,
  .bluelly-cta-exact h2 {
    font-size: 22px;
  }

  .bluelly-cta button,
  .bluelly-cta-exact button {
    width: 100%;
  }

  /* ── CART SIDEBAR ── */
  .cart-sidebar {
    width: 100%;
  }

  /* ── AUTH MODAL ── */
  .modal-content {
    width: 95%;
    padding: 20px;
  }
}