/*
Theme Name: World of Cardss
Description: A gift card marketplace theme
Version: 1.0
*/

* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Poppins', sans-serif; color: #4A3238; background: #FFF9E3; -webkit-font-smoothing: antialiased; }

/* NAVBAR (single row) */
.navbar {
  background: #fff; border-bottom: 1px solid #EDE0B8;
  position: sticky; top: 0; z-index: 200;
}
.navbar-inner {
  display: flex; align-items: center; gap: 36px;
  padding: 20px;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; flex-shrink: 0; }
.logo a { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-image { display: block; width: auto; }

.nav-links { display: flex; align-items: center; gap: 28px; flex-shrink: 0; list-style: none; }
.nav-links a { text-decoration: none; color: #4A4A47; font-size: 14px; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: #1D1B39; }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 6px; background: none; border: none; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 500; color: #4A4A47; cursor: pointer; padding: 0; }
.nav-dropdown-toggle i { font-size: 10px; transition: transform 0.15s; }
.nav-dropdown:hover .nav-dropdown-toggle { color: #1D1B39; }
.nav-dropdown:hover .nav-dropdown-toggle i { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 18px); left: 50%;
  background: #fff; border: 1px solid #EDE0B8; border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  min-width: 190px; padding: 6px;
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a { display: block; padding: 9px 12px; border-radius: 6px; font-size: 14px; color: #3F3F3D; }
.nav-dropdown-menu a:hover { background: #f8fafc; color: #F0298B; }

.search-bar {
  flex: 1; max-width: 380px; display: flex; align-items: center;
  border: 1.5px solid #EDE0B8; border-radius: 30px; padding: 9px 16px; gap: 0; background: #fff;
  transition: border-color 0.2s; position: relative;
}
.search-bar:focus-within { border-color: #F0298B; }
.search-icon { color: #8C8874; font-size: 15px; flex-shrink: 0; margin-right: 12px; }
.search-bar input { border: none; outline: none; font-size: 14px; width: 100%; background: transparent; color: #333; }
#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: #F0298B; }
#gcw-search-clear.visible { display: block; }
.nav-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-btn { background: #F0298B; color: #fff; border: none; padding: 9px 20px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; }
.cart-icon { font-size: 19px; color: #4A4A47; cursor: pointer; }

/* SECTIONS */
section { padding: 80px 40px; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #F0298B; margin-bottom: 10px; }
.section-title { font-family: 'Fraunces', serif; text-align: left; font-size: 32px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; color: #1D1B39; margin-bottom: 16px; }
.section-sub { font-size: 14px; color: #2d2d2f; margin-top: 10px;}

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 2.5rem; }
.section-head .section-title { margin-bottom: 0; }
.view-all-link { display: inline-flex; align-items: center; gap: 8px; color: #F0298B; font-size: 14px; font-weight: 600; text-decoration: none; white-space: nowrap; }
.view-all-link:hover { text-decoration: underline; }
.view-all-link i { font-size: 12px; }

/* FEATURE STRIP — inset card */
.feature-strip { padding: 20px 20px 0; }
.feature-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-around; gap: 20px 40px; background: #fff; border: 1px solid #EDE0B8; border-radius: 16px; padding: 20px 32px; }
.feature-item { display: flex; align-items: center; gap: 12px; font-size: 0.85rem; font-weight: 600; color: #1D1B39; }
.feature-item i { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: #FFEAAE; color: #F0298B; font-size: 14px; flex-shrink: 0; }


.woocommerce-page .logo-image{height: 34px!important;}

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: #F0298B; color: #fff; padding: 13px 26px; border-radius: 999px; font-size: 14px; font-weight: 600; text-decoration: none; }
.btn-primary:hover { background: #C71F70; }
.btn-outline { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: #1D1B39; border: 1px solid #EDE0B8; padding: 12px 24px; border-radius: 999px; font-size: 14px; font-weight: 600; text-decoration: none; }
.btn-outline:hover { border-color: #1D1B39; }

/* PRODUCT TILE GRID — Shop by Entertainment / Shop by Gaming */
.tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tile-grid--split { display: grid; grid-template-columns: 1.6fr 1fr; gap: 20px; }
.tile-stack { display: flex; flex-direction: column; gap: 20px; }
.tile-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid #EDE0B8; border-radius: 16px; overflow: hidden; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
.tile-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.07); }
.tile-img { position: relative; height: 220px; background: #f5f5f5; }
.tile-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tile-card--large .tile-img { height: 380px; }
.tile-stack .tile-card { flex: 0 0 366px; }
.tile-badge { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.92); color: #1D1B39; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 4px 10px; border-radius: 20px; }
.tile-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.tile-name { display: block; font-family: 'Fraunces', serif; font-size: 16px; font-weight: 600; color: #1D1B39; margin-bottom: 12px; }
.tile-card--large .tile-name { font-size: 22px; }
.tile-footer-row { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tile-price { font-size: 16px; color: #5C5A72; }
.tile-arrow { width: 32px; height: 32px; border-radius: 50%; background: #FFEAAE; color: #1D1B39; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; transition: all 0.2s; }
.tile-card:hover .tile-arrow { background: #F0298B; color: #fff; }

/* Large "featured" tile — bold full-bleed photo overlay */
.tile-card--large { position: relative; height: 760px; }
.tile-card--large .tile-img { position: absolute; inset: 0; height: 100%; }
.tile-large-overlay {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.78) 100%);
}
.tile-large-overlay .tile-name { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 600; color: #fff; margin-bottom: 8px; line-height: 1.25; }
.tile-large-sub { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 18px; }
.tile-large-btn { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: #1D1B39; font-size: 14px; font-weight: 600; padding: 12px 22px; border-radius: 999px; text-decoration: none; width: fit-content; transition: all 0.2s; }
.tile-card--large:hover .tile-large-btn { background: #F0298B; color: #fff; }

/* Small tile category label (icon + text) — on white card bodies */
.tile-label { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #8C8874; margin-bottom: 8px; }
.tile-label i { font-size: 11px; }

/* Small stacked tiles — full-bleed photo overlay, no white section */
.tile-stack .tile-img { position: absolute; inset: 0; height: 100%; }
.tile-stack .tile-overlay {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.72) 100%);
}
.tile-stack .tile-overlay .tile-label { color: rgba(255,255,255,0.8); margin-bottom: 6px; }
.tile-stack .tile-overlay .tile-label i { color: rgba(255,255,255,0.8); }
.tile-stack .tile-overlay .tile-name { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.tile-stack .tile-overlay .tile-sub { font-size: 12px; color: rgba(255,255,255,0.75); }
.tile-stack .tile-overlay .tile-arrow { flex-shrink: 0; }

/* CATEGORY ICON ROW */
.category-icon-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin-top: 32px; }
.category-icon-card { background: #fff; border: 1px solid #EDE0B8; border-radius: 14px; padding: 20px; text-decoration: none; text-align: left; display: block; }
.category-icon-card i { width: 80px; height: 80px; border-radius: 50%; background: #FFEAAE; color: #F0298B; display: flex; align-items: center; justify-content: center; font-size: 45px; margin-bottom: 14px; }
.category-icon-card strong { display: block; font-size: 14px; font-weight: 700; color: #1D1B39; margin-bottom: 2px; }
.category-icon-card span { font-size: 12px; color: #8C8874; }

/* HOW IT WORKS — inset card, split layout */
.how-it-works { background: #FFF9E3; padding: 20px 20px 80px; }
.how-it-works-inner { display: flex; gap: 48px; align-items: flex-start; background: #FFEAAE; border-radius: 24px; padding: 48px; }
.how-it-works-left { flex: 0 0 300px; }
.how-it-works-left .section-title { text-align: left; }
.how-it-works-left p { font-size: 14px; color: #5C5A72; line-height: 1.7; margin: 12px 0 24px; }
.steps-grid { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card { background: #FFFBF0; border-radius: 16px; padding: 28px; }
.step-number { font-family: 'Fraunces', serif; font-style: italic; font-size: 32px; font-weight: 600; color: #F0298B; display: block; margin-bottom: 12px; }
.step-card h3 { font-size: 17px; font-weight: 700; color: #1D1B39; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: #5C5A72; line-height: 1.6; }

/* PERSONAL GIFTING CTA */
.corporate-section { padding: 20px 20px 80px; }
.corporate-section .section-inner {
  display: flex; align-items: stretch; gap: 0;
  background: #FFFBF0; border: 1px solid #EDE0B8; border-radius: 24px; overflow: hidden;
}
.corporate-img { flex: 1; }
.corporate-img img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; display: block; }
.corporate-text { flex: 1; max-width: 600px; padding: 56px; display: flex; flex-direction: column; justify-content: center; }
.corporate-text .section-title { text-align: left; }
.corporate-text p { font-size: 15px; color: #5C5A72; line-height: 1.7; margin: 12px 0 28px; }

/* ABOUT US PAGE */
.about-hero {
  background: #1D1B39; 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; border: 1px solid #EDE0B8; box-shadow: 0 12px 28px rgba(15,23,42,0.06); }

.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 #F0298B; background: #FFEAAE; 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; }

/* 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; }

/* LISTING PAGE HERO (gaming / entertainment / shop all) */
.listing-page { background: #FFF9E3; padding: 24px 40px 0; }
.listing-inner { max-width: 1200px; margin: 0 auto; }
.listing-breadcrumb { font-size: 13px; color: #8C8874; margin-bottom: 16px; }
.listing-breadcrumb a { color: #8C8874; text-decoration: none; }
.listing-breadcrumb a:hover { color: #F0298B; }
.listing-breadcrumb span { color: #1D1B39; font-weight: 600; }
.listing-hero { background: #FFEAAE; border-radius: 24px; padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.listing-hero-text { max-width: 640px; }
.listing-eyebrow { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #F0298B; margin-bottom: 12px; }
.listing-hero h1 { font-family: 'Fraunces', serif; font-size: 40px; font-weight: 700; color: #1D1B39; margin: 0 0 14px; }
.listing-hero p { font-size: 15px; color: #5C5A72; line-height: 1.6; margin: 0; }
.listing-count-pill { flex-shrink: 0; background: #FFFBF0; border-radius: 18px; padding: 18px 28px; text-align: center; }
.listing-count-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #8C8874; margin-bottom: 4px; }
.listing-count-number { display: block; font-family: 'Fraunces', serif; font-size: 26px; font-weight: 700; color: #1D1B39; }

/* AUTH PAGES */
.wc-page-wrapper { min-height:60vh; display:flex !important; 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 { min-height:60vh; display:flex; align-items:center; justify-content:center; padding:24px 20px 60px; }
.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:#f9f9f9; }
.auth-form input:focus { border-color:#F0298B; }
.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:#F0298B; }
.auth-row a { font-size:13px; color:#666; text-decoration:none; }
.auth-btn { background:#F0298B; color:#fff; border:none; padding:14px; border-radius:8px; font-size:15px; font-weight:700; cursor:pointer; letter-spacing:1px; }
.auth-btn:hover { background:#1D1B39; }
.auth-switch { text-align:center; font-size:14px; color:#666; }
.auth-switch a { color:#F0298B; 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:#1D1B39; }

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

/* 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 #F0298B; }
.auth-tab { flex:1; padding:12px; font-size:15px; font-weight:700; border:none; cursor:pointer; background:#fff; color:#F0298B; transition:all 0.2s; }
.auth-tab.active { background:#F0298B; color:#fff; }

/* FIX WOOCOMMERCE FORM STYLES */
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register { 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:#FFEAAE; color:#F0298B; 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:#1D1B39; }

.contact-form-box { background:#FFEAAE; border-radius:16px; padding:36px; }
.contact-form-box h3 { font-size:18px; font-weight:700; color:#303030; margin-bottom:24px; }
.contact-form { display:flex; flex-direction:column; gap:14px; }
.contact-form input, .contact-form textarea { background:#FFF9E3; border:none; border-radius:8px; padding:14px 16px; font-size:14px; color:#383838; outline:none; font-family:'Poppins',sans-serif; width:100%; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color:#9B9B98; }
.contact-form textarea { resize:vertical; }
.contact-btn { background:#F0298B; color:#fff; border:none; padding:14px; border-radius:8px; font-size:14px; font-weight:700; cursor:pointer; letter-spacing:1px; font-family:'Poppins',sans-serif; }
.contact-btn:hover { background:#1D1B39; }

.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 */
footer { background: #FFEAAE; color: #1D1B39; padding: 60px 40px 24px; border-top: 1px solid #EDE0B8; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.footer-brand p { color: #5C5A72; font-size: 13px; line-height: 1.8; margin: 14px 0 20px; }

.footer-newsletter { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid #EDE0B8; border-radius: 999px; padding: 6px 6px 6px 16px; max-width: 320px; }
.footer-newsletter i { color: #8C8874; font-size: 13px; }
.footer-newsletter input { border: none; outline: none; flex: 1; min-width: 0; font-size: 13px; background: transparent; font-family: 'Poppins', sans-serif; }
.footer-newsletter button { background: #1D1B39; color: #fff; border: none; padding: 9px 18px; border-radius: 999px; font-size: 12px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.footer-newsletter button:hover { background: #F0298B; }
.footer-newsletter-msg { font-size: 12px; color: #F0298B; margin-top: 8px; min-height: 16px; }

.footer-col h4 { font-size: 13px; font-weight: 700; margin-bottom: 16px; color: #1D1B39; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #5C5A72; text-decoration: none; font-size: 13px; }
.footer-col ul li a:hover { color: #F0298B; }

.footer-payments { display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.footer-payments span { font-size: 12px; color: #5C5A72; }
.payment-badges { display: flex; gap: 6px; }

.footer-bottom { border-top: 1px solid #EDE0B8; padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: #8C8874; font-size: 12px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: #8C8874; text-decoration: none; }
.footer-bottom-links a:hover { color: #F0298B; }

/* 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: #1D1B39; }
.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: #F0298B; }

/* 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: #1D1B39; margin-bottom: 14px; border-bottom: 2px solid #F0298B; 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: #F0298B; }

.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 */
.navbar-inner, .footer-top, .footer-bottom,
.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-top, .footer-bottom { padding-left: 40px; padding-right: 40px; }

/* FIX FULL WIDTH BACKGROUNDS, 1200px CONTENT */
.navbar { max-width: 100%; }

footer { max-width: 100%; }

.page-hero, .about-hero, .contact-hero { max-width: 100%; }

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

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

/* HERO — static, editorial */
.hero-static { background: #FFF9E3; padding: 32px 40px 0; }
.hero-static-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: stretch; gap: 24px; }
.hero-static-text { flex: 1; display: flex; flex-direction: column; justify-content: center; background: #FFEAAE; border-radius: 24px; padding: 48px; }
.hero-static-text h1 { font-family: 'Fraunces', serif; font-size: 4.5rem; font-weight: 600; line-height: 1; letter-spacing: -0.01em; color: #1D1B39; margin: 14px 0 20px; }
.hero-static-text h1 em { color: #F0298B; font-style: italic; }
.hero-static-text p { font-size: 15px; color: #5C5A72; line-height: 1.7; margin-bottom: 28px; max-width: 420px; }
.hero-static-actions { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 24px; padding-top: 24px; border-top: 1px solid #EDE0B8; }
.hero-stat { display: flex; flex-direction: column; padding-right: 24px; border-right: 1px solid #EDE0B8; }
.hero-stat:last-child { padding-right: 0; border-right: none; }
.hero-stat strong { font-size: 20px; font-weight: 700; color: #1D1B39; }
.hero-stat span { font-size: 12px; color: #8C8874; }
.hero-static-visual { flex: 1; position: relative; border-radius: 24px; overflow: hidden; }
.hero-static-visual img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; display: block; }
.hero-image-bar {
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 550px;
    border-radius: 26px;
    padding: 20px 24px 20px;
    background: linear-gradient(180deg, rgb(255 255 255) 0%, rgba(255, 255, 255, 0.85) 35%, rgba(255, 255, 255, 0.98) 100%);
}
.hero-static-caption { text-decoration: none; }
.hero-static-caption span { font-size: 1rem; color: oklch(48% .06 285); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.hero-static-caption strong { display: block; font-size: 1rem; color: #1D1B39; font-weight: 600; font-family: Fraunces, ui-serif, Georgia, serif; }
.hero-shop-btn { background: #1D1B39; color: #fff; font-size: 12px; font-weight: 600; padding: 9px 16px; border-radius: 999px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0; }
.hero-shop-btn:hover { background: #F0298B; }

.slider-btn-prev{display: none;}
.slider-btn-next{display: none;}


/* ===== 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: #1D1B39; 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: 'Poppins', 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: #F0298B; color: #fff; border-color: #F0298B; }

.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: none; border-radius: 18px; overflow: hidden; box-shadow: none; transition: transform 0.2s; display: flex; flex-direction: column; }
.gift-card-item:hover { transform: translateY(-3px); }
.gift-card-link { text-decoration: none; color: inherit; flex: 1; display: flex; flex-direction: column; }
.gift-card-img { position: relative; overflow: hidden; background: #f8fafc; }
.gift-card-img img.gift-thumb { width: 100%; height: auto; object-fit: cover; display: block; transition: transform 0.3s; }
.gift-card-item:hover .gift-card-img img.gift-thumb { transform: scale(1.04); }
.gift-no-img { width: 100%; height: 230px; display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 40px; background: #FFFBF0; }
.gift-cat-badge { position: absolute; top: 12px; left: 12px; background: rgba(255,251,240,0.95); color: #1D1B39; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 5px 12px; border-radius: 20px; z-index: 1; }
.gift-sale-badge { position: absolute; top: 12px; right: 12px; background: #F0298B; color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; z-index: 1; }
.gift-card-body { padding: 16px 16px 20px; flex: 1; display: flex; flex-direction: column; }
.gift-card-name { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 700; color: #1D1B39; margin-bottom: 10px; }
.gift-card-footer-row { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.gift-card-price { font-size: 13px; font-weight: 600; color: #5C5A72; }
.gift-card-price del { color: #aaa; font-weight: 400; font-size: 13px; margin-right: 6px; }
.gift-card-arrow { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: #FFEAAE; color: #1D1B39; font-size: 12px; flex-shrink: 0; transition: all 0.2s; }
.gift-card-item:hover .gift-card-arrow { background: #F0298B; color: #fff; }

/* ===== 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; border: 1px solid #EDE0B8; box-shadow: 0 12px 28px rgba(15,23,42,0.06); }
.sp-main-img { width: 100%; height: auto; display: block; }
.sp-no-img { width: 100%; height: 360px; background: #f5f5f5; 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: #F0298B; color: #fff; font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 20px; z-index: 1; }

.sp-top-breadcrumb { max-width: 1200px; margin: 0 auto 24px; font-size: 13px; color: #8C8874; }
.sp-top-breadcrumb a { color: #8C8874; text-decoration: none; }
.sp-top-breadcrumb a:hover { color: #F0298B; }
.sp-top-breadcrumb span { color: #1D1B39; font-weight: 600; }

.sp-cat-badge { position: absolute; top: 16px; left: 16px; background: rgba(255,251,240,0.95); color: #1D1B39; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 5px 14px; border-radius: 20px; z-index: 1; }

.sp-title { font-family: 'Fraunces', serif; font-size: 36px; font-weight: 700; color: #1D1B39; margin-bottom: 10px; line-height: 1.15; }

/* QUANTITY STEPPER */
.sp-qty-wrap { margin-bottom: 20px; }
.sp-qty-stepper { display: inline-flex; align-items: center; gap: 0; border: 1.5px solid #EDE0B8; border-radius: 10px; overflow: hidden; }
.sp-qty-btn { width: 40px; height: 40px; background: #FFFBF0; border: none; font-size: 18px; font-weight: 700; color: #1D1B39; cursor: pointer; transition: background 0.2s; }
.sp-qty-btn:hover { background: #FFEAAE; }
.sp-qty-value { width: 48px; text-align: center; font-size: 15px; font-weight: 700; color: #1D1B39; }

/* TOTAL PRICE + CTA */
.sp-total-row { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; margin-top: 16px; border-top: 1px solid #EDE0B8; }
.sp-total-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #8C8874; margin-bottom: 2px; }
.sp-total-price { display: block; font-family: 'Fraunces', serif; font-size: 26px; font-weight: 700; color: #1D1B39; }
.sp-delivery-badge { background: #1D1B39; color: #B6F09C; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; }
.sp-cta-row { display: flex; gap: 12px; margin-top: 16px; }
.sp-cta-row .sp-add-btn { flex: 1; margin-top: 0; }
.sp-buy-now-btn { flex: 1; background: #1D1B39; color: #fff; border: none; padding: 16px; border-radius: 8px; font-size: 14px; font-weight: 700; font-family: 'Poppins', sans-serif; cursor: pointer; letter-spacing: 1px; transition: background 0.2s; }
.sp-buy-now-btn:hover { background: #F0298B; }

/* FEATURE ROW */
.sp-features-row { max-width: 1200px; margin: 40px auto; padding: 32px 0; border-top: 1px solid #EDE0B8; border-bottom: 1px solid #EDE0B8; display: flex; gap: 28px; flex-wrap: wrap; }
.sp-feature-item { display: flex; align-items: flex-start; gap: 12px; flex: 1; min-width: 160px; justify-content: space-around; }
.sp-feature-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 40px; }
.sp-feature-icon--green { background: #DFF7C8; color: #3C8A1E; }
.sp-feature-icon--pink { background: #FBD6E9; color: #F0298B; }
.sp-feature-icon--dark { background: #EDE0B8; color: #1D1B39; }
.sp-feature-item strong { display: block; font-size: 15px; color: #1D1B39; margin-bottom: 2px; }
.sp-feature-item p { font-size: 12px; color: #8C8874; margin: 0; }

/* WHY PEOPLE LOVE IT */
.sp-love-section { max-width: 1200px; margin: 0 auto 60px; text-align: left; }
.sp-love-heading { font-family: 'Fraunces', serif; font-size: 30px; font-weight: 700; color: #1D1B39; margin: 10px 0 20px; }
.sp-love-chips { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; justify-content: space-between; }
.sp-love-chip { background: #FFEAAE; color: #1D1B39; font-size: 14px; font-weight: 600; padding: 14px 22px; border-radius: 14px; width: 32%; }
.sp-love-fine-print { font-size: 13px; color: #8C8874; }
.sp-love-fine-print a { color: #F0298B; text-decoration: none; }
.sp-love-fine-print a:hover { text-decoration: underline; }

.sp-related-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.sp-related h2 { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 700; color: #1D1B39; margin: 0; }
.sp-view-all { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #F0298B; text-decoration: none; border-bottom: 2px solid #F0298B; padding-bottom: 2px; }
.sp-view-all:hover { color: #1D1B39; border-color: #1D1B39; }

/* VIEW ALL BUTTON */
.view-all-btn { display: inline-block; background: #fff; color: #F0298B; border: 1px solid #F6D0E4; padding: 11px 30px; border-radius: 8px; text-decoration: none; font-size: 14px; font-weight: 600; transition: all 0.2s; }
.view-all-btn:hover { background: #F0298B; color: #fff; border-color: #F0298B; }

/* CART ICON */
.cart-icon-wrap { position: relative; text-decoration: none; color: #333; }
.cart-count { position: absolute; top: -8px; right: -8px; background: #F0298B; 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: #F0298B !important; color: #fff !important; border-radius: 8px !important; font-family: 'Poppins', sans-serif !important; font-weight: 600 !important; }
.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover { background: #1D1B39 !important; }

/* RECHARGE PROMO CARDS */
.recharge-promo-card { background: #fff; border: 1px solid #EDE0B8; border-radius: 12px; padding: 24px 32px; box-shadow: none; 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: #F0298B; font-weight: 700; margin-left: auto; text-decoration: none; }

.recharge-card { background: #fff; border: 1px solid #EDE0B8; border-radius: 16px; box-shadow: none; padding: 40px; }
.recharge-card h2 { font-size: 22px; font-weight: 700; color: #1D1B39; 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: 'Poppins', sans-serif; color: #333; outline: none; transition: border 0.2s; }
.recharge-select:focus, .recharge-input:focus { border-color: #F0298B; }

.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: #F0298B; }
.phone-prefix { background: #f8f9fa; 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: #F0298B; }
.operator-card.selected { border-color: #F0298B; background: #FFEAAE; }
.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: #f8f9fa; border: 2px solid #eee; border-radius: 8px; padding: 10px 20px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'Poppins', sans-serif; transition: all 0.2s; }
.amount-btn:hover { border-color: #F0298B; color: #F0298B; }
.amount-btn.selected { background: #F0298B; color: #fff; border-color: #F0298B; }

.recharge-summary { background: #f8f9fa; 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: #F0298B; color: #fff; border: none; padding: 16px; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: 'Poppins', sans-serif; display: flex; align-items: center; justify-content: center; gap: 10px; transition: background 0.2s; }
.recharge-submit-btn:hover { background: #1D1B39; }

.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: 1px solid #EDE0B8; border-radius: 10px; padding: 12px 20px; box-shadow: none; }
.recharge-feature i { color: #F0298B; font-size: 18px; }

.operator-card.auto-detected { border-color: #F0298B; background: #FFEAAE; }
.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: #f8f9fa; border: 2px solid #eee; border-radius: 8px; padding: 10px 18px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'Poppins', sans-serif; transition: all 0.2s; }
.sp-denom-btn:hover { border-color: #F0298B; color: #F0298B; }
.sp-denom-btn.selected { background: #F0298B; color: #fff; border-color: #F0298B; }
.sp-custom-input { padding: 10px 14px; border: 2px solid #eee; border-radius: 8px; font-size: 14px; font-family: 'Poppins', sans-serif; width: 200px; outline: none; }
.sp-custom-input:focus { border-color: #F0298B; }

/* ===== 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: 'Poppins', sans-serif; text-decoration: none; transition: all 0.2s; cursor: pointer; }
.page-btn:hover { border-color: #F0298B; color: #F0298B; }
.page-btn.current { background: #F0298B; border-color: #F0298B; 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: 'Poppins', sans-serif; color: #aaa; cursor: pointer; position: relative; transition: color 0.2s; }
.sp-tab-btn.active { color: #F0298B; }
.sp-tab-btn.active::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: #F0298B; }
.sp-for-me-note { font-size: 13px; color: #888; margin-bottom: 16px; }
.sp-add-btn { width: 100%; background: #F0298B; color: #fff; border: none; padding: 16px; border-radius: 8px; font-size: 14px; font-weight: 700; font-family: 'Poppins', sans-serif; cursor: pointer; letter-spacing: 1px; transition: background 0.2s; margin-top: 4px; }
.sp-add-btn:hover { background: #1D1B39; }
.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: 'Poppins', sans-serif; color: #333; outline: none; box-sizing: border-box; transition: border 0.2s; }
.sp-gift-input:focus { border-color: #F0298B; }
.sp-gift-textarea { resize: vertical; min-height: 80px; }

/* ===== PICK BOX ===== */
.sp-pick-box { background: #FFEAAE; border-radius: 16px; padding: 24px; margin-bottom: 20px; }
.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 ===== */
.listing-filter-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; background: #FFFBF0; border: 1px solid #EDE0B8; border-radius: 18px; padding: 14px 20px; margin-bottom: 28px; }
.filter-pills-group { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-label { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; white-space: nowrap; padding: 8px 16px; border-radius: 20px; background: #1D1B39; color: #fff; }
.country-pill { display: inline-block; padding: 8px 16px; border-radius: 20px; border: 1.5px solid #EDE0B8; font-size: 13px; font-weight: 600; color: #5C5A72; text-decoration: none; transition: all 0.2s; background: #fff; }
.country-pill:hover { border-color: #F0298B; color: #F0298B; }
.country-pill.active { background: #1D1B39; border-color: #1D1B39; color: #fff; }
.sort-wrap { display: flex; align-items: center; gap: 10px; }
.sort-wrap label { font-size: 13px; font-weight: 600; color: #5C5A72; }
.sort-select { border: 1.5px solid #EDE0B8; border-radius: 20px; padding: 8px 16px; font-size: 13px; font-family: 'Poppins', sans-serif; font-weight: 600; color: #1D1B39; background: #fff; cursor: pointer; }

/* ===== 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 #f0f0f0; }
#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 #f5f5f5; }
.gcw-sr-item:last-child { border: none; }
.gcw-sr-item:hover { background: #FFEAAE; }
.gcw-sr-img { width: 40px; height: 40px; object-fit: contain; border-radius: 6px; background: #f5f5f5; flex-shrink: 0; }
.gcw-sr-img-placeholder { width: 40px; height: 40px; background: #f5f5f5; 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: #F0298B; margin-top: 2px; }
.gcw-sr-footer { padding: 10px 16px; text-align: center; background: #f8f9fa; font-size: 12px; font-weight: 600; color: #F0298B; cursor: pointer; }
.gcw-sr-footer:hover { background: #FFEAAE; }
.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 #f0f0f0; font-weight: 700; font-size: 15px; color: #1D1B39; }
.cart-dropdown-close { background: none; border: none; cursor: pointer; color: #aaa; font-size: 16px; padding: 0; }
.cart-dropdown-close:hover { color: #F0298B; }
.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 #f8f8f8; }
.cart-drop-img { width: 52px; height: 52px; flex-shrink: 0; border-radius: 8px; overflow: hidden; background: #f5f5f5; }
.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: #F0298B; 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: #F0298B; }
.cart-drop-empty { text-align: center; color: #aaa; font-size: 13px; padding: 30px 20px; }
.cart-dropdown-footer { padding: 16px 20px; border-top: 1px solid #f0f0f0; 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: #F0298B; 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: #1D1B39; color: #fff; }

/* ===== TOAST NOTIFICATION ===== */
.gcw-toast { position: fixed; bottom: 28px; right: 28px; background: #1D1B39; 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: #F0298B; border-radius: 4px; flex-shrink: 0; }
.gcw-toast i { color: #F0298B; 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;
  border: 1px solid #EDE0B8; box-shadow: none;
  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: #F0298B;
  background: #FFEAAE;
  font-weight: 600;
}
.woocommerce-MyAccount-content {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #EDE0B8; box-shadow: none;
  padding: 32px;
  font-size: 14px;
  line-height: 1.8;
}
.woocommerce-MyAccount-content p a { color: #F0298B; }
.woocommerce-MyAccount-content .woocommerce-Message { border-top: 3px solid #F0298B; background: #FFEAAE; 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: 'Poppins', sans-serif !important;
  width: 100% !important;
  background: #f9f9f9 !important;
  outline: none !important;
}
.woocommerce-account input:focus { border-color: #F0298B !important; }
.woocommerce-account .woocommerce-Button,
.woocommerce-account button[type="submit"],
.woocommerce-account .button {
  background: #F0298B !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: 'Poppins', sans-serif !important;
}
.woocommerce-account .woocommerce-Button:hover,
.woocommerce-account button[type="submit"]:hover { background: #1D1B39 !important; }

/* Orders table */
.woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.woocommerce-orders-table th {
  background: #f9f9f9;
  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 #f0f0f0; }
.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;
  border: 1px solid #EDE0B8; box-shadow: none;
}
table.cart th {
  background: #f9f9f9;
  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 #f5f5f5;
  vertical-align: middle;
  font-size: 14px;
}
table.cart .product-thumbnail img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 8px;
  background: #f9f9f9;
}
table.cart .product-name a { color: #1D1B39; font-weight: 600; text-decoration: none; }
table.cart .product-name a:hover { color: #F0298B; }
table.cart .product-price, table.cart .product-subtotal { font-weight: 600; color: #F0298B; }
table.cart .product-quantity input { width: 60px; padding: 8px; border: 1px solid #eee; border-radius: 8px; text-align: center; font-size: 14px; font-family: 'Poppins', sans-serif; }
table.cart .product-remove a { color: #ccc; font-size: 18px; text-decoration: none; }
table.cart .product-remove a:hover { color: #F0298B; }
.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: #F0298B !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;
  border: 1px solid #EDE0B8; box-shadow: none;
  padding: 28px;
  min-width: 340px;
}
.cart_totals h2 { font-size: 16px; font-weight: 700; margin-bottom: 20px; color: #1D1B39; }
.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 #f0f0f0; 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: #1D1B39; border-bottom: none; }
.wc-proceed-to-checkout .checkout-button,
.cart_totals .wc-proceed-to-checkout a {
  display: block;
  background: #F0298B !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: #1D1B39 !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: #F0298B !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: #1D1B39;
  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: 'Poppins', sans-serif !important;
  width: 100% !important;
  background: #f9f9f9 !important;
}
.woocommerce-checkout .woocommerce-input-wrapper input:focus { border-color: #F0298B !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;
  border: 1px solid #EDE0B8; box-shadow: none;
  padding: 28px;
}
#order_review h3 { font-size: 16px; font-weight: 700; color: #1D1B39; 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 #f0f0f0; }
#order_review table .order-total th, #order_review table .order-total td { font-weight: 700; font-size: 16px; color: #1D1B39; 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: #f9f9f9; border-radius: 8px; padding: 14px; font-size: 13px; color: #555; margin-top: 8px; }
#place_order {
  display: block;
  width: 100%;
  background: #F0298B !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: 'Poppins', sans-serif !important;
  margin-top: 16px;
  transition: background 0.2s;
}
#place_order:hover { background: #1D1B39 !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: #F0298B;
  --wc-block-components-button-color: #fff;
  --wc-block-global-color-primary: #F0298B;
  --wc-block-global-color-primary-700: #1D1B39;
  --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: #F0298B !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-family: 'Poppins', 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: #1D1B39 !important;
  color: #fff !important;
}

/* Cart layout */
.wc-block-cart { font-family: 'Poppins', sans-serif; }
.wc-block-cart-items__header { background: #f9f9f9; 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 #f0f0f0 !important; padding: 16px !important; }
.wc-block-cart-item__image img { border-radius: 8px !important; }
.wc-block-cart-item__title { font-weight: 600 !important; color: #1D1B39 !important; font-size: 14px !important; }
.wc-block-cart-item__prices .wc-block-components-product-price { color: #F0298B !important; font-weight: 700 !important; }
.wc-block-cart-item__total .wc-block-components-product-price { color: #F0298B !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; border: 1px solid #EDE0B8 !important; box-shadow: none !important; overflow: hidden !important; }
.wc-block-components-totals-item { font-family: 'Poppins', sans-serif; font-size: 14px; }
.wc-block-components-totals-footer-item { font-weight: 700 !important; color: #1D1B39 !important; font-size: 16px !important; }

/* Checkout layout */
.wc-block-checkout__main { font-family: 'Poppins', 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: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  background: #f9f9f9 !important;
  padding: 11px 14px !important;
}
.wc-block-components-text-input input:focus,
.wc-block-components-combobox input:focus { border-color: #F0298B !important; outline: none !important; }
.wc-block-components-text-input label,
.wc-block-components-select label,
.wc-block-components-combobox label { font-family: 'Poppins', 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: 'Poppins', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #1D1B39 !important;
}

/* Links */
.wc-block-checkout a, .wc-block-cart a { color: #F0298B !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 { width: 200px !important; min-width: 200px !important; max-width: 200px !important; flex: 0 0 200px !important; flex-shrink: 0 !important; flex-grow: 0 !important; align-self: flex-start !important; }
body.woocommerce-account .woocommerce-MyAccount-content { flex: 1 1 auto !important; min-width: 0 !important; width: calc(100% - 232px) !important; max-width: 100% !important; box-sizing: border-box !important; }
body.woocommerce-account .woocommerce-MyAccount-navigation {
  background: #fff !important;
  border-radius: 14px !important;
  border: 1px solid #EDE0B8 !important; box-shadow: none !important;
  padding: 8px 0 !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: 12px 20px !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 {
  color: #F0298B !important;
  background: #FFEAAE !important;
  font-weight: 600 !important;
}
body.woocommerce-account .woocommerce-MyAccount-content {
  background: #fff !important;
  border-radius: 14px !important;
  border: 1px solid #EDE0B8 !important; box-shadow: none !important;
  padding: 32px !important;
  font-size: 14px !important;
  font-family: 'Poppins', sans-serif !important;
}

body.woocommerce-account .button,
body.woocommerce-account input[type="submit"] {
  background: #F0298B !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: 'Poppins', sans-serif !important;
  text-decoration: none !important;
}

/* ── CART BLOCKS FIX ───────────────────────────────────────────── */
body.woocommerce-cart .wc-page-wrapper { padding: 40px !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;
  border: 1px solid #EDE0B8 !important; box-shadow: none !important;
  overflow: hidden !important;
}
body.woocommerce-cart .wc-block-cart-items__header {
  background: #f9f9f9 !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 #f0f0f0 !important;
}
body.woocommerce-cart .wc-block-cart-item {
  padding: 20px !important;
  border-bottom: 1px solid #f5f5f5 !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: #f9f9f9 !important;
}
body.woocommerce-cart .wc-block-cart-item__product a {
  color: #1D1B39 !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-decoration: none !important;
}
body.woocommerce-cart .wc-block-cart-item__product a:hover { color: #F0298B !important; }
body.woocommerce-cart .wc-block-components-product-price { color: #F0298B !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;
  border: 1px solid #EDE0B8 !important; box-shadow: none !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 #f0f0f0 !important;
}
body.woocommerce-cart .wc-block-components-totals-footer-item {
  font-weight: 700 !important;
  font-size: 16px !important;
  color: #1D1B39 !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: #F0298B !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: #1D1B39; margin-bottom: 6px; }
.gcw-cart-subtitle { font-size: 14px; color: #888; margin-bottom: 24px; }

/* Product cards */
.gcw-cart-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #EDE0B8; box-shadow: none;
  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: #f5f5f5;
  flex-shrink: 0;
}
.gcw-cart-card-info { flex: 1; min-width: 0; }
.gcw-cart-card-name { font-size: 15px; font-weight: 700; color: #1D1B39; margin-bottom: 8px; }
.gcw-cart-badge {
  display: inline-block;
  background: #F0298B;
  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: #F0298B; 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: #F0298B; }

/* 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: #F0298B;
  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;
  border: 1px solid #EDE0B8; box-shadow: none;
  padding: 28px;
}
.gcw-order-title { font-size: 18px; font-weight: 800; color: #1D1B39; 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: #1D1B39; }
.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: #1D1B39 !important; }
.gcw-buy-btn {
  display: block;
  background: #F0298B;
  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: #1D1B39; color: #fff; }

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


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

/* Remove blue top border on notices */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info {
  border-top: 3px solid #F0298B !important;
  background: #FFEAAE !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: #F0298B !important; }

/* Orders table */
body.woocommerce-account .woocommerce-orders-table {
  width: 100% !important;
  border-collapse: collapse !important;
  font-size: 14px !important;
  font-family: 'Poppins', sans-serif !important;
}
body.woocommerce-account .woocommerce-orders-table thead th {
  background: #f9f9f9 !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 #f0f0f0 !important;
}
body.woocommerce-account .woocommerce-orders-table tbody td {
  padding: 14px 16px !important;
  border-bottom: 1px solid #f5f5f5 !important;
  vertical-align: middle !important;
  color: #333 !important;
}
body.woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell-order-number a {
  color: #F0298B !important;
  font-weight: 700 !important;
}
body.woocommerce-account .woocommerce-orders-table .button,
body.woocommerce-account .woocommerce-orders-table a.button {
  background: #F0298B !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: #f9f9f9 !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 #f0f0f0 !important;
}
body.woocommerce-account .woocommerce-MyAccount-downloads td {
  padding: 14px 16px !important;
  border-bottom: 1px solid #f5f5f5 !important;
  vertical-align: middle !important;
}
body.woocommerce-account .woocommerce-MyAccount-downloads .button,
body.woocommerce-account .woocommerce-MyAccount-downloads a.button {
  background: #F0298B !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: #1D1B39 !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: #F0298B !important; font-size: 13px !important; font-weight: 600 !important; text-decoration: none !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;
}

/* 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 .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;
  border: 1px solid #EDE0B8 !important; box-shadow: none !important;
  padding: 32px !important;
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
  background: #fff !important;
  border-radius: 14px !important;
  border: 1px solid #EDE0B8 !important; box-shadow: none !important;
  overflow: hidden !important;
}

/* Section headings */
body.woocommerce-checkout .wc-block-components-checkout-step__title {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #1D1B39 !important;
  font-family: 'Poppins', 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: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  background: #f9f9f9 !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus { border-color: #F0298B !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: 'Poppins', sans-serif !important; font-weight: 600 !important; color: #1D1B39 !important; }
body.woocommerce-checkout .wc-block-components-order-summary-item__individual-prices { color: #F0298B !important; font-weight: 600 !important; }
body.woocommerce-checkout .wc-block-components-totals-item { font-family: 'Poppins', 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: #1D1B39 !important; }

/* Place order button */
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  background: #F0298B !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  font-family: 'Poppins', 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: #1D1B39 !important; }

/* Payment error notice */
body.woocommerce-checkout .wc-block-components-notice-banner.is-error {
  border-radius: 8px !important;
  font-size: 13px !important;
  font-family: 'Poppins', 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) {
  .navbar-inner { padding: 12px 20px; }
  .search-bar { max-width: 280px; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .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; }
}


@media (max-width: 970px) {
.steps-grid { grid-template-columns: 1fr; }}

@media (max-width: 820px) {
.sp-love-chips {
    justify-content: flex-start;
}
.sp-love-chip {
    justify-content: flex-start;
    width: auto;
}
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  .sp-feature-item {
    justify-content: flex-start;
}

  /* NAVBAR */
  .navbar-inner { padding: 10px 16px; flex-wrap: wrap; gap: 10px; }
  .logo { order: 1; }
  .nav-actions { order: 2; gap: 10px; }
  .search-bar { order: 3; flex: 0 0 100%; max-width: 100%; }
  .nav-username { display: none; }
  .nav-btn { padding: 7px 14px; font-size: 12px; }

  /* SECTIONS */
  section { padding: 40px 20px; }
  .section-title { font-size: 24px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-static { padding: 20px 16px 0; }
  .hero-static-text { padding: 24px; }
  .hero-static-text h1 { font-size: 30px; }
  .hero-stats { gap: 24px; }
  .feature-strip-inner { gap: 16px 24px; padding: 16px 20px; }
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .tile-grid--split { grid-template-columns: 1fr; }
  .tile-card--large { height: 260px; }
  .tile-stack .tile-card { max-width: 100%; height: 220px; }
  .category-icon-row { grid-template-columns: repeat(2, 1fr); }
  .how-it-works-inner { flex-direction: column; gap: 24px; padding: 24px; }
  .how-it-works-left { flex: 1; }
  
  .corporate-section .section-inner { flex-direction: column; }
  .about-mission{padding: 30px}
  .presence-grid{grid-template-columns: 1fr;}

  /* PRODUCT GRID */
  .shop-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .gift-no-img { height: 140px; }
  .gift-card-name { font-size: 12px; }
  .listing-hero { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .listing-count-pill { width: 100%; text-align: left; }

  /* SINGLE PRODUCT */
  .single-product-page { padding: 0; }
  .single-product-inner { padding: 20px 16px; }
  .sp-grid { grid-template-columns: 1fr !important; gap: 20px; }
  .sp-image { order: 1; }
  .sp-details { order: 2; }
  .sp-title { font-size: 24px; }
  .sp-denom-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .sp-features-row { flex-direction: column; gap: 16px; }
  .sp-cta-row { flex-direction: column; }
  .sp-related-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .sp-related .shop-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* FOOTER */
  footer { padding: 30px 16px 16px; }
  .footer-col p { font-size: 12px; }

  /* CART PAGE */
  .gcw-cart-page { padding: 20px 16px; }
  .gcw-cart-inner { flex-direction: column; }
  .gcw-cart-right { width: 100%; }
  .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: 8px !important; }
  body.woocommerce-account .woocommerce-MyAccount-navigation li a { padding: 8px 14px !important; 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-layout { flex-direction: column !important; }
  body.woocommerce-checkout .wc-block-components-sidebar { width: 100% !important; 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; }
}

@media (max-width: 650px) {
  .footer-top { grid-template-columns: 1fr; 
  }
  .footer-top, .footer-bottom, .footer-logo, .footer-payments {
    justify-content: center;
}
  .footer-brand p, .footer-col {
    text-align: center;
}
.footer-newsletter{
  max-width: none;
}
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 480px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .gift-no-img { height: 120px; }
  .listing-hero h1 { font-size: 28px; }
  .listing-page { padding-left: 20px; padding-right: 20px; }
  .footer-top { 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 #f0f0f0;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #888;
  cursor: pointer;
}

.mobile-menu-search {
  padding: 14px 20px;
  border-bottom: 1px solid #f0f0f0;
}
.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: #F0298B; font-size: 14px; }
.mobile-menu-search input {
  border: none;
  outline: none;
  font-size: 14px;
  width: 100%;
  font-family: 'Poppins', 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 #f8f8f8;
  transition: color 0.15s;
}
.mobile-menu-nav a:hover { color: #F0298B; }

.mobile-menu-footer {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #f0f0f0;
}
.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: #F0298B; color: #fff; }
.mobile-menu-btn--dark    { background: #1D1B39; 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 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; }
  .nav-links--desktop { display: none !important; }
  .search-bar { display: none !important; }
  .navbar-inner { flex-wrap: nowrap; padding: 20px; }
  .hero-static-inner { flex-direction: column; gap: 40px; }
  .hero-static-visual { order: -1; width: 100%; max-width: 100%; }
}
@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: #1D1B39; }

/* ── 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: #1D1B39;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .slider-btn:hover { background: #F0298B; 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;
  }
}
@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: 400px) {
  .shop-grid.is-slider .gift-card-item,
  .shop-grid.is-slider li.product {
    flex: 0 0 100% !important;
    min-width: 100% !important;
  }
}


@media screen and (max-width: 460px) {
  .section-title { font-size: 22px; }
}

@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: 400px) {
  .footer-top, .footer-bottom { padding-left: 10px; padding-right: 10px; }
  .contact-hero { padding: 32px 16px 24px; }
  .contact-section { padding: 16px 16px 40px; }
  .contact-details, .contact-form-box { padding: 24px 20px; }
  .category-icon-row {grid-template-columns: 1fr; }
  .corporate-text {padding: 30px; }
  .hero-stats { flex-direction:column; }
  .contact-value { font-size: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: 1px solid #EDE0B8; border-radius: 20px; box-shadow: none; padding: 48px 40px; text-align: center; }
.gcw-ty-icon { margin-bottom: 24px; }
.gcw-ty-title { font-size: 28px; font-weight: 700; color: #1D1B39; 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: #f3f4f6; 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: #1D1B39; word-break: break-all; }
.gcw-ty-total { color: #F0298B !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 #f3f4f6; }
.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: #1D1B39; }
.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: #1D1B39; 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: #F0298B; color: #fff; }
.gcw-ty-btn--primary:hover { background: #1D1B39; color: #fff; }
.gcw-ty-btn--outline { background: transparent; color: #1D1B39; border: 2px solid #EDE0B8; }
.gcw-ty-btn--outline:hover { border-color: #1D1B39; }
.gcw-ty-failed h2 { color: #F0298B; }
.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: #F0298B; }
/* 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; }


.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;
}