:root {
  --header-h: 72px; /* header height used for offsets */
}

/* Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  width: 100%;
  height: 100%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
span{color: white;}
/* Header */
.header {
  width: 100%;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  padding: 10px 18px;
  background: #01173d;
  color: #e9f0f7;
  height: var(--header-h);
  position: sticky;
  top: 0; /* keep it flush to top */
  z-index: 100;
  gap: 120px;
}
.header > * { min-width: 0; }

/* Brand & right */
.right { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; min-width: 0; }
.brand { display:flex; align-items:center; gap:1px; text-decoration:none; color:inherit; flex: 0 0 auto; }
.brand img { width:40px; height:40px; border-radius:6px; object-fit:contain; }
.brand-title { display:flex; flex-direction:column; line-height:1; }
.brand-title .title { font-weight:700; font-size:16px; }

/* Hamburger (hidden on larger screens) */
.hamburger {
  display: none;
  background: transparent;
  color: #e9f0f7;
  border: 1px solid rgba(255,255,255,0.04);
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  z-index: 140;
  margin-left: 40px;
}

/* Left (nav + CTA) */
.left { display:flex; align-items:center; gap: 12px; flex: 1 1 auto; min-width:0; }
.navBar { display:flex; align-items:center; flex:1 1 auto; min-width:0; }
.navLinks { display:flex; align-items:center; justify-content:center; min-width:0; }
.linkRight { list-style:none; display:flex; gap:24px; align-items:center; white-space:nowrap; margin:0; padding:0; min-width:0; }

.linkRight a { color:#e9f0f7; text-decoration:none; padding:8px 10px; border-radius:8px; font-weight:600; display:inline-block; }
.linkRight a:hover { background: rgba(255,255,255,0.03); transform: translateY(-2px); transition: transform .12s ease; }

/* Dropdown */
.dropdown { position:relative; }
.dropdown-menu {
  position:absolute;
  top: calc(50% + 5px);
  left: 0;
  min-width:100px;
  background:#06264D;
  border-radius:8px;
  padding:8px 6px;
  display:none;
  /* width: 100px; */
  box-shadow:0 8px 20px rgba(0,0,0,0.4);
  z-index: 40;
}
.dropdown-menu li{
  list-style: none;
}
.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu { display:block; }
.dropdown-menu a { 
  display:block; 
  padding:8px 10px; 
  color:#e0e6ed; 
  text-decoration:none; 
}

/* CTA */
.btn-cta { background: #e4f0f6; color:#041025; border:none; padding:10px 14px; border-radius:8px; font-weight:800; cursor:pointer; flex:0 0 auto; }

/* MAIN offset (push content below sticky header) */
main {
  padding-top: calc(var(--header-h) + 16px); /* header height + breathing space */
  padding-left: 24px;
  padding-right: 24px;
  max-width: 1200px;
  margin: 0 auto 40px;
  box-sizing: border-box;
}

/* Responsive / mobile */
@media (max-width: 1024px) {
  .hamburger { display:inline-flex; align-items:center; justify-content:center; }

  .navBar { display: none; }

  .navBar.active {
    display: flex !important;
    position: fixed;
    left: 8px;
    right: 8px;
    top: calc(var(--header-h) + 12px);
    background: #041025;
    border-radius: 10px;
    padding: 12px;
    flex-direction: column;
    gap: 8px;
    z-index: 9999;
    max-height: calc(100vh - (var(--header-h) + 40px));
    overflow-y: auto;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
  }
  /* .hamburger {margin-left: 2px;} */

  .navBar.active .navLinks { display:flex; flex-direction:column; gap:8px; }
  .navBar.active .linkRight { flex-direction:column; gap:8px; align-items:stretch; white-space:normal; }

  .dropdown-menu {
    position: static;
    display: none;
    padding-left: 12px;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
  }
  .dropdown.expanded > .dropdown-menu { display:block; }

  /* smaller header on very small screens */
  @media (max-width: 420px) {
    :root { --header-h: 64px; }
    .brand-title .title { font-size: 15px; }
    .brand img { width:34px; height:34px; }
    .header{gap: 16px;}
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .header { padding-top: 14px; padding-bottom: 14px;}
}









/*== multiple type animation css code ==*/

/* Fade-in */
.fade {
  opacity: 0;
  transition: opacity 6s;
}
.fade.show {
  opacity: 1;
}

/* Jump */
.jump {
  transform: translateY(50px);
  opacity: 0;
  transition: all 6s;
}
.jump.show {
  transform: translateY(0);
  opacity: 1;
}

/* Slide from left */
.slide {
  transform: translateX(-50px);
  opacity: 0;
  transition: all 6s;
}
.slide.show {
  transform: translateX(0);
  opacity: 1;
}











/* Page Header Section */
.page-header {
  background-color: #f5f5f5;
  padding: 80px 40px;
  text-align: center;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.header-container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.header-title {
  font-size: 48px;
  font-weight: 700;
  color: #01173d;
  margin-bottom: 20px;
}

.header-desc {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
}

.header-img {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: inline-block;
}

/* Responsive for tablets and small screens */
@media (max-width: 768px) {
  .page-header {
    padding: 50px 20px;
  }

  .header-title {
    font-size: 32px;
  }

  .header-desc {
    font-size: 16px;
  }

  .header-img {
    max-width: 150px;
  }
}










/* Flash Sale Section */
.flash-sale {
  background-color: #ffe9e9;
  padding: 60px 40px;
  text-align: center;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.flash-container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.flash-title {
  font-size: 40px;
  font-weight: 700;
  color: #01173d;
  margin-bottom: 15px;
}

.flash-desc {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.time-box {
  background-color: #fff;
  padding: 20px 15px;
  border-radius: 8px;
  min-width: 70px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.time {
  font-size: 28px;
  font-weight: 700;
  color:#01173d;
  display: block;
}

.label {
  font-size: 12px;
  color: #555;
}

.shop-btn {
  display: inline-block;
  background-color: #01173d;
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.shop-btn:hover {
  background-color: #01173d;
}

/* Responsive for tablets and small screens */
@media (max-width: 768px) {
  .flash-sale {
    padding: 40px 20px;
  }

  .flash-title {
    font-size: 28px;
  }

  .flash-desc {
    font-size: 16px;
  }

  .countdown {
    flex-wrap: wrap;
    gap: 15px;
  }

  .time-box {
    padding: 15px 10px;
    min-width: 60px;
  }

  .time {
    font-size: 22px;
  }

  .shop-btn {
    padding: 10px 20px;
  }
}











/* Product Categories Section */
.product-categories {
  background-color: #f9f9f9;
  padding: 60px 40px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  text-align: center;
}

.categories-container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.categories-title {
  font-size: 36px;
  font-weight: 700;
  color: #01173d;
  margin-bottom: 40px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.category-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.category-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.category-name {
  font-size: 18px;
  font-weight: 600;
  color: #01173d;
}

/* Responsive for tablets and small screens */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-categories {
    padding: 40px 20px;
  }

  .categories-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .category-card {
    padding: 15px;
  }

  .category-name {
    font-size: 16px;
  }
}












/* Container */
.customer-favorites {
  background-color: #f5f7fa;
  padding: 60px 40px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  text-align: center;
}

.favorites-container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Heading */
.favorites-title {
  font-size: 36px;
  font-weight: 700;
  color: #01173d;
  margin-bottom: 8px;
}

.favorites-desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
}

/* Grid */
.favorites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

/* Product card */
.product-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease-in-out, box-shadow 0.22s ease-in-out;
  cursor: default;
  border: 1px solid rgba(2, 12, 27, 0.04);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(2, 12, 27, 0.06);
}

/* Media area */
.card-media {
  position: relative;
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge {
  position: absolute;
  left: 12px;
  top: 12px;
  background: #01173d;
  color: #fff;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.badge-sale {
  background: #d32f2f;
}

.badge-limited {
  background: #ff6f00;
}

.badge-stock {
  background: #4a4a4a;
}

.product-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  max-width: 320px;
}

/* Body */
.card-body {
  padding: 16px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
}

.product-name {
  font-size: 18px;
  font-weight: 700;
  color: #01173d;
  margin: 0;
}

.product-short {
  font-size: 13px;
  color: #525968;
  margin: 0;
}

/* Meta row */
.product-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: #777;
}

.rating {
  color: #f39c12;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.reviews {
  color: #6b6b6b;
}

.sold {
  color: #6b6b6b;
}

/* Price */
.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 6px;
  margin-bottom: 8px;
}

.price-current {
  font-size: 18px;
  font-weight: 800;
  color: #d32f2f;
}

.price-old {
  font-size: 14px;
  color: #9aa0a6;
  text-decoration: line-through;
}

.discount {
  font-size: 12px;
  color: #2f855a;
  background: rgba(47,133,90,0.08);
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
}

/* Actions */
.card-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  border: 0;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
}

.btn.primary {
  background-color: #01173d;
  color: #ffffff;
}

.btn.secondary {
  background-color: #e9eef6;
  color: #01173d;
}

.btn.tertiary {
  background-color: transparent;
  color: #01173d;
  border: 1px solid rgba(1,23,61,0.08);
}

/* Responsive: tablets */
@media (max-width: 1024px) {
  .favorites-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .product-img {
    max-width: 260px;
  }
}

/* Responsive: mobile (<=768px) */
@media (max-width: 768px) {
  .customer-favorites {
    padding: 30px 18px;
  }

  .favorites-title {
    font-size: 28px;
  }

  .favorites-desc {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .favorites-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card-body {
    padding: 12px 14px 16px 14px;
  }

  .product-name {
    font-size: 16px;
  }

  .product-short {
    font-size: 13px;
  }

  .price-current {
    font-size: 16px;
  }

  .btn {
    padding: 9px 12px;
    font-size: 13px;
  }
}











/* Container */
.container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* Section */
.bestsellers {
  background-color: #ffffff;
  padding-top: 56px;
  padding-bottom: 56px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Titles */
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #01173d;
  margin: 0;
  margin-bottom: 6px;
  text-align: left;
}

.section-sub {
  font-size: 14px;
  color: #586069;
  margin: 0;
  margin-bottom: 24px;
  text-align: left;
}

/* Category block */
.category-block {
  margin-bottom: 36px;
}

/* Category title */
.cat-title {
  font-size: 20px;
  font-weight: 700;
  color: #01173d;
  margin: 0;
  margin-bottom: 12px;
  text-align: left;
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

/* Product card */
.prod-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(2,12,27,0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease-in-out;
  cursor: default;
}

.prod-card:hover {
  transform: translateY(-6px);
}

/* Media */
.media {
  position: relative;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg,#fbfdff 0%,#ffffff 100%);
}

.badge {
  position: absolute;
  left: 12px;
  top: 12px;
  background-color: #01173d;
  color: #ffffff;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.badge-sale {
  background-color: #d32f2f;
}

.badge-stock {
  background-color: #ff6f00;
}

.prod-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 6px;
  display: block;
}

/* Body */
.prod-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
}

/* Product name */
.prod-name {
  font-size: 16px;
  font-weight: 700;
  color: #01173d;
  margin: 0;
}

/* Meta (rating + reviews) */
.meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: #6b6b6b;
}

.stars {
  color: #f39c12;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* Price row */
.price-row {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-top: 4px;
}

.price-now {
  font-size: 16px;
  font-weight: 800;
  color: #d32f2f;
}

.price-old {
  font-size: 13px;
  color: #9aa0a6;
  text-decoration: line-through;
}

/* Actions */
.actions {
  margin-top: auto;
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Buttons */
.btn {
  border: 0;
  padding: 9px 12px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 13px;
}

.btn.primary {
  background-color: #01173d;
  color: #ffffff;
}

.btn.link {
  background-color: transparent;
  color: #01173d;
  border: 1px solid rgba(1,23,61,0.08);
}

/* Responsive: medium screens (<=1024px) */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .prod-img {
    max-width: 260px;
  }
}

/* Responsive: mobile (<=768px) */
@media (max-width: 768px) {
  .bestsellers {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-sub {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .prod-body {
    padding: 12px;
  }

  .prod-name {
    font-size: 15px;
  }

  .price-now {
    font-size: 15px;
  }

  .btn {
    padding: 8px 10px;
    font-size: 13px;
  }
}










/* Container */
.how-it-works {
  background-color: #f7f9fc;
  padding-top: 56px;
  padding-bottom: 56px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #0b1a2b;
}

.how-container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* Heading */
.how-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: #01173d;
  text-align: left;
}

.how-sub {
  font-size: 14px;
  color: #4a5568;
  margin-top: 8px;
  margin-bottom: 24px;
  text-align: left;
}

/* Grid */
.how-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Step card */
.how-step {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid rgba(2,12,27,0.05);
}

/* Icon */
.step-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 100%);
  border-radius: 10px;
}

/* Body */
.step-body {
  flex: 1 1 auto;
}

/* Step title */
.step-title {
  font-size: 16px;
  font-weight: 700;
  color: #01173d;
  margin: 0 0 6px 0;
}

/* Description */
.step-desc {
  font-size: 13px;
  color: #55606a;
  margin: 0;
  line-height: 1.45;
}

/* Note */
.how-note {
  margin-top: 18px;
  font-size: 13px;
  color: #243447;
  background: rgba(1,23,61,0.03);
  padding: 12px 14px;
  border-radius: 8px;
  text-align: left;
}

/* Hover (desktop affordance) */
.how-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(2,12,27,0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

/* Responsive: medium screens (<=1024px) */
@media (max-width: 1024px) {
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive: mobile (<=768px) */
@media (max-width: 768px) {
  .how-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .how-title {
    font-size: 24px;
  }

  .how-sub {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .how-step {
    padding: 14px;
    gap: 10px;
  }

  .step-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .step-title {
    font-size: 15px;
  }

  .step-desc {
    font-size: 13px;
  }

  .how-note {
    font-size: 13px;
    padding: 10px 12px;
  }
}










/* Container + defaults */
.gifts-members {
  background: #fbfdff;
  padding: 56px 16px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #0b1a2b;
}

.gm-container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* Header row */
.gm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.gm-title {
  font-size: 28px;
  margin: 0;
  color: #01173d;
  font-weight: 700;
  text-align: left;
}

.gm-sub {
  margin: 6px 0 0 0;
  color: #4b5563;
  font-size: 14px;
  text-align: left;
}

.gm-cta-note {
  color: #d32f2f;
  font-weight: 700;
  font-size: 13px;
}

/* Grid */
.gm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

/* Card */
.gm-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(2,12,27,0.04);
  display: flex;
  flex-direction: column;
}

/* Media images */
.gm-media {
  width: 100%;
  display: block;
  background: linear-gradient(180deg,#f8fbff 0%, #ffffff 100%);
}

.gm-media img {
  width: 100%;
  height: auto;
  display: block;
}

/* Smaller image variant */
.gm-media-sm img {
  object-fit: cover;
}

/* Body */
.gm-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gm-card-title {
  font-size: 18px;
  margin: 0;
  color: #01173d;
  font-weight: 700;
}

.gm-card-desc {
  margin: 0;
  color: #55606a;
  font-size: 13px;
}

/* Denominations */
.denominations {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.denom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 10px 12px;
  background: #f3f6fb;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
  font-weight: 700;
  font-size: 14px;
  color: #01173d;
}

.denom[aria-checked="true"],
.denom:focus,
.denom:hover {
  background: #01173d;
  color: #ffffff;
  transform: translateY(-3px);
  border-color: rgba(1,23,61,0.12);
}

/* Actions */
.gm-actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.btn {
  border: 0;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
}

/* Button variants */
.btn.primary {
  background: #01173d;
  color: #fff;
}

.btn.link {
  background: transparent;
  color: #01173d;
  border: 1px solid rgba(1,23,61,0.08);
}

.btn.tertiary {
  background: transparent;
  color: #01173d;
  border: 1px solid rgba(1,23,61,0.08);
}

.btn.apply {
  background: #0b5f3a;
  color: #fff;
  padding: 9px 12px;
}

/* Perks list */
.perks {
  list-style: none;
  padding: 0;
  margin: 6px 0 0 0;
  color: #2f4858;
  font-size: 14px;
  display: grid;
  gap: 6px;
}

.perks li {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Price block */
.price-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 6px;
}

.price-now {
  font-size: 18px;
  font-weight: 800;
  color: #d32f2f;
}

.price-spark {
  font-size: 12px;
  color: #2f855a;
  background: rgba(47,133,90,0.06);
  padding: 4px 8px;
  border-radius: 8px;
  font-weight: 700;
}

/* Promo row */
.promo {
  margin-top: 8px;
}

.promo-row {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.promo-row { display:flex; gap:12px; align-items:center; }
.promo-input { padding:8px 10px; border:1px solid #ccc; border-radius:4px; }
.btn.apply { padding:8px 14px; border-radius:6px; border:0; cursor:pointer; background:#2b6cb0; color:#fff; }

.promo-error {
  margin-left:8px;
  color:#c92a2a;
  font-size:0.95rem;
  background: rgba(201,42,42,0.04);
  padding:6px 8px;
  border-radius:4px;
  border:1px solid rgba(201,42,42,0.15);
}

/* hidden state (for browsers not supporting hidden attr) */
.promo-error[hidden] { display:none !important; }


/* Small notes & footer trust */
.small-note {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

.gm-footer {
  margin-top: 14px;
  text-align: left;
}

.gm-trust {
  font-size: 13px;
  color: #4b5563;
}

/* Hover affordance */
.gm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(2,12,27,0.06);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

/* Responsive: medium screens */
@media (max-width: 1024px) {
  .gm-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .gm-title { font-size: 24px; }
}

/* Responsive: mobile <=768px */
@media (max-width: 768px) {
  .gifts-members { padding: 32px 12px; }
  .gm-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gm-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .gm-title {
    font-size: 22px;
  }

  .gm-sub { font-size: 13px; }

  .denominations { gap: 8px; }

  .gm-actions {
    flex-direction: column;
  }

  .promo-row {
    flex-direction: column;
  }

  .promo-input { width: 100%; }
}












.footer {
  background: #011331;
  color: #fff;
}

.footer-container {
  /* max-width: 1100px; */
  margin-left: 80px;
  margin-right: auto;
  padding: 40px 16px;
  display: flex;
  flex-wrap: wrap;
}

.footer-about {
  flex: 1 1 250px;
}

.footer-links {
  flex: 1 1 200px;
}

.footer-contact {
  flex: 1 1 250px;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 16px;
  margin-top: 20px;
}

.footer-text {
  font-size: 14px;
  width: 200px;
}

/* .footer-contact .mail{
  color: white;
} */

.footer-list {
  list-style: none;
  padding-left: 0;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list li a {
  color: #fff;
  text-decoration: none;
}

.footer-list li a:hover {
  text-decoration: underline;
}

.footer-social {
  margin-top: 16px;
}

.social-icon {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  text-decoration: none;
}

.social-icon img{
  height: 40px;
  width: 40px;
  background-color: white;
  overflow: hidden;

}

.social-icon:hover {
  text-decoration: underline;
}

.footer-newsletter {
  margin-top: 16px;
}

.newsletter-input {
  padding: 8px;
  border: none;
}

.newsletter-btn {
  padding: 8px 16px;
  background-color: #fff;
  color: #222;
  border: none;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  padding: 16px;
  border-top: 1px solid #444;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
    margin-bottom: 24px;
  }
}