/*
Theme Name: Gift Cards Store
Description: A gift card marketplace theme
Version: 1.0
*/

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }

body { font-family: "Inter", ui-sans-serif, system-ui, sans-serif; color: #333; background: #fbf4e9; }

h1, h2, h3, h4, h5, h6,
.section-title, .page-hero h1, .footer-col h4,
.gift-card-name, .sp-title {
  font-family: "Fraunces", ui-serif, Georgia, serif;
}

@keyframes floatCard1 {
  0%, 100% { transform: rotate(-6deg) translateY(0px); }
  50%       { transform: rotate(-6deg) translateY(-10px); }
}
@keyframes floatCard2 {
  0%, 100% { transform: rotate(3deg) translateY(0px); }
  50%       { transform: rotate(3deg) translateY(-14px); }
}
@keyframes floatCard3 {
  0%, 100% { transform: rotate(-4deg) translateY(0px); }
  50%       { transform: rotate(-4deg) translateY(-8px); }
}
@keyframes floatCard4 {
  0%, 100% { transform: rotate(5deg) translateY(0px); }
  50%       { transform: rotate(5deg) translateY(-12px); }
}

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.hiw-section {
  background: #e9dece;
  padding: 80px 60px;
  border-top: 1px solid #cec5bc;
  border-bottom: 1px solid #cec5bc;
}
.hiw-inner { max-width: 1200px; margin: 0 auto; }
.hiw-header { text-align: center; margin-bottom: 56px; }
.hiw-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #60232b;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.hiw-title {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #1e293b;
  line-height: 1.1;
}
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hiw-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 40px;
  border: 1px solid rgba(0,0,0,0.06);
}
.hiw-icon {
  width: 52px;
  height: 52px;
  background: #fdf0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60232b;
  font-size: 20px;
  margin-bottom: 28px;
}
.hiw-step {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #60232b;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.hiw-card-title {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}
.hiw-card-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .hiw-section { padding: 60px 20px; }
  .hiw-grid { grid-template-columns: 1fr; gap: 16px; }
}


/* ── SHOP BY CATEGORY ────────────────────────────────────────── */
.sbc-section { background: #fbf4e9; padding: 60px 80px; }
.sbc-inner { max-width: 1200px; margin: 0 auto; }
.sbc-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #60232b;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.sbc-title {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 36px;
}
.sbc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sbc-card {
  border-radius: 20px;
  padding: 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sbc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.15); }
.sbc-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 28px;
  color: rgba(255,255,255,0.9);
}
.sbc-arrow { font-size: 20px; color: rgba(255,255,255,0.7); }
.sbc-card-bottom h3 {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.sbc-card-bottom p { font-size: 13px; color: rgba(255,255,255,0.8); }
.sbc-card--marketplace { background: linear-gradient(135deg, #00c9a7 0%, #00a389 100%); }
.sbc-card--fashion     { background: linear-gradient(135deg, #ff6eb4 0%, #ff3366 100%); }
.sbc-card--home        { background: linear-gradient(135deg, #ffb347 0%, #ff6a00 100%); }
.sbc-card--beauty      { background: linear-gradient(135deg, #c471ed 0%, #9b59b6 100%); }
@media (max-width: 900px) {
  .sbc-section { padding: 80px 60px; }
  .sbc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .sbc-section { padding: 60px 20px; }
  .sbc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .sbc-grid { grid-template-columns: 1fr; }
}


/* ── SHOP BY BRAND ───────────────────────────────────────────── */
.sbb-section { background: #fbf4e9; padding: 70px 60px 80px; }
.sbb-inner { max-width: 1200px; margin: 0 auto; }
.sbb-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #60232b;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.sbb-title {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 36px;
}
.sbb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sbb-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e1d5c9;
}
.sbb-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.sbb-card-img {
  overflow: hidden;
  background: #f8f4ee;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sbb-card-img img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.sbb-card-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; gap: 8px; }
.sbb-card-name { font-size: 15px; font-weight: 700; color: #1e293b; }
.sbb-card-cat { font-size: 13px; color: #888; }
.sbb-card-price-row { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 8px; }
.sbb-from { font-size: 10px; font-weight: 700; letter-spacing: 1px; color: #999; text-transform: uppercase; margin-bottom: 2px; }
.sbb-price { font-size: 20px; font-weight: 800; color: #1e293b; }
.sbb-price .woocommerce-Price-currencySymbol { font-size: 14px; }
.sbb-btn {
  background: #60232b;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s;
}
.sbb-card:hover .sbb-btn { background: #8b3742; }
@media (max-width: 1120px) {
  .sbb-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 850px) {
  .sbb-section { padding: 60px 20px; }
  .sbb-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .sbb-grid { grid-template-columns: 1fr; }
}


/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-section { background: #e9dece; padding: 80px 60px; border-top: 1px solid #cec5bc; border-bottom: 1px solid #cec5bc;}
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #60232b;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.faq-title {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: #1e293b;
  line-height: 1.1;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; justify-self: center;}
.faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e1d5c9;
  overflow: hidden;
  max-width: 720px;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  text-align: left;
  gap: 16px;
      font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
      font-weight: 500;
}
.faq-icon {
  font-size: 18px;
  color: #999;
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.2s;
}
.faq-item.open .faq-icon { color: #60232b; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-a p { color: #6a4e48; font-size: 15px; line-height: 1.7; padding-bottom: 20px; }
.faq-item.open .faq-a { max-height: 200px; padding-top: 0; }
@media (max-width: 768px) {
  .faq-section { padding: 60px 20px; }
}


/* ── CONTACT US ──────────────────────────────────────────────── */
.cu-section {
  background: #40171c;
  display: flex;
  align-items: center;
  padding: 80px 60px;
}
.cu-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.cu-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #e8b84b;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.cu-title {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.cu-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 420px;
}
.cu-meta { display: flex; flex-direction: column; gap: 6px; }
.cu-meta div { font-size: 14px; color: rgba(255,255,255,0.75); }

/* Form wrap */
.cu-form-wrap {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(8px);
}
.cu-form { display: flex; flex-direction: column; gap: 14px; }
.cu-form input,
.cu-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 15px;
  color: #fff;
  outline: none;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  transition: border-color 0.2s;
}
.cu-form textarea {
  border-radius: 16px;
  resize: none;
  min-height: 130px;
}
.cu-form input::placeholder,
.cu-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.cu-form input:focus,
.cu-form textarea:focus { border-color: rgba(255,255,255,0.5); }
.cu-submit {
  width: 100%;
  padding: 16px;
  background: #e8b84b;
  color: #1e293b;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
}
.cu-submit:hover { background: #d4a33a; }
.cu-success {
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 20px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
}
@media (max-width: 900px) {
  .cu-section { padding: 60px 24px; }
  .cu-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ── HERO STATIC ─────────────────────────────────────────────── */
.hero-static {
  background: #e9dece;
  padding: 72px 60px 80px;
  overflow: hidden;
}
.hero-static-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #e0d6c8;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  margin-bottom: 28px;
}
.hero-badge svg { color: #60232b; flex-shrink: 0; }
.hero-static-headline {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  color: #1e293b;
  margin-bottom: 20px;
}
.hero-static-headline em {
  font-style: italic;
  color: #b54a46;
}
.hero-static-sub {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-static-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-static-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.hero-static-btn--primary {
  background: #60232b;
  color: #fff;
}
.hero-static-btn--primary:hover { background: #8b3742; color: #fff; }
.hero-static-btn--outline {
  background: #fff;
  color: #1e293b;
  border: 2px solid #e0d6c8;
}
.hero-static-btn--outline:hover { border-color: #60232b; color: #60232b; }
.hero-static-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-static-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #60232b;
  font-weight: 500;
}
.hero-static-trust svg { flex-shrink: 0; }

/* ── FLOATING GIFT CARDS ─────────────────────────────────────── */
.hero-static-cards {
  position: relative;
  width: 590px;
  min-width: 420px;
  height: 520px;
  flex-shrink: 0;
}
.hsc {
  position: absolute;
  width: 260px;
  height: 165px;
  border-radius: 18px;
  padding: 16px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}
.hsc-label {
  font-size: 9px;
  letter-spacing: 2px;
  opacity: 0.7;
  align-self: flex-end;
  font-weight: 600;
}
.hsc-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.hsc-cat { font-size: 10px; letter-spacing: 1.5px; font-weight: 600; opacity: 0.85; }
.hsc-amount { font-size: 34px; font-weight: 800; font-family: "Fraunces", ui-serif, Georgia, serif; }

.hsc--1 { background: linear-gradient(135deg, #7b2d35 0%, #60232b 100%); top: 0; left: 40px; animation: floatCard1 3s ease-in-out infinite; }
.hsc--2 { background: linear-gradient(135deg, #d97706 0%, #b45309 100%); top: 60px; left: 220px; animation: floatCard2 3.5s ease-in-out infinite 0.5s; }
.hsc--3 { background: linear-gradient(135deg, #059669 0%, #047857 100%); top: 270px; left: 0; animation: floatCard3 3.5s ease-in-out infinite 1s; }
.hsc--4 { background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%); top: 310px; left: 210px; animation: floatCard4 3s ease-in-out infinite 1.5s; }

@media (max-width: 1260px) {
  .hero-static-cards {
    width: 560px;
}
}

@media (max-width: 1110px) {
  .hero-static-cards {
    width: 475px;
}
}

@media (max-width: 1045px) {
  .hero-static-cards {
    width: 370px;
}
}

@media (max-width: 900px) {
  .hero-static-inner { flex-direction: column-reverse; }
  /* Switch to 2x2 grid — no more absolute positioning */
  .hero-static-cards {
    position: static;
    width: 100%;
    min-width: unset;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .hsc {
    position: static;
    width: auto;
    height: 200px;
    transform: none !important;
    animation: none !important;
  }
  .hsc--1 { transform: rotate(-2deg) !important; }
  .hsc--2 { transform: rotate(2deg) !important; }
  .hsc--3 { transform: rotate(-1deg) !important; }
  .hsc--4 { transform: rotate(1deg) !important; }
  .hsc-amount { font-size: 24px; }
  .hero-static-inner {
    align-items: flex-start;
}
  .hero-static-headline br{
    display: none;
  }
}
@media (max-width: 600px) {
  .hero-static { padding: 48px 20px 56px; }
  .hero-static-cards { gap: 10px; }
  .hsc { height: 110px; }
  .hsc-amount { font-size: 20px; }
}

/* TOP NAVBAR */
.top-navbar {
  background: #fbf4e9; padding: 12px 40px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06); position: sticky; top: 0; z-index: 200;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.top-navbar.scrolled {
  background: rgba(251, 244, 233, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}
.top-nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-icon { color: #60232b; font-size: 20px; }
.logo-text { font-size: 20px; font-weight: 700; color: #1e293b; }
.logo-text strong { color: #1e293b; }
.search-bar {
  flex: 1; max-width: 520px; display: flex; align-items: center;
  border: 1.5px solid #e0e0e0; border-radius: 30px; padding: 10px 16px; gap: 0; background: #fff;
  transition: border-color 0.2s; position: relative;
}
.search-bar:focus-within { border-color: #60232b; }
.search-icon { color: #60232b; font-size: 16px; flex-shrink: 0; margin-right: 12px; }
.search-bar input { border: none; outline: none; font-size: 14px; width: 100%; background: transparent; color: #333; font-family: "Inter", ui-sans-serif, system-ui, sans-serif;}
#gcw-search-clear { background: none; border: none; cursor: pointer; color: #bbb; font-size: 14px; padding: 0 0 0 8px; display: none; line-height: 1; flex-shrink: 0; }
#gcw-search-clear:hover { color: #60232b; }
#gcw-search-clear.visible { display: block; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-btn { background: #60232b; color: #fff; border: none; padding: 9px 22px; border-radius: 6px; font-size: 14px; font-weight: 700; cursor: pointer; letter-spacing: 0.5px; }
.cart-icon { font-size: 20px; color: #333; cursor: pointer; }

/* BOTTOM NAVBAR */
.bottom-navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0; background: #fbf4e9; border-top: 1px solid #e1d5c9;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05); position: sticky; top: 57px; z-index: 100;
  width: 100%;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.bottom-navbar.scrolled {
  background: rgba(251, 244, 233, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}
.bottom-navbar .nav-links, .bottom-navbar .contact-link {
  max-width: 1200px;
}
.nav-links { display: flex; gap: 4px; list-style: none; align-items: center;}
.nav-links a { text-decoration: none; color: #6a4e48; font-size: 14px; padding: 14px 14px; display: block; font-weight: 400}
.nav-links a:hover { background: #60232b; color: white; height: 15px; border-radius: 20px; display: flex; align-items: center;}
.nav-links a.active { background: #60232b; color: white; height: 15px; border-radius: 20px; display: flex; align-items: center; }
.contact-link { text-decoration: none; color: #6a4e48; font-size: 14px; font-weight: 400; white-space: nowrap; }
.contact-link:hover { background: #60232b; color: white; height: 15px; border-radius: 20px; display: flex; align-items: center; padding: 14px 14px;}
.contact-link.active { background: #60232b; color: white; height: 15px; border-radius: 20px; display: flex; align-items: center; padding: 14px 14px;}


/* SECTIONS */
section { padding: 80px 60px; }
.section-title { text-align: center; font-size: 26px; font-weight: 700; margin-bottom: 2rem; }
.section-title span { color: #60232b; text-decoration: underline; }

/* CARD GRID */
.card-grid { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.card-item { background: #fff; border-radius: 12px; padding: 16px; width: 160px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.08); transition: transform 0.2s; cursor: pointer; }
.card-item:hover { transform: translateY(-4px); }
.card-item img { width: 100%; height: 90px; object-fit: cover; border-radius: 8px; margin-bottom: 10px; }
.card-item .name { font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.card-item .price { background: #60232b; color: #fff; font-size: 11px; padding: 3px 10px; border-radius: 20px; display: inline-block; }

/* TRENDING DARK */
.trending { background: #1e293b; }
.trending .section-title { color: #fff; }
.trending .card-item { background: #2a4a6b; }
.trending .card-item .name { color: #fff; }

/* BANNER */
.banner {
  background: linear-gradient(135deg, #000 0%, #1e293b 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 50px 40px; gap: 40px;
}
.banner-text h2 { color: #fff; font-size: 48px; font-weight: 900; line-height: 1.1; }
.banner-text h2 span { color: #60232b; }
.banner-cards { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.banner-cards img { width: 80px; height: 50px; object-fit: cover; border-radius: 6px; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }

/* ABOUT */
.about-section { background: #1e293b; text-align: center; padding: 70px 40px; }
.about-section h2 { color: #fff; font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.about-section p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; font-size: 15px; line-height: 1.8; }

/* RECHARGE */
.recharge-grid { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.recharge-item { background: #fff; border-radius: 12px; padding: 20px; width: 180px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.recharge-item img { width: 70px; height: 70px; object-fit: contain; margin-bottom: 10px; }
.recharge-item .name { font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.recharge-item .btn { background: #60232b; color: #fff; border: none; padding: 8px 16px; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; width: 100%; }

/* WAITING */
.waiting { background: #fff; text-align: center; max-width: 100%;}
.waiting-icons { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.waiting-icon { text-align: center; }
.waiting-icon img { width: 60px; height: 60px; object-fit: cover; border-radius: 12px; margin-bottom: 8px; }
.waiting-icon span { font-size: 12px; font-weight: 500; display: block; }

/* FOOTER */
footer { background: #60232b; color: #fff; padding: 50px 60px 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 32px; margin-bottom: 40px; }
.footer-col h4 { font-size: 15px; font-weight: 700; margin-bottom: 16px; color: #fff; }
.footer-col ul li { margin-bottom: 8px; list-style: none;}
.footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 13px; }
.footer-col ul li a:hover { color: #fff; }
.footer-col p { color: rgba(255,255,255,0.65); font-size: 13px; line-height: 1.8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; color: rgba(255,255,255,0.5); font-size: 12px; }

/* ABOUT US PAGE */
.about-hero {
  background: #1e293b; text-align: center; padding: 70px 40px; color: #fff;
}
.about-hero h1 { font-size: 40px; font-weight: 800; margin-bottom: 20px; }
.about-hero p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 10px; }

.about-journey { padding: 70px 80px; }
.journey-inner { display: flex; align-items: center; gap: 60px; }
.journey-text { flex: 1; }
.journey-text h2 { font-size: 28px; font-weight: 800; margin-bottom: 16px; }
.journey-text p { font-size: 15px; color: #555; line-height: 1.8; }
.journey-img { flex: 1; }
.journey-img img { width: 100%; border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }

.about-mission { padding: 50px 80px 70px; }
.about-mission h2 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.about-mission > p { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 40px; }

.presence-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 16px; }
.presence-card { border-left: 4px solid #60232b; background: #fff; border-radius: 8px; padding: 24px 28px; }
.presence-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.presence-card p { font-size: 14px; color: #666; }

/* DIGITAL CARDS PAGE */
.dc-hero {
  background: linear-gradient(135deg, #f45c7c 0%, #f87c97 100%);
  text-align: center; padding: 70px 40px; color: #fff;
}
.dc-hero-icon { font-size: 52px; margin-bottom: 16px; }
.dc-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.dc-hero p { font-size: 15px; opacity: 0.9; }

.dc-section { padding: 50px 60px; }
.dc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.dc-card { border-radius: 14px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.09); transition: transform 0.2s; cursor: pointer; background: #fff; }
.dc-card:hover { transform: translateY(-5px); box-shadow: 0 8px 28px rgba(0,0,0,0.14); }
.dc-card-img {
  height: 180px; display: flex; align-items: center; justify-content: center; padding: 20px;
}
.dc-card-img img { max-width: 100%; max-height: 130px; object-fit: contain; }
.dc-card-body { padding: 14px 16px; }
.live-badge { background: #60232b; color: #fff; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 20px; display: inline-block; margin-bottom: 8px; letter-spacing: 0.5px; }
.dc-card-name { font-size: 14px; font-weight: 600; margin-bottom: 6px; color: #222; }
.dc-card-price { font-size: 13px; color: #555; }
.dc-card-price strong { color: #60232b; font-size: 18px; font-weight: 800; }

/* GENERIC PAGE HERO */
.page-hero { text-align:center; padding:70px 40px; color:#fff; }
.page-hero-icon { font-size:52px; margin-bottom:16px; }
.page-hero h1 { font-size:36px; font-weight:800; margin-bottom:12px; }
.page-hero p { font-size:15px; opacity:0.9; }

/* AUTH PAGES */
.wc-page-wrapper { background:#fbf4e9; min-height:60vh; display:flex; align-items:center; justify-content:center; padding:60px 20px; max-width: 100%!important;}
#tab-login, #tab-register { display:flex; align-items:center; justify-content:center; width:100%; }
.auth-section { background:#fbf4e9; min-height:60vh; display:flex; align-items:center; justify-content:center; padding:60px 20px; }
.auth-card { background:#fff; border-radius:16px; padding:40px; width:100%; max-width:520px; box-shadow:none; border:none; }
.auth-card h2 { font-size:26px; font-weight:800; margin-bottom:8px; text-align:center; }
.auth-sub { text-align:center; color:#888; font-size:14px; margin-bottom:28px; }
.auth-form { display:flex; flex-direction:column; gap:14px; }
.auth-form input, .auth-form select { border:1px solid #eee; border-radius:8px; padding:13px 16px; font-size:14px; outline:none; width:100%; background:#fff; }
.auth-form input:focus { border-color:#60232b; }
.auth-row { display:flex; justify-content:space-between; align-items:center; }
.remember { display:flex; align-items:center; gap:8px; font-size:14px; cursor:pointer; }
.remember input { width:auto; accent-color:#60232b; }
.auth-row a { font-size:13px; color:#666; text-decoration:none; }
.auth-btn { background:#60232b; color:#fff; border:none; padding:14px; border-radius:8px; font-size:15px; font-weight:700; cursor:pointer; letter-spacing:1px; }
.auth-btn:hover { background:#8b3742; }
.auth-switch { text-align:center; font-size:14px; color:#666; }
.auth-switch a { color:#60232b; font-weight:600; text-decoration:none; }
.auth-two-col { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.auth-three-col { display:grid; grid-template-columns:1fr 1fr 1fr; gap:14px; }

/* RELOADLY WIDGET */
.reloadly-section { padding: 50px 40px; max-width: 900px; margin: 0 auto; }

.nav-username { font-size:14px; font-weight:600; color: #60232b; }

.nav-account-link { color: #1e293b; font-size: 18px; text-decoration: none; }
.nav-account-link:hover { color: #60232b; }

/* WOOCOMMERCE PAGES */

/* AUTH TABS */
.auth-tabs { display:flex; justify-content:center; gap:0; margin: 40px auto 0; max-width:480px; border-radius:10px; overflow:hidden; border:1px solid #60232b; }
.auth-tab { flex:1; padding:12px; font-size:15px; font-weight:700; border:none; cursor:pointer; background:#fff; color:#60232b; transition:all 0.2s; }
.auth-tab.active { background:#60232b; color:#fff; }
.auth-section { padding-top: 24px; }

/* FIX WOOCOMMERCE FORM STYLES */
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register { border: none !important;}

#tab-login, #tab-register { display:flex; align-items:center; justify-content:center; width:100%; }
.auth-card { box-shadow: none !important; border: none !important; }

/* CONTACT US PAGE */
.contact-hero { text-align:center; padding:60px 40px 40px; }
.contact-hero h1 { font-size:32px; font-weight:800; margin-bottom:16px; }
.contact-hero p { font-size:15px; color:#666; line-height:1.8; }

.contact-section { padding:20px 60px 70px; }
.contact-inner { display:grid; grid-template-columns:1fr 1.4fr; gap:32px; align-items:start; }

.contact-details { background:#fff; border:1px solid #eee; border-radius:16px; padding:32px; }
.contact-details h3 { font-size:17px; font-weight:700; margin-bottom:24px; }
.contact-item { display:flex; gap:16px; align-items:flex-start; margin-bottom:24px; }
.contact-icon { background:#fff; color:#60232b; width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0; }
.contact-label { font-size:12px; color:#888; margin-bottom:4px; }
.contact-value { font-size:14px; font-weight:600; color:#1e293b; }

.contact-form-box { background:#1e293b; border-radius:16px; padding:36px; }
.contact-form-box h3 { font-size:18px; font-weight:700; color:#fff; margin-bottom:24px; }
.contact-form { display:flex; flex-direction:column; gap:14px; }
.contact-form input, .contact-form textarea { background:#2a4a6b; border:none; border-radius:8px; padding:14px 16px; font-size:14px; color:#fff; outline:none; font-family:"Inter", ui-sans-serif, system-ui, sans-serif; width:100%; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color:rgba(255,255,255,0.5); }
.contact-form textarea { resize:vertical; }
.contact-btn { background:#60232b; color:#fff; border:none; padding:14px; border-radius:8px; font-size:14px; font-weight:700; cursor:pointer; letter-spacing:1px; font-family:"Inter", ui-sans-serif, system-ui, sans-serif; }
.contact-btn:hover { background:#8b3742; }

.contact-success { background:#d4edda; color:#155724; padding:16px 20px; border-radius:8px; font-size:14px; font-weight:600; }

.verify-success { background:#d4edda; color:#155724; padding:14px 20px; border-radius:8px; font-size:14px; font-weight:600; margin:20px auto; max-width:520px; text-align:center; }
.verify-error { background:#f8d7da; color:#721c24; padding:14px 20px; border-radius:8px; font-size:14px; font-weight:600; margin:20px auto; max-width:520px; text-align:center; }

.footer-socials { display: flex; gap: 10px; margin: 20px 0 16px; }
.footer-socials a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; text-decoration: none; transition: background 0.2s; }
.footer-socials a:hover { background: #60232b; }

.footer-payments { display: flex; align-items: center; gap: 10px; }
.footer-payments span { font-size: 12px; color: rgba(255,255,255,0.6); }
.payment-badges { display: flex; gap: 6px; }
.payment-badge { padding: 4px 10px; border-radius: 4px; font-size: 12px; font-weight: 800; }
.payment-badge.visa { background: #1a1f71; color: #fff; }
.payment-badge.mc { background: #eb001b; color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; color: rgba(255,255,255,0.4); font-size: 12px; }

.payment-badges img { height: 24px; width: auto; background: #fff; border-radius: 4px; padding: 3px 6px; }

/* POLICY PAGES */
.policy-page { padding: 60px 40px; }
.policy-inner { max-width: 860px; margin: 0 auto; }
.policy-inner h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.policy-date { color: #888; font-size: 13px; margin-bottom: 40px; }
.policy-inner h2 { font-size: 18px; font-weight: 700; margin: 32px 0 10px; color: #1e293b; }
.policy-inner h3 { font-size: 15px; font-weight: 600; margin: 20px 0 8px; }
.policy-inner p { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 14px; }
.policy-inner ul { padding-left: 20px; margin-bottom: 14px; }
.policy-inner ul li { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 6px; }
.policy-inner a { color: #60232b; }

/* SITEMAP */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 32px; }
.sitemap-col h2 { font-size: 16px; font-weight: 700; color: #1e293b; margin-bottom: 14px; border-bottom: 2px solid #60232b; padding-bottom: 8px; }
.sitemap-col ul { list-style: none; padding: 0; }
.sitemap-col ul li { margin-bottom: 10px; }
.sitemap-col ul li a { color: #555; text-decoration: none; font-size: 14px; }
.sitemap-col ul li a:hover { color: #60232b; }

.pay-visa { background:#1a1f71; color:#fff; font-size:13px; font-weight:900; font-style:italic; padding:4px 10px; border-radius:4px; letter-spacing:1px; }
.pay-mc svg { display:block; }

/* SITE MAX WIDTH */
.top-nav-inner, .bottom-navbar, .footer-grid, .footer-bottom,
.hero, .dc-section, .contact-section, .contact-hero,
.about-journey, .about-mission, .policy-page,
.wc-page-wrapper, .reloadly-section { max-width: 1200px; margin-left: auto; margin-right: auto; }
.auth-section { max-width: 100%; margin-left: 0; margin-right: 0; }
footer { padding-left: 0; padding-right: 0; }
.footer-grid, .footer-bottom { padding-left: 40px; padding-right: 40px; }

/* FIX FULL WIDTH BACKGROUNDS, 1200px CONTENT */
.bottom-navbar { padding-left: 0; padding-right: 0; max-width: 100%; }
.bottom-navbar > ul, .bottom-navbar > a { max-width: 1200px; }

.top-navbar { max-width: 100%; padding: 12px 0; }
.top-nav-inner { padding: 0 40px; }

footer { max-width: 100%; }

.hero { max-width: 100%; }
.trending { max-width: 100%; }
.banner { max-width: 100%; }
.about-section { max-width: 100%; }
.dc-hero, .gaming-hero, .page-hero, .about-hero, .contact-hero { max-width: 100%; }

.hero > *, .dc-section, section:not(.auth-section) > * { max-width: 1200px; margin-left: auto; margin-right: auto; }

.bottom-nav-inner { display:flex; align-items:center; justify-content:space-between; width:100%; max-width:1200px; margin:0 auto; padding:0 30px; }

.section-inner { max-width: 1200px; margin: 0 auto; }

h1, h2, h3, h4, h5, h6 { font-size: unset; color: unset; }
.section-title { font-size: 45px !important; color: rgb(51,51,51) !important; }

.trending .section-inner { padding: 50px 40px; }
.trending .card-item { background: #2a4a6b; display: block; }
.trending .card-item img { display: block; width: 100%; }

.trending { padding: 0; }
.trending .section-inner { padding: 50px 40px; width: 100%; }

.trending { background: rgb(43,49,73) !important; }

/* IMG SLIDE SPLIT LAYOUT */

/* ===== SHOP / ARCHIVE PAGE ===== */
.shop-page { padding: 50px 40px;}
.shop-inner { max-width: 1200px; margin: 0 auto; }
.shop-header { text-align: center; margin-bottom: 40px; }
.shop-title { font-size: 38px; font-weight: 800; color: #1e293b; margin-bottom: 8px; }
.shop-subtitle { color: #888; font-size: 15px; }

.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; font-size: 13px; color: #666; }
.shop-toolbar select { border: 1px solid #ddd; border-radius: 6px; padding: 6px 12px; font-size: 13px; font-family: "Inter", ui-sans-serif, system-ui, sans-serif; }

.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; list-style: none; padding: 0; margin: 0; }

.shop-pagination { margin-top: 40px; text-align: center; }
.shop-pagination .page-numbers { display: inline-block; padding: 8px 14px; border: 1px solid #ddd; border-radius: 6px; margin: 0 3px; font-size: 13px; color: #333; text-decoration: none; }
.shop-pagination .page-numbers.current { background: #60232b; color: #fff; border-color: #60232b; }

.shop-empty { text-align: center; padding: 80px 0; color: #aaa; }
.shop-empty i { font-size: 48px; margin-bottom: 16px; display: block; }

/* ===== GIFT CARD PRODUCT CARD ===== */
.gift-card-item { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.08); transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.gift-card-item:hover { transform: translateY(-6px); box-shadow: 0 8px 32px rgba(0,0,0,0.14); }
.gift-card-link { text-decoration: none; color: inherit; flex: 1; display: flex; flex-direction: column; }
.gift-card-img { position: relative; overflow: hidden; background: #fff; }
.gift-card-img img.gift-thumb { width: 100%; height: 160px; object-fit: cover; display: block; }
.gift-no-img { width: 100%; height: 160px; display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 40px; }
.gift-sale-badge { position: absolute; top: 10px; left: 10px; background: #60232b; color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; z-index: 1; }
.gift-card-body { padding: 14px 16px; flex: 1; }
.gift-card-name { font-size: 14px; font-weight: 600; color: #222; margin-bottom: 6px; }
.gift-card-price { font-size: 15px; font-weight: 700; color: #60232b; }
.gift-card-price del { color: #aaa; font-weight: 400; font-size: 13px; margin-right: 6px; }
.gift-card-footer { padding: 0 16px 16px; }
.gift-card-footer .button, .gift-card-footer a.button { display: block; width: 100%; text-align: center; background: #60232b; color: #fff; border: none; padding: 10px; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; text-decoration: none; font-family: "Inter", ui-sans-serif, system-ui, sans-serif; transition: background 0.2s; }
.gift-card-footer .button:hover { background: #8b3742; }

/* ===== SINGLE PRODUCT PAGE ===== */
.single-product-page { padding: 50px 40px; }
.single-product-inner { max-width: 1200px; margin: 0 auto; }
.sp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 60px; }

.sp-image { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.sp-main-img { width: 100%; height: auto; display: block; }
.sp-no-img { width: 100%; height: 360px; background: #fff; display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 64px; border-radius: 16px; }
.sp-sale-badge { position: absolute; top: 16px; left: 16px; background: #60232b; color: #fff; font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 20px; z-index: 1; }

.sp-breadcrumb { font-size: 12px; color: #aaa; margin-bottom: 16px; }
.sp-breadcrumb a { color: #aaa; text-decoration: none; }
.sp-breadcrumb a:hover { color: #60232b; }
.sp-title { font-size: 30px; font-weight: 800; color: #1e293b; margin-bottom: 16px; line-height: 1.2; }
.sp-price { font-size: 28px; font-weight: 700; color: #60232b; margin-bottom: 20px; }
.sp-price del { color: #aaa; font-size: 18px; font-weight: 400; margin-right: 8px; }
.sp-desc { font-size: 14px; color: #666; line-height: 1.8; margin-bottom: 24px; }

.sp-cart .quantity { margin-bottom: 12px; }
.sp-cart .quantity input { width: 70px; padding: 10px; border: 1px solid #ddd; border-radius: 8px; font-size: 15px; text-align: center; }
.sp-cart .single_add_to_cart_button { background: #60232b !important; color: #fff !important; border: none !important; padding: 14px 36px !important; border-radius: 8px !important; font-size: 15px !important; font-weight: 700 !important; cursor: pointer !important; font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important; transition: background 0.2s !important; }
.sp-cart .single_add_to_cart_button:hover { background: #8b3742 !important; }

.sp-meta { margin-top: 20px; font-size: 13px; color: #888; display: flex; flex-direction: column; gap: 6px; }
.sp-meta strong { color: #555; }

.sp-guarantee { display: flex; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.sp-guarantee-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #555; background: #fff; padding: 8px 14px; border-radius: 8px; border: 1px solid #d9d9c7;}
.sp-guarantee-item i { color: #60232b; }

.sp-description { border-top: 1px solid #eee; padding-top: 40px; margin-bottom: 50px; }
.sp-description h2 { font-size: 22px; font-weight: 700; color: #1e293b; margin-bottom: 16px; }
.sp-desc-body { font-size: 14px; color: #666; line-height: 1.8; }

.sp-related h2 { font-size: 26px; font-weight: 700; color: #1e293b; margin-bottom: 24px; }

/* VIEW ALL BUTTON */
.view-all-btn { display: inline-block; background: #60232b; color: #fff; padding: 12px 32px; border-radius: 8px; text-decoration: none; font-size: 14px; font-weight: 600; transition: background 0.2s; }
.view-all-btn:hover { background: #8b3742; }

/* CART ICON */
.cart-icon-wrap { position: relative; text-decoration: none; color: #333; }
.cart-count { position: absolute; top: -8px; right: -8px; background: #60232b; color: #fff; font-size: 10px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 2px 7px; }

/* WC CART & CHECKOUT */
.woocommerce .cart-collaterals, .woocommerce-cart table.cart, .woocommerce-checkout form.checkout { max-width: 1200px; margin: 0 auto; }
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button { background: #60232b !important; color: #fff !important; border-radius: 8px !important; font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important; font-weight: 600 !important; }
.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover { background: #8b3742 !important; }

/* CATEGORY CARD - View Product button */
.gift-view-btn { display: block; width: 100%; text-align: center; background: #60232b; color: #fff; padding: 10px; border-radius: 8px; font-size: 13px; font-weight: 700; text-decoration: none; transition: background 0.2s; }
.gift-view-btn:hover { background: #8b3742; }

/* PRODUCT PAGE - Category pills */
.sp-categories { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.sp-cat-pill { background: #60232b; color: #fff; font-size: 12px; font-weight: 600; padding: 4px 14px; border-radius: 20px; text-decoration: none; display: inline-block; }
.sp-cat-pill:hover { background: #1e2235; }

/* RELATED PRODUCTS - hide add to cart */
.sp-related .gift-card-footer { display: none; }

/* BUTTON COLOR MATCH SIGN IN */

/* RECHARGE PROMO CARDS */
.recharge-promo-card { background: #fff; border-radius: 12px; padding: 24px 32px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); font-size: 14px; font-weight: 600; color: #333; text-align: center; min-width: 140px; }

/* ===== RECHARGE PAGE ===== */
.recharge-page { padding: 50px 40px; }
.recharge-inner { max-width: 800px; margin: 0 auto; }

.recharge-success-msg { background: #d4edda; border: 1px solid #c3e6cb; border-radius: 10px; padding: 16px 24px; margin-bottom: 24px; display: flex; align-items: center; gap: 12px; font-size: 14px; }
.recharge-success-msg i { color: #28a745; font-size: 20px; }
.recharge-success-msg a { color: #60232b; font-weight: 700; margin-left: auto; text-decoration: none; }

.recharge-card { background: #fff; border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); padding: 40px; }
.recharge-card h2 { font-size: 22px; font-weight: 700; color: #1e2235; margin-bottom: 28px; }

.recharge-step { margin-bottom: 24px; }
.recharge-step label { display: block; font-size: 13px; font-weight: 600; color: #555; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.recharge-select, .recharge-input { width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 10px; font-size: 14px; font-family: "Inter", ui-sans-serif, system-ui, sans-serif; color: #333; outline: none; transition: border 0.2s; }
.recharge-select:focus, .recharge-input:focus { border-color: #60232b; }

.phone-input-wrap { display: flex; align-items: center; border: 1px solid #ddd; border-radius: 10px; overflow: hidden; transition: border 0.2s; }
.phone-input-wrap:focus-within { border-color: #60232b; }
.phone-prefix { background: #fff; padding: 12px 14px; font-size: 14px; font-weight: 600; color: #555; border-right: 1px solid #ddd; white-space: nowrap; }
.phone-input-wrap .recharge-input { border: none; border-radius: 0; }

.recharge-loading { text-align: center; padding: 20px; color: #888; font-size: 14px; }

.operator-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.operator-card { border: 2px solid #eee; border-radius: 10px; padding: 16px 12px; text-align: center; cursor: pointer; transition: all 0.2s; }
.operator-card:hover { border-color: #60232b; }
.operator-card.selected { border-color: #60232b; background: #fff; }
.operator-card img { width: 60px; height: 40px; object-fit: contain; margin-bottom: 8px; display: block; margin-left: auto; margin-right: auto; }
.operator-card span { font-size: 12px; font-weight: 600; color: #333; }

.amount-list { display: flex; flex-wrap: wrap; gap: 10px; }
.amount-btn { background: #fff; border: 2px solid #eee; border-radius: 8px; padding: 10px 20px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: "Inter", ui-sans-serif, system-ui, sans-serif; transition: all 0.2s; }
.amount-btn:hover { border-color: #60232b; color: #60232b; }
.amount-btn.selected { background: #60232b; color: #fff; border-color: #60232b; }

.recharge-summary { background: #fff; border-radius: 10px; padding: 20px 24px; margin-top: 8px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 6px 0; border-bottom: 1px solid #eee; }
.summary-row:last-child { border: none; }
.summary-row span { color: #888; }
.summary-row strong { color: #333; }

.recharge-submit-btn { width: 100%; background: #60232b; color: #fff; border: none; padding: 16px; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: "Inter", ui-sans-serif, system-ui, sans-serif; display: flex; align-items: center; justify-content: center; gap: 10px; transition: background 0.2s; }
.recharge-submit-btn:hover { background: #8b3742; }

.recharge-features { display: flex; justify-content: center; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.recharge-feature { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: #555; background: #fff; border-radius: 10px; padding: 12px 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.recharge-feature i { color: #60232b; font-size: 18px; }

.operator-card.auto-detected { border-color: #60232b; background: #fff; }
.operator-card.auto-detected small { display: block; margin-top: 4px; }

/* DENOMINATION PICKER */
.sp-denom-wrap { margin-bottom: 24px; }
.sp-denom-label { font-size: 13px; font-weight: 600; color: #555; display: block; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.sp-denom-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.sp-denom-btn { background: #fff; border: 2px solid #eee; border-radius: 8px; padding: 10px 18px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: "Inter", ui-sans-serif, system-ui, sans-serif; transition: all 0.2s; }
.sp-denom-btn:hover { border-color: #60232b; color: #60232b; }
.sp-denom-btn.selected { background: #60232b; color: #fff; border-color: #60232b; }
.sp-custom-input { padding: 10px 14px; border: 2px solid #eee; border-radius: 8px; font-size: 14px; font-family: "Inter", ui-sans-serif, system-ui, sans-serif; width: 200px; outline: none; }
.sp-custom-input:focus { border-color: #60232b; }

/* ===== PAGINATION ===== */
.gcw-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin: 40px 0 20px; flex-wrap: wrap; }
.page-btn { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 14px; border-radius: 8px; border: 2px solid #eee; background: #fff; color: #333; font-size: 14px; font-weight: 600; font-family: "Inter", ui-sans-serif, system-ui, sans-serif; text-decoration: none; transition: all 0.2s; cursor: pointer; }
.page-btn:hover { border-color: #60232b; color: #60232b; }
.page-btn.current { background: #60232b; border-color: #60232b; color: #fff; }
.page-btn.dots { border: none; background: none; cursor: default; }

/* ===== GIFT TABS ===== */
.sp-brand-line { font-size: 13px; color: #888; margin-bottom: 16px; }
.sp-gift-tabs { display: none; gap: 0; border-bottom: 2px solid #eee; margin: 24px 0 20px; position: relative; }
.sp-tab-btn { background: none; border: none; padding: 12px 20px; font-size: 14px; font-weight: 600; font-family: "Inter", ui-sans-serif, system-ui, sans-serif; color: #aaa; cursor: pointer; position: relative; transition: color 0.2s; }
.sp-tab-btn.active { color: #60232b; }
.sp-tab-btn.active::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: #60232b; }
.sp-for-me-note { font-size: 13px; color: #888; margin-bottom: 16px; }
.sp-add-btn { width: 100%; background: #60232b; color: #fff; border: none; padding: 16px; border-radius: 8px; font-size: 14px; font-weight: 700; font-family: "Inter", ui-sans-serif, system-ui, sans-serif; cursor: pointer; letter-spacing: 1px; transition: background 0.2s; margin-top: 4px; }
.sp-add-btn:hover { background: #8b3742; }
.sp-gift-field { margin-bottom: 12px; }
.sp-gift-input { width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 8px; font-size: 14px; font-family: "Inter", ui-sans-serif, system-ui, sans-serif; color: #333; outline: none; box-sizing: border-box; transition: border 0.2s; }
.sp-gift-input:focus { border-color: #60232b; }
.sp-gift-textarea { resize: vertical; min-height: 80px; }
.sp-about-card { background: #fff; border-radius: 12px; padding: 20px 24px; margin: 24px 0 16px; border: 1px solid #d9d9c7;}
.sp-about-card h3 { font-size: 15px; font-weight: 700; color: #1e2235; margin-bottom: 12px; }
.sp-about-card ul { list-style: none; padding: 0; margin: 0; }
.sp-about-card ul li { font-size: 13px; color: #555; padding: 4px 0; }
.sp-about-card ul li::before { content: '–'; margin-right: 8px; color: #60232b; }
.sp-about-card a { color: #60232b; text-decoration: none; }

/* ===== PICK BOX ===== */
.sp-pick-box { background: #fff; border-radius: 16px; padding: 24px; margin-bottom: 20px; border: 1px solid #d9d9c7; }
.sp-pick-box .sp-denom-label { color: #333; }
.sp-pick-box .sp-gift-tabs { background: transparent; }
.sp-pick-box .sp-gift-input { background: #fff; }

/* ===== COUNTRY FILTER ===== */
.country-filter-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.country-filter-label { font-size: 13px; font-weight: 600; color: #555; white-space: nowrap; }
.country-filter-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.country-pill { display: inline-block; padding: 6px 14px; border-radius: 20px; border: 1.5px solid #ddd; font-size: 12px; font-weight: 600; color: #555; text-decoration: none; transition: all 0.2s; background: #fff; }
.country-pill:hover { border-color: #60232b; color: #60232b; }
.country-pill.active { background: #60232b; border-color: #60232b; color: #fff; }

/* ===== LIVE SEARCH ===== */
.search-bar form { display: flex; align-items: center; width: 100%; position: relative; }
#gcw-search-results { position: absolute; top: calc(100% + 10px); left: -18px; right: -18px; background: #fff; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); z-index: 9999; overflow: hidden; display: none; border: 1px solid #fbf4e9; }
#gcw-search-results.open { display: block; }
.gcw-sr-item { display: flex; align-items: center; gap: 12px; padding: 10px 16px; text-decoration: none; color: #333; transition: background 0.15s; border-bottom: 1px solid #fbf4e9; }
.gcw-sr-item:last-child { border: none; }
.gcw-sr-item:hover { background: #fff; }
.gcw-sr-img { width: 40px; height: 40px; object-fit: contain; border-radius: 6px; background: #fff; flex-shrink: 0; }
.gcw-sr-img-placeholder { width: 40px; height: 40px; background: #fff; border-radius: 6px; display: flex; align-items: center; justify-content: center; color: #ccc; flex-shrink: 0; }
.gcw-sr-title { font-size: 13px; font-weight: 600; }
.gcw-sr-price { font-size: 12px; color: #60232b; margin-top: 2px; }
.gcw-sr-footer { padding: 10px 16px; text-align: center; background: #fff; font-size: 12px; font-weight: 600; color: #60232b; cursor: pointer; }
.gcw-sr-footer:hover { background: #fff; }
.gcw-sr-empty { padding: 20px; text-align: center; color: #888; font-size: 13px; }

/* ===== CART DROPDOWN ===== */
.cart-icon-wrap { position: relative; cursor: pointer; display: flex; align-items: center; overflow: visible; }
.cart-dropdown { position: absolute; top: calc(100% + 16px); right: 0; width: 340px; background: #fff; border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,0.15); z-index: 9999; display: none; }
.cart-dropdown.open { display: block; }
.cart-dropdown-inner { border-radius: 16px; }
.cart-dropdown-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid #fbf4e9; font-weight: 700; font-size: 15px; color: #1e2235; }
.cart-dropdown-close { background: none; border: none; cursor: pointer; color: #aaa; font-size: 16px; padding: 0; }
.cart-dropdown-close:hover { color: #60232b; }
.cart-dropdown-scroll { height: 300px; overflow-y: auto; padding: 8px 0; }
.cart-drop-item { display: flex; align-items: center; gap: 14px; padding: 14px 20px; border-bottom: 1px solid #fbf4e9; }
.cart-drop-img { width: 52px; height: 52px; flex-shrink: 0; border-radius: 8px; overflow: hidden; background: #fff; }
.cart-drop-img img { width: 100%; height: 100%; object-fit: contain; }
.cart-drop-info { flex: 1; min-width: 0; }
.cart-drop-name { font-size: 13px; font-weight: 600; color: #333; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-drop-price { font-size: 12px; color: #60232b; font-weight: 600; margin-top: 3px; }
.cart-drop-remove { color: #ccc; font-size: 13px; text-decoration: none; flex-shrink: 0; }
.cart-drop-remove:hover { color: #60232b; }
.cart-drop-empty { text-align: center; color: #aaa; font-size: 13px; padding: 30px 20px; }
.cart-dropdown-footer { padding: 16px 20px; border-top: 1px solid #fbf4e9; flex-shrink: 0; background: #fff; }
.cart-drop-subtotal { display: flex; justify-content: space-between; font-size: 14px; color: #333; font-weight: 700; padding: 10px 20px; }
.cart-drop-btn { display: block; background: #60232b; color: #fff; text-align: center; padding: 12px; border-radius: 10px; font-weight: 700; font-size: 14px; text-decoration: none; letter-spacing: 0.5px; transition: background 0.2s; margin: 0 20px 20px; }
.cart-drop-btn:hover { background: #8b3742; color: #fff; }

/* ===== TOAST NOTIFICATION ===== */
.gcw-toast { position: fixed; bottom: 28px; right: 28px; background: #1e2235; color: #fff; padding: 14px 20px; border-radius: 12px; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 12px; z-index: 99999; box-shadow: 0 4px 24px rgba(0,0,0,0.2); transform: translateY(80px); opacity: 0; transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1); pointer-events: none; max-width: 320px; }
.gcw-toast.show { transform: translateY(0); opacity: 1; }
.gcw-toast-bar { width: 4px; height: 36px; background: #60232b; border-radius: 4px; flex-shrink: 0; }
.gcw-toast i { color: #60232b; font-size: 18px; }

.cart-items-scroll { max-height: 300px; overflow-y: auto; }
.wp-block-woocommerce-cart, .wp-block-woocommerce-checkout{max-width: 1200px; padding: 0px 40px;}

/* ── WC PAGE WRAPPER ───────────────────────────────────────────── */
.woocommerce-page .woocommerce,
.wc-page-wrapper,
.woocommerce {
  margin: 0 auto;
}

/* Remove the giant blank space above WC pages */
.woocommerce-page body,
.woocommerce-cart .site-content,
.woocommerce-checkout .site-content,
.woocommerce-account .site-content { padding-top: 0; }

/* ── MY ACCOUNT ────────────────────────────────────────────────── */
.woocommerce-account .woocommerce {
  gap: 32px;
  align-items: start;
}
.woocommerce-MyAccount-navigation {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 12px 0;
  overflow: hidden;
}
.woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: all 0.15s;
}
.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
  color: #60232b;
  background: #fff;
  font-weight: 600;
}
.woocommerce-MyAccount-content {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 32px;
  font-size: 14px;
  line-height: 1.8;
}
.woocommerce-MyAccount-content p a { color: #60232b; }
.woocommerce-MyAccount-content .woocommerce-Message { border-top: 3px solid #60232b; background: #fff; border-radius: 8px; padding: 14px 18px; font-size: 13px; }

/* Account forms */
.woocommerce-account .woocommerce-EditAccountForm fieldset,
.woocommerce-account .woocommerce-address-fields { border: none; padding: 0; }
.woocommerce-account input[type="text"],
.woocommerce-account input[type="email"],
.woocommerce-account input[type="password"],
.woocommerce-account input[type="tel"],
.woocommerce-account select {
  border: 1px solid #eee !important;
  border-radius: 8px !important;
  padding: 11px 14px !important;
  font-size: 14px !important;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
  width: 100% !important;
  background: #fff !important;
  outline: none !important;
}
.woocommerce-account input:focus { border-color: #60232b !important; }
.woocommerce-account .woocommerce-Button,
.woocommerce-account button[type="submit"],
.woocommerce-account .button {
  background: #60232b !important;
  color: #fff !important;
  border: none !important;
  padding: 12px 28px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
}
.woocommerce-account .woocommerce-Button:hover,
.woocommerce-account button[type="submit"]:hover { background: #8b3742 !important; }

/* Orders table */
.woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.woocommerce-orders-table th {
  background: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: #555;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.woocommerce-orders-table td { padding: 14px 16px; border-bottom: 1px solid #fbf4e9; }
.woocommerce-orders-table .button { font-size: 12px !important; padding: 6px 14px !important; }

/* ── CART PAGE ─────────────────────────────────────────────────── */
.woocommerce-cart .woocommerce {
  display: block;
}
.woocommerce-cart-form { margin-bottom: 40px; }
table.cart, .woocommerce-cart-form table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
table.cart th {
  background: #fff;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #555;
  text-align: left;
}
table.cart td {
  padding: 20px;
  border-bottom: 1px solid #fbf4e9;
  vertical-align: middle;
  font-size: 14px;
}
table.cart .product-thumbnail img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}
table.cart .product-name a { color: #1e293b; font-weight: 600; text-decoration: none; }
table.cart .product-name a:hover { color: #60232b; }
table.cart .product-price, table.cart .product-subtotal { font-weight: 600; color: #60232b; }
table.cart .product-quantity input { width: 60px; padding: 8px; border: 1px solid #eee; border-radius: 8px; text-align: center; font-size: 14px; font-family: "Inter", ui-sans-serif, system-ui, sans-serif; }
table.cart .product-remove a { color: #ccc; font-size: 18px; text-decoration: none; }
table.cart .product-remove a:hover { color: #60232b; }
.woocommerce-cart .actions { padding: 16px 20px; background: #fff; display: flex; justify-content: flex-end; }
.woocommerce-cart .actions .button,
.woocommerce-cart .actions input[type="submit"] {
  background: #60232b !important;
  color: #fff !important;
  border: none !important;
  padding: 11px 24px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
}
.cart-collaterals { display: flex; justify-content: flex-end; }
.cart_totals {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 28px;
  min-width: 340px;
}
.cart_totals h2 { font-size: 16px; font-weight: 700; margin-bottom: 20px; color: #1e293b; }
.cart_totals table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.cart_totals table th, .cart_totals table td { padding: 12px 0; border-bottom: 1px solid #fbf4e9; font-size: 14px; }
.cart_totals table th { font-weight: 600; color: #555; width: 40%; }
.cart_totals table .order-total th, .cart_totals table .order-total td { font-weight: 700; font-size: 16px; color: #1e293b; border-bottom: none; }
.wc-proceed-to-checkout .checkout-button,
.cart_totals .wc-proceed-to-checkout a {
  display: block;
  background: #60232b !important;
  color: #fff !important;
  text-align: center;
  padding: 14px !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: background 0.2s;
}
.wc-proceed-to-checkout .checkout-button:hover { background: #8b3742 !important; }

/* Empty cart */
.woocommerce-cart .woocommerce p.cart-empty {
  text-align: center;
  font-size: 18px;
  color: #888;
  padding: 60px 0 20px;
}
.woocommerce-cart .woocommerce .return-to-shop { text-align: center; }
.woocommerce-cart .woocommerce .return-to-shop .button {
  background: #60232b !important;
  color: #fff !important;
  padding: 12px 28px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

/* ── CHECKOUT PAGE ─────────────────────────────────────────────── */
.woocommerce-checkout .woocommerce {
  display: grid;
  gap: 32px;
  align-items: start;
  max-width: 1200px;
  width: 100%;
}
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review_heading { grid-column: 1; }
.woocommerce-checkout #order_review { grid-column: 2; grid-row: 1 / span 3; }

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout #order_review_heading {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}
.woocommerce-checkout .woocommerce-input-wrapper input,
.woocommerce-checkout .woocommerce-input-wrapper select,
.woocommerce-checkout .woocommerce-input-wrapper textarea {
  border: 1px solid #eee !important;
  border-radius: 8px !important;
  padding: 11px 14px !important;
  font-size: 14px !important;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
  width: 100% !important;
  background: #fff !important;
}
.woocommerce-checkout .woocommerce-input-wrapper input:focus { border-color: #60232b !important; outline: none !important; }
.woocommerce-checkout .form-row label { font-size: 13px; font-weight: 600; color: #555; margin-bottom: 6px; display: block; }

/* Order summary box */
#order_review {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 28px;
}
#order_review h3 { font-size: 16px; font-weight: 700; color: #1e293b; margin-bottom: 20px; }
#order_review table { width: 100%; border-collapse: collapse; font-size: 14px; }
#order_review table th, #order_review table td { padding: 12px 0; border-bottom: 1px solid #fbf4e9; }
#order_review table .order-total th, #order_review table .order-total td { font-weight: 700; font-size: 16px; color: #1e293b; border-bottom: none; }
#order_review .product-name { font-weight: 600; }

/* Payment section */
#payment { margin-top: 20px; }
#payment .payment_methods { list-style: none; padding: 0; }
#payment .payment_box { background: #fff; border-radius: 8px; padding: 14px; font-size: 13px; color: #555; margin-top: 8px; }
#place_order {
  display: block;
  width: 100%;
  background: #60232b !important;
  color: #fff !important;
  border: none !important;
  padding: 15px !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
  margin-top: 16px;
  transition: background 0.2s;
}
#place_order:hover { background: #8b3742 !important; }

/* Coupon accordion */
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.wc_payment_methods .woocommerce-info { display: none; }

/* ── WOOCOMMERCE BLOCKS (cart + checkout) ──────────────────────── */
:root {
  --wc-block-components-button-background-color: #60232b;
  --wc-block-components-button-color: #fff;
  --wc-block-global-color-primary: #60232b;
  --wc-block-global-color-primary-700: #8b3742;
  --wc-block-components-border-color: #eee;
}

/* Remove blank space at top */
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout { padding-top: 0 !important; margin-top: 0 !important; }
.wc-page-wrapper { padding: 40px 40px 60px !important; }

/* Buttons */
.wc-block-components-button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button,
.wp-block-woocommerce-checkout .wc-block-components-button,
.wp-block-woocommerce-cart .wc-block-components-button {
  background-color: #60232b !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  border: none !important;
  padding: 14px 24px !important;
}
.wc-block-components-button:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover {
  background-color: #8b3742 !important;
  color: #fff !important;
}

/* Cart layout */
.wc-block-cart { font-family: "Inter", ui-sans-serif, system-ui, sans-serif; }
.wc-block-cart-items__header { background: #fff; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #555; padding: 12px 16px; }
.wc-block-cart-item { border-bottom: 1px solid #fbf4e9 !important; padding: 16px !important; }
.wc-block-cart-item__image img { border-radius: 8px !important; }
.wc-block-cart-item__title { font-weight: 600 !important; color: #1e293b !important; font-size: 14px !important; }
.wc-block-cart-item__prices .wc-block-components-product-price { color: #60232b !important; font-weight: 700 !important; }
.wc-block-cart-item__total .wc-block-components-product-price { color: #60232b !important; font-weight: 700 !important; }

/* Cart totals sidebar */
.wc-block-cart__sidebar .wc-block-components-totals-wrapper,
.wc-block-components-order-summary,
.wc-block-cart__totals { background: #fff !important; border-radius: 14px !important; box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important; overflow: hidden !important; }
.wc-block-components-totals-item { font-family: "Inter", ui-sans-serif, system-ui, sans-serif; font-size: 14px; }
.wc-block-components-totals-footer-item { font-weight: 700 !important; color: #1e293b !important; font-size: 16px !important; }

/* Checkout layout */
.wc-block-checkout__main { font-family: "Inter", ui-sans-serif, system-ui, sans-serif; }
.wc-block-components-text-input input,
.wc-block-components-select select,
.wc-block-components-combobox input {
  border: 1px solid #eee !important;
  border-radius: 8px !important;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
  font-size: 14px !important;
  background: #fff !important;
  padding: 11px 14px !important;
}
.wc-block-components-text-input input:focus,
.wc-block-components-combobox input:focus { border-color: #60232b !important; outline: none !important; }
.wc-block-components-text-input label,
.wc-block-components-select label,
.wc-block-components-combobox label { font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important; font-size: 13px !important; font-weight: 600 !important; color: #555 !important; }

/* Checkout order summary */
.wc-block-components-order-summary { border-radius: 14px !important; overflow: hidden !important; }
.wc-block-components-order-summary-item__description { font-size: 13px !important; color: #888 !important; }
.wc-block-checkout__sidebar .wc-block-components-totals-wrapper { background: #fff !important; }

/* Section headings */
.wc-block-components-checkout-step__title,
.wc-block-checkout__contact-fields .wc-block-components-checkout-step__title {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #1e293b !important;
}

/* Links */
.wc-block-checkout a, .wc-block-cart a { color: #60232b !important; }

/* ── MY ACCOUNT (classic WC) ────────────────────────────────────── */
body.woocommerce-account .wc-page-wrapper { padding: 40px !important; align-items: flex-start;}
body.woocommerce-account .wc-page-wrapper .woocommerce {
  gap: 32px !important;
  align-items: start !important;
}
body.woocommerce-account .woocommerce-notices-wrapper { width: 100% !important; flex: 0 0 100% !important; }
body.woocommerce-account .woocommerce-MyAccount-navigation { flex: 0 0 200px !important; width: 200px !important; }
body.woocommerce-account .woocommerce-MyAccount-content { flex: 1 !important; min-width: 0 !important; }
body.woocommerce-account .woocommerce-MyAccount-navigation {
  background: #fff !important;
  border-top-left-radius: 14px !important;
  border-top-right-radius: 14px !important;
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important;
  padding: 0px !important;
}
body.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
body.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: block !important;
  padding: 25px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #333 !important;
  text-decoration: none !important;
}
body.woocommerce-account .woocommerce-MyAccount-navigation li a:hover,
body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
  background: #60232b !important;
  color: #fff !important;
  font-weight: 600 !important;
}
body.woocommerce-account .woocommerce-MyAccount-content {
  background: #fff !important;
  border-radius: 14px !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important;
  padding: 32px !important;
  font-size: 14px !important;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
}

body.woocommerce-account .button,
body.woocommerce-account input[type="submit"] {
  background: #60232b !important;
  color: #fff !important;
  border: none !important;
  padding: 11px 24px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
  text-decoration: none !important;
}

/* ── CART BLOCKS FIX ───────────────────────────────────────────── */
body.woocommerce-cart .wc-page-wrapper { padding: 40px !important; background: #fbf4e9 !important; }

/* Remove top blank space */
body.woocommerce-cart .wp-block-woocommerce-cart { margin: 0 !important; }
body.woocommerce-cart .with-scroll-to-top__scroll-point { display: none !important; }

/* Two column layout */
body.woocommerce-cart .wc-block-cart { gap: 32px !important; }
body.woocommerce-cart .wc-block-cart.wc-block-cart--is-loading,
body.woocommerce-cart .wc-block-cart { display: flex !important; gap: 32px !important; align-items: flex-start !important; }
body.woocommerce-cart .wc-block-cart__main { flex: 1 !important; min-width: 0 !important; }
body.woocommerce-cart .wc-block-cart__sidebar { width: 340px !important; flex-shrink: 0 !important; }

/* Cart items table - white card */
body.woocommerce-cart .wc-block-cart-items {
  background: #fff !important;
  border-radius: 14px !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important;
  overflow: hidden !important;
}
body.woocommerce-cart .wc-block-cart-items__header {
  background: #fff !important;
  padding: 14px 20px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: #555 !important;
  border-bottom: 1px solid #fbf4e9 !important;
}
body.woocommerce-cart .wc-block-cart-item {
  padding: 20px !important;
  border-bottom: 1px solid #fbf4e9 !important;
}
body.woocommerce-cart .wc-block-cart-item__image img {
  border-radius: 8px !important;
  width: 72px !important;
  height: 72px !important;
  object-fit: contain !important;
  background: #fff !important;
}
body.woocommerce-cart .wc-block-cart-item__product a {
  color: #1e293b !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-decoration: none !important;
}
body.woocommerce-cart .wc-block-cart-item__product a:hover { color: #60232b !important; }
body.woocommerce-cart .wc-block-components-product-price { color: #60232b !important; font-weight: 700 !important; }

/* Cart totals sidebar - white card */
body.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-wrapper {
  background: #fff !important;
  border-radius: 14px !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important;
  overflow: hidden !important;
  padding: 24px !important;
}
body.woocommerce-cart .wc-block-components-totals-item {
  font-size: 14px !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid #fbf4e9 !important;
}
body.woocommerce-cart .wc-block-components-totals-footer-item {
  font-weight: 700 !important;
  font-size: 16px !important;
  color: #1e293b !important;
  border-bottom: none !important;
}
body.woocommerce-cart .wc-block-cart__submit-container {
  padding: 0 !important;
  margin-top: 16px !important;
}
body.woocommerce-cart .wc-block-cart__submit-button {
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 14px !important;
  background: #60232b !important;
  color: #fff !important;
  border: none !important;
  width: 100% !important;
}

/* ── CUSTOM CART PAGE ──────────────────────────────────────────── */
.gcw-cart-page { padding: 40px; max-width: 1200px; margin: 0 auto; min-height: 60vh; }
.gcw-cart-inner { display: flex; gap: 32px; align-items: flex-start; }
.gcw-cart-left { flex: 1; min-width: 0; width: 100%;}
.gcw-cart-right { width: 340px; flex-shrink: 0; }

.gcw-cart-title { font-size: 28px; font-weight: 800; color: #1e293b; margin-bottom: 6px; }
.gcw-cart-subtitle { font-size: 14px; color: #888; margin-bottom: 24px; }

/* Product cards */
.gcw-cart-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  position: relative;
}
.gcw-cart-card-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  flex-shrink: 0;
}
.gcw-cart-card-info { flex: 1; min-width: 0; }
.gcw-cart-card-name { font-size: 15px; font-weight: 700; color: #1e293b; margin-bottom: 8px; }
.gcw-cart-badge {
  display: inline-block;
  background: #60232b;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.gcw-cart-card-price { font-size: 15px; color: #60232b; font-weight: 600; }
.gcw-cart-card-price strong { font-size: 18px; }
.gcw-cart-remove {
  color: #ccc;
  font-size: 18px;
  text-decoration: none;
  flex-shrink: 0;
  padding: 4px;
  transition: color 0.2s;
}
.gcw-cart-remove:hover { color: #60232b; }

/* Empty cart */
.gcw-cart-empty { text-align: center; padding: 60px 0; color: #aaa; }
.gcw-cart-empty i { font-size: 48px; margin-bottom: 16px; display: block; }
.gcw-cart-empty p { font-size: 16px; margin-bottom: 20px; }
.gcw-cart-shop-btn {
  background: #60232b;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

/* Order summary */
.gcw-order-summary {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 28px;
}
.gcw-order-title { font-size: 18px; font-weight: 800; color: #1e293b; margin-bottom: 20px; }
.gcw-order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #555;
  padding: 10px 0;
}
.gcw-order-row span:last-child { color: #1e293b; }
.gcw-order-divider { border-top: 1px dashed #eee; margin: 4px 0; }
.gcw-order-total { font-weight: 700; font-size: 15px; }
.gcw-order-total span { color: #1e293b !important; }
.gcw-buy-btn {
  display: block;
  background: #60232b;
  color: #fff;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  margin-top: 24px;
  transition: background 0.2s;
}
.gcw-buy-btn:hover { background: #8b3742; color: #fff; }

body.page-template-page-cart { background: #fff !important; }

body.woocommerce-cart { background: #fbf4e9 !important; }

/* ── MY ACCOUNT CONTENT INNER FIXES ───────────────────────────── */

/* Remove blue top border on notices */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info {
  border-top: 3px solid #60232b !important;
  background: #fff !important;
  border-left: none !important;
  border-radius: 8px !important;
  padding: 14px 18px !important;
  font-size: 13px !important;
  color: #555 !important;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info::before { color: #60232b !important; }

/* Orders table */
body.woocommerce-account .woocommerce-orders-table {
  width: 100% !important;
  border-collapse: collapse !important;
  font-size: 14px !important;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
}
body.woocommerce-account .woocommerce-orders-table thead th {
  background: #fff !important;
  padding: 12px 16px !important;
  text-align: left !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: #555 !important;
  border-bottom: 2px solid #fbf4e9 !important;
}
body.woocommerce-account .woocommerce-orders-table tbody td {
  padding: 14px 16px !important;
  border-bottom: 1px solid #fbf4e9 !important;
  vertical-align: middle !important;
  color: #333 !important;
}
body.woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell-order-number a {
  color: #60232b !important;
  font-weight: 700 !important;
}
body.woocommerce-account .woocommerce-orders-table .button,
body.woocommerce-account .woocommerce-orders-table a.button {
  background: #60232b !important;
  color: #fff !important;
  border: none !important;
  padding: 7px 16px !important;
  border-radius: 6px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  display: inline-block !important;
  white-space: nowrap !important;
}

/* Downloads table */
body.woocommerce-account .woocommerce-MyAccount-downloads {
  width: 100% !important;
  border-collapse: collapse !important;
  font-size: 14px !important;
}
body.woocommerce-account .woocommerce-MyAccount-downloads th {
  background: #fff !important;
  padding: 12px 16px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: #555 !important;
  text-align: left !important;
  border-bottom: 2px solid #fbf4e9 !important;
}
body.woocommerce-account .woocommerce-MyAccount-downloads td {
  padding: 14px 16px !important;
  border-bottom: 1px solid #fbf4e9 !important;
  vertical-align: middle !important;
}
body.woocommerce-account .woocommerce-MyAccount-downloads .button,
body.woocommerce-account .woocommerce-MyAccount-downloads a.button {
  background: #60232b !important;
  color: #fff !important;
  padding: 7px 16px !important;
  border-radius: 6px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  display: inline-block !important;
  border: none !important;
}

/* Addresses */
.woocommerce-account .addresses .title .edit
 {
    float: left!important;
}
body.woocommerce-account .woocommerce-Addresses { margin-top:30px }
body.woocommerce-account .woocommerce-Address header { margin-bottom: 12px !important; }
body.woocommerce-account .woocommerce-Address h3 { font-size: 15px !important; font-weight: 700 !important; color: #1e293b !important; }
body.woocommerce-account .woocommerce-Address address { font-style: normal !important; font-size: 14px !important; color: #555 !important; line-height: 1.8 !important; }
body.woocommerce-account .woocommerce-Address .edit { color: #60232b !important; font-size: 13px !important; font-weight: 600 !important; text-decoration: none !important; }

/* Fix account nav width - consistent across all tabs */
body.woocommerce-account .woocommerce-MyAccount-navigation { width: 200px !important; flex: 0 0 200px !important; align-self: flex-start !important; }
body.woocommerce-account .woocommerce-MyAccount-content { flex: 1 !important; min-width: 0 !important; width: calc(100% - 232px) !important; }

/* Content area fixed width across all account tabs */
body.woocommerce-account .woocommerce-MyAccount-content {
  max-width: 100% !important;
  box-sizing: border-box !important;
}
body.woocommerce-account .woocommerce-MyAccount-content table {
  width: 100% !important;
}

/* Force consistent account layout widths */
body.woocommerce-account .wc-page-wrapper .woocommerce {
  width: 100% !important;
  max-width: 1200px;
  flex-wrap: nowrap !important;
}
body.woocommerce-account .woocommerce-MyAccount-navigation {
  min-width: 200px !important;
  max-width: 200px !important;
  width: 200px !important;
  flex: 0 0 200px !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
}
body.woocommerce-account .woocommerce-MyAccount-content {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

/* Hide browse shop button on empty downloads page */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info .button {
  display: none !important;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

/* Hide icon on WC info notices in account */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info::before {
  display: none !important;
}

/* ── CHECKOUT PAGE FIXES ───────────────────────────────────────── */
body.woocommerce-checkout { background: #fff !important; }
body.woocommerce-checkout .wc-page-wrapper { padding: 40px !important; justify-items: center;}

/* Remove blank space at top */
body.woocommerce-checkout .wp-block-woocommerce-checkout { margin: 0 !important; padding: 0 !important; }
body.woocommerce-checkout .with-scroll-to-top__scroll-point { display: none !important; }

/* Main layout */
body.woocommerce-checkout .wc-block-components-sidebar-layout {
  gap: 32px !important;
  align-items: flex-start !important;
}
body.woocommerce-checkout .wc-block-checkout__main {
  background: #fff !important;
  border-radius: 14px !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important;
  padding: 32px !important;
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
  background: #fff !important;
  border-radius: 14px !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important;
  overflow: hidden !important;
}

/* Section headings */
body.woocommerce-checkout .wc-block-components-checkout-step__title {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #1e293b !important;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
  margin-bottom: 16px !important;
}

/* Inputs */
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-combobox input {
  border: 1px solid #eee !important;
  border-radius: 8px !important;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
  font-size: 14px !important;
  background: #fff !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus { border-color: #60232b !important; outline: none !important; }

/* Hide coupon section */
body.woocommerce-checkout .wc-block-components-totals-coupon { display: none !important; }

/* Order summary sidebar */
body.woocommerce-checkout .wc-block-components-order-summary { padding: 20px !important; }
body.woocommerce-checkout .wc-block-components-order-summary__button-text { font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important; font-weight: 600 !important; color: #1e293b !important; }
body.woocommerce-checkout .wc-block-components-order-summary-item__individual-prices { color: #60232b !important; font-weight: 600 !important; }
body.woocommerce-checkout .wc-block-components-totals-item { font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important; font-size: 14px !important; }
body.woocommerce-checkout .wc-block-components-totals-footer-item { font-weight: 700 !important; font-size: 17px !important; color: #1e293b !important; }

/* Place order button */
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  background: #60232b !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
  padding: 15px !important;
  width: 100% !important;
  letter-spacing: 0.5px !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { background: #8b3742 !important; }

/* Payment error notice */
body.woocommerce-checkout .wc-block-components-notice-banner.is-error {
  border-radius: 8px !important;
  font-size: 13px !important;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
}

/* Force checkout sidebar layout */
body.woocommerce-checkout .wc-block-components-sidebar-layout {
  display: flex !important;
  gap: 32px !important;
  align-items: flex-start !important;
}
body.woocommerce-checkout .wc-block-components-main {
  flex: 1 !important;
  min-width: 0 !important;
}
body.woocommerce-checkout .wc-block-components-sidebar {
  width: 360px !important;
  flex-shrink: 0 !important;
  position: sticky !important;
  top: 120px !important;
}

/* Clean up order summary sidebar */
body.woocommerce-checkout .wc-block-components-sidebar > * {
  background: #fff !important;
  border-radius: 14px !important;
  margin-bottom: 16px !important;
  overflow: hidden !important;
  border: none !important;
}
.wc-block-components-sidebar {
    padding: 2%;
}
.wp-block-woocommerce-checkout-order-summary-coupon-form-block{
  display: none;
}
body.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-order-summary {
  padding: 24px !important;
}

/* Hide the empty coupon row */
body.woocommerce-checkout .wc-block-components-totals-coupon,
body.woocommerce-checkout .wc-block-components-totals-shipping { display: none !important; }

/* Remove grey background from inner blocks */
body.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-panel,
body.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-panel__content { background: transparent !important; border: none !important; box-shadow: none !important; }

/* Hide no payment methods error on checkout */
body.woocommerce-checkout .wc-block-components-notices .wc-block-components-notice-banner.is-error { display: none !important; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .top-navbar { padding: 12px 20px; }
  .search-bar { max-width: 360px; }
  .hero { padding: 40px; }
  .hero-text h1 { font-size: 32px; }
  .hero-img { width: 260px; height: 180px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1.5fr; }
  .single-product-inner { padding: 30px 20px; }
  .sp-grid { gap: 24px; }
  .gcw-cart-inner { gap: 24px; }
  .gcw-cart-right { width: 280px; }
  body.woocommerce-checkout .wc-block-components-sidebar { width: 300px; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 600px) {
  .hero-static { padding: 48px 20px 56px; }
}

/* TOP NAVBAR */
  .top-navbar { padding: 10px 16px; position: sticky; top: 0; z-index: 200; }
  .top-nav-inner { flex-wrap: wrap; gap: 10px; }
  .logo { order: 1; }
  .nav-actions { order: 2; gap: 10px; }
  .search-bar { order: 2; }
  .nav-btn { padding: 7px 14px; font-size: 12px; }

  /* BOTTOM NAVBAR */
  .bottom-navbar { overflow-x: auto; }
  .bottom-nav-inner { padding: 0 12px; min-width: max-content; }
  .nav-links a { padding: 12px 10px; font-size: 13px; }
  .contact-link { padding: 12px 10px; font-size: 13px; white-space: nowrap; }

  /* SECTIONS */
  section { padding: 30px; }
  .section-title { font-size: 20px; }
  .about-mission{padding: 30px}
  .presence-grid{grid-template-columns: 1fr;}

  /* PRODUCT GRID */
  .gift-card-item { padding: 12px !important; }
  .gift-card-name { font-size: 12px !important; }

  /* SINGLE PRODUCT */
  .single-product-page { padding: 0; }
  .single-product-inner { padding: 60px 16px; }
  .sp-image { order: 1; }
  .sp-details { order: 2; }
  .sp-title { font-size: 20px; }
  .sp-denom-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .sp-guarantee { flex-direction: row; gap: 8px; }

  /* FOOTER */
  footer { padding: 30px 16px 16px; }

  .footer-logo {margin-bottom: 16px;}

  /* CART PAGE */
  .gcw-cart-page { padding: 20px 16px; }
  .gcw-cart-inner { flex-direction: row; }
  .gcw-cart-title { font-size: 22px; }
  .gcw-order-summary { padding: 20px; }

  /* MY ACCOUNT */
  body.woocommerce-account .wc-page-wrapper { padding: 20px 16px !important; }
  body.woocommerce-account .wc-page-wrapper .woocommerce { flex-direction: column !important; }
  body.woocommerce-account .woocommerce-MyAccount-navigation { width: 100% !important; min-width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  body.woocommerce-account .woocommerce-MyAccount-navigation ul { display: flex !important; flex-wrap: wrap !important; gap: 4px !important; padding: 0px !important; }
  body.woocommerce-account .woocommerce-MyAccount-navigation li a { border-radius: 6px !important; font-size: 13px !important; }
  body.woocommerce-account .woocommerce-MyAccount-content { width: 100% !important; min-width: 100% !important; }
  body.woocommerce-account .woocommerce-Addresses { grid-template-columns: 1fr !important; }

  /* CHECKOUT */
  body.woocommerce-checkout .wc-page-wrapper { padding: 16px !important; }
  body.woocommerce-checkout .wc-block-components-sidebar { position: static !important; padding:10px!important;}
  body.woocommerce-checkout .wc-block-checkout__main { padding: 20px !important; }

  /* AUTH PAGES */
  .auth-section { padding: 30px 16px !important; }
  .auth-card { padding: 24px 20px; }
  .auth-two-col { grid-template-columns: 1fr !important; }
  .auth-three-col { grid-template-columns: 1fr !important; }

  /* CART DROPDOWN */
  .cart-dropdown { width: 300px; right: -60px; }

  /* ABOUT / POLICY PAGES */
  .about-hero { padding: 40px 20px; }
  .about-hero h1 { font-size: 28px; }
  .journey-inner { flex-direction: column; }
  .about-journey { padding: 40px 20px; }
  .policy-page { padding: 30px 20px !important; }

  /* CONTACT */
  .contact-hero { padding: 40px 20px !important; }
  .contact-grid { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 480px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .gift-card-img { height: 100px !important; }
  .hero-text h1 { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .sp-denom-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .cart-dropdown { width: 280px; right: -50px; }
  .nav-btn { padding: 6px 12px; font-size: 11px; }
}

/* ── HAMBURGER & MOBILE MENU ───────────────────────────────────── */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: #333;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  padding-top: 5%;
  top: 0; right: -100%;
  width: 85%; max-width: 360px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
}
.mobile-menu.open { right: 0; }

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9998;
  display: none;
}
.mobile-menu-overlay.open { display: block; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #fbf4e9;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #888;
  cursor: pointer;
}

.mobile-menu-search {
  padding: 14px 20px;
  border-bottom: 1px solid #fbf4e9;
}
.mobile-menu-search form {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #eee;
  border-radius: 30px;
  padding: 10px 16px;
}
.mobile-menu-search form i { color: #60232b; font-size: 14px; }
.mobile-menu-search input {
  border: none;
  outline: none;
  font-size: 14px;
  width: 100%;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  background: transparent;
}

.mobile-menu-nav {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}
.mobile-menu-nav a {
  display: block;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #fbf4e9;
  transition: color 0.15s;
}
.mobile-menu-nav a:hover { color: #60232b; }

.mobile-menu-footer {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #fbf4e9;
}
.mobile-menu-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.mobile-menu-btn--primary { background: #60232b; color: #fff; }
.mobile-menu-btn--dark    { background: #370000; color: #fff; }

    
@media (max-width: 731px) {
    body.woocommerce-checkout .wc-block-components-sidebar {
        display: none;
    }
    body.woocommerce-checkout .wc-page-wrapper {
        padding: 50px 16px!important;
    }
}

@media (max-width: 768px) {
  .hamburger-btn { display: block; }
  .nav-btn--desktop { display: none; }
  .bottom-navbar { display: none; }
  .top-nav-inner { flex-wrap: nowrap; padding: 0}
  .search-bar { display: none; }
}

@media screen and (max-width: 768px) {
  .hamburger-btn { display: block !important; }
  .nav-btn--desktop { display: none !important; }
  .bottom-navbar { display: none !important; }
  .search-bar { display: none !important; }
  .sp-grid { grid-template-columns: 1fr !important;
        gap: 20px;
    }
}

@media screen and (max-width: 1000px) {
  .hamburger-btn { display: block !important; }
  .nav-btn--desktop { display: none !important; }
  .nav-account-link { display: none !important; }
  .nav-username { display: none !important; }
  .bottom-navbar { display: none !important; }
  .search-bar { display: none !important; }
}
@media screen and (min-width: 1001px) {
  .hamburger-btn { display: none !important; }
  .mobile-menu { display: none !important; }
  .mobile-menu-overlay { display: none !important; }
}

.mobile-menu-title { font-size: 17px; font-weight: 700; color: #1e293b; }

/* Hero slide image responsive heights */

@media screen and (max-width: 1200px) {
  
}
@media screen and (max-width: 1150px) {
  
}
@media screen and (max-width: 1000px) {
  div
  div
}

/* ── HOMEPAGE PRODUCT SLIDER (≤1175px) ────────────────────────── */
@media screen and (max-width: 1175px) {
  .section-inner { position: relative; }

  .shop-grid.is-slider {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    padding-bottom: 8px !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    scroll-behavior: smooth !important;
    grid-template-columns: unset !important;
  }
  .shop-grid.is-slider::-webkit-scrollbar { display: none !important; }

  .shop-grid.is-slider .gift-card-item,
  .shop-grid.is-slider li.product {
    scroll-snap-align: start !important;
    flex: 0 0 calc(25% - 12px) !important;
    min-width: calc(25% - 12px) !important;
  }

  /* Slider nav buttons */
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    font-size: 16px;
    color: #1e293b;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .slider-btn:hover { background: #60232b; color: #fff; }
  .slider-btn-prev { left: -18px; display: block;}
  .slider-btn-next { right: -18px; display: block;}
}

@media screen and (max-width: 900px) {
  .shop-grid.is-slider .gift-card-item,
  .shop-grid.is-slider li.product {
    flex: 0 0 calc(33.33% - 11px) !important;
    min-width: calc(33.33% - 11px) !important;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 650px) {
  
    .gcw-cart-inner {
        flex-direction: column;
    }
    .gcw-cart-right {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
  
  .shop-grid.is-slider .gift-card-item,
  .shop-grid.is-slider li.product {
    flex: 0 0 calc(50% - 8px) !important;
    min-width: calc(50% - 8px) !important;
  }
}

@media screen and (max-width: 550px) {
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 400px) {
  .shop-grid.is-slider .gift-card-item,
  .shop-grid.is-slider li.product {
    flex: 0 0 100% !important;
    min-width: 100% !important;
  }
  .sp-image {max-width:100vw;}
  .sp-details{max-width:90vw;}
}

@media screen and (max-width: 1280px) {
}

a.waiting-icon { text-decoration: none; color: inherit; cursor: pointer; transition: transform 0.2s; display: flex; flex-direction: column; align-items: center; }
a.waiting-icon:hover { transform: translateY(-4px); }
a.waiting-icon span { color: #333; }

@media screen and (max-width: 850px) {
  .contact-inner { grid-template-columns: 1fr !important; }
}

.gcw-payment-success-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dcfce7;
  color: #15803d;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 999px;
  margin-bottom: 24px;
}

@media screen and (max-width: 500px) {
  .about-section { padding: 70px 20px; }
}

@media screen and (max-width: 400px) {
  .footer-grid, .footer-bottom { padding-left: 10px; padding-right: 10px; }
}

/* ===== THANK YOU PAGE ===== */
.gcw-thankyou-wrap { max-width: 1200px; width: 100%; margin: 60px auto; padding: 0 20px 60px; }
.gcw-ty-card { background: #fff; border-radius: 20px; box-shadow: 0 4px 32px rgba(0,0,0,0.08); padding: 48px 40px; text-align: center; }
.gcw-ty-icon { margin-bottom: 24px; }
.gcw-ty-title { font-size: 28px; font-weight: 700; color: #1a1a2e; margin: 0 0 8px; }
.gcw-ty-subtitle { color: #6b7280; font-size: 15px; margin: 0 0 32px; }
.gcw-ty-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 1px; background: #fff; border-radius: 12px; overflow: hidden; margin-bottom: 32px; text-align: left; }
.gcw-ty-meta-item { background: #fff; padding: 16px 20px; }
.gcw-ty-meta-label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: #9ca3af; margin-bottom: 4px; }
.gcw-ty-meta-value { display: block; font-size: 14px; font-weight: 600; color: #1a1a2e; word-break: break-all; }
.gcw-ty-total { color: #60232b !important; font-size: 16px !important; }
.gcw-ty-items { text-align: left; margin-bottom: 32px; }
.gcw-ty-items h4 { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: #9ca3af; margin: 0 0 16px; }
.gcw-ty-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid #fbf4e9; }
.gcw-ty-item:last-child { border-bottom: none; }
.gcw-ty-item-img { width: 52px; height: 52px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.gcw-ty-item-info { flex: 1; }
.gcw-ty-item-name { display: block; font-size: 14px; font-weight: 600; color: #1a1a2e; }
.gcw-ty-item-qty { display: block; font-size: 12px; color: #9ca3af; margin-top: 2px; }
.gcw-ty-item-price { font-size: 15px; font-weight: 700; color: #1a1a2e; white-space: nowrap; }
.gcw-ty-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.gcw-ty-btn { display: inline-block; padding: 13px 28px; border-radius: 999px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.gcw-ty-btn--primary { background: #60232b; color: #fff; }
.gcw-ty-btn--primary:hover { background: #c0302a; color: #fff; }
.gcw-ty-btn--outline { background: transparent; color: #1a1a2e; border: 2px solid #e5e7eb; }
.gcw-ty-btn--outline:hover { border-color: #1a1a2e; }
.gcw-ty-failed h2 { color: #60232b; }
.gcw-ty-address { text-align: left; background: #f9fafb; border-radius: 12px; padding: 20px 24px; margin-bottom: 28px; }
.gcw-ty-address h4 { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: #9ca3af; margin: 0 0 10px; }
.gcw-ty-address address { font-style: normal; font-size: 14px; color: #374151; line-height: 1.7; }
.gcw-ty-address-email { font-size: 13px; color: #6b7280; margin: 8px 0 0; }
.gcw-ty-address-email i { margin-right: 6px; color: #60232b; }
/* Hide default WC order table on thank you page */
.gcw-thankyou-wrap .woocommerce-order-details,
.gcw-thankyou-wrap .woocommerce-customer-details { display: none; }
/* Hide payment method notice (e.g. "Pay with cash upon delivery") */
.gcw-thankyou-wrap .woocommerce-thankyou-order-received,
.gcw-thankyou-wrap p.woocommerce-notice { display: none; }

@media screen and (max-width: 350px) {
  .about-section { padding: 70px 20px; }
}

.page-id-22 .wc-page-wrapper{
  display: block!important;
  max-width: 1200px;
  width: 100%;
}

.page-id-23 .woocommerce-account .woocommerce{
    display: grid!important;
    grid-template-columns:1fr!important;
}
.wc-block-components-notice-snackbar-list{
    display:none!important;
}
.wp-block-woocommerce-checkout-order-summary-block .checkout-order-summary-block-fill {
    border: none!important;
}
.wc-block-components-form .wc-block-components-text-input label, .wc-block-components-text-input label{
    top:2px!important;
}



