/*
Theme Name: Go Clein Child
Theme URI: https://goclein.com/
Description: Child theme for Go Clein eCommerce website.
Author: Go Clein
Version: 1.0
Text Domain: goclein-child
Template: oceanwp

*/

/* ================= Go Clein Header Styles ================= */
:root{
  --gc-bg:#020617;
  --gc-bg-soft:#0b1220;
  --gc-accent-blue:#2dd4ff;
  --gc-accent-green:#22c55e;
  --gc-text:#f9fafb;
  --gc-text-muted:#9ca3af;
  --gc-border:#1f2937;
  --gc-radius-lg:18px;
  --gc-radius-md:12px;
  --gc-radius-pill:999px;
  --gc-shadow-soft:0 18px 40px rgba(15,23,42,.45);
  --gc-wrap:1400px;
}

.gc-header-shell,
.gc-header-shell *{
  box-sizing:border-box;
}

.gc-header-shell{
  position:sticky;
  top:0;
  z-index:999;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Poppins",sans-serif;
}

.gc-header-bar{
  background:var(--gc-bg);
  border-bottom:1px solid var(--gc-border);
}

.gc-header-inner{
  max-width:var(--gc-wrap);
  margin:0 auto;
  padding:10px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

/* Logo */
.gc-logo{
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
}
.gc-logo img{
  height:50px;
  width:auto;
  display:block;
}


/* Desktop nav */
.gc-nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.gc-nav > ul{
  display:flex;
  align-items:center;
  gap:18px;
  list-style:none;
  margin:0;
  padding:0;
}
.gc-nav > ul > li{
  position:relative;
}
.gc-nav > ul > li > a{
  color:#FFF;
  font-size:14px;
  text-decoration:none;
  font-weight:500;
  padding:6px 0;
  display:inline-flex;
  align-items:center;
  gap:6px;
  transition:color .25s ease;
}
.gc-nav > ul > li > a:hover{
  color:var(--gc-accent-blue);
}

/* Mega menu core */
.gc-has-mega > a i{
  font-size:11px;
}
/* Mega menu core – desktop hover fix */
.gc-has-mega{
  position:relative;
}

/* Dropdown */
.gc-mega{
  position:absolute;
  left:50%;
  top:100%;                 /* stick directly under the menu item */
  transform:translateX(-50%);
  margin-top:0;             /* remove the gap that breaks hover */
  background:var(--gc-bg-soft);
  border-radius:var(--gc-radius-lg);
  border:1px solid var(--gc-border);
  box-shadow:var(--gc-shadow-soft);
  padding:18px 20px;
  display:none;
  min-width:520px;
  z-index:1000;             /* stay above page content */
}

/* Show on hover / focus */
.gc-has-mega:hover .gc-mega,
.gc-has-mega:focus-within .gc-mega{
  display:block;
}

/* Hover bridge so menu doesn't disappear when moving the mouse down */
.gc-has-mega .gc-mega::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-14px;                /* height of the invisible bridge */
  height:14px;
}


/* Card-style mega menu with images */
.gc-mega.gc-mega-with-img{
  padding:18px 20px 20px;
}

.gc-mega-grid-cards{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.gc-mega-card{
  display:flex;
  flex-direction:column;
  gap:10px;
  text-decoration:none;
  background:rgba(15,23,42,0.9);
  border-radius:16px;
  border:1px solid rgba(148,163,184,0.25);
  padding:10px;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.gc-mega-thumb{
  width:100%;
  aspect-ratio:1 / 1;      /* fixed 1:1 area */
  border-radius:12px;
  overflow:hidden;
  background:#020617;
}
.gc-mega-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1.02);
  transition:transform .35s ease;
}

.gc-mega-meta{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.gc-mega-title{
  font-size:15px;
  font-weight:600;
  color:#fff;
}
.gc-mega-desc{
  font-size:13px;
  color:#fff;
}

.gc-mega-card:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(15,23,42,.6);
  border-color:var(--gc-accent-blue);
  background:linear-gradient(135deg,rgba(45,212,255,0.12),rgba(34,197,94,0.10));
}
.gc-mega-card:hover .gc-mega-thumb img{
  transform:scale(1.08);
}

/* Header actions (search + icons) */
.gc-header-actions{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:260px;
  justify-content:flex-end;
}

.gc-search-wrap{
  flex:1;
  position:relative;
}
.gc-search-form{
  display:flex;
  align-items:center;
  background:var(--gc-bg-soft);
  border-radius:var(--gc-radius-pill);
  border:1px solid var(--gc-border);
  padding:4px 10px;
  gap:6px;
}
.gc-search-form i{
  font-size:13px;
  color:var(--gc-text-muted);
}
.gc-search-form input[type="search"]{
  flex:1;
  border:none;
  background:transparent;
  color:var(--gc-text);
  font-size:13px;
  padding:4px 2px;
  outline:none;
}
.gc-search-form input::placeholder{
  color:var(--gc-text-muted);
}
.gc-search-form button{
  border:none;
  border-radius:var(--gc-radius-pill);
  padding:6px 12px;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:600;
  cursor:pointer;
  background:linear-gradient(135deg,var(--gc-accent-blue),var(--gc-accent-green));
  color:#020617;
}

/* Icon buttons */
.gc-icon-btn{
  position:relative;
  width:32px;
  height:32px;
  border-radius:999px;
  border:1px solid var(--gc-border);
  background:var(--gc-bg-soft);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#ffff;
  text-decoration:none;
  font-size:14px;
  cursor:pointer;
  transition:background .2s ease,border-color .2s ease,transform .1s ease;
}
.gc-icon-btn:hover{
  background:linear-gradient(135deg,var(--gc-accent-blue),var(--gc-accent-green));
  border-color:transparent;
  color:#020617;
  transform:translateY(-1px);
}

.gc-cart-link{
  position:relative;
}
.gc-cart-count{
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:17px;
  height:17px;
  padding:0 4px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--gc-accent-green),var(--gc-accent-blue));
  color:#020617;
  font-size:11px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Mobile elements */
.gc-burger{
  display:none;
}
.gc-mobile-menu{
  display:none;
  background:var(--gc-bg-soft);
  border-top:1px solid var(--gc-border);
}
.gc-mobile-menu-inner{
  max-width:var(--gc-wrap);
  margin:0 auto;
  padding:10px 16px 16px;
}
.gc-mobile-menu ul{
  list-style:none;
  margin:0;
  padding:0;
}
.gc-mobile-menu > .gc-mobile-menu-inner > ul > li{
  border-bottom:1px solid rgba(31,41,55,.7);
}
.gc-mobile-parent{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  color:var(--gc-text);
  font-size:14px;
  font-weight:500;
}
.gc-mobile-parent span{
  display:flex;
  align-items:center;
  gap:8px;
}
.gc-mobile-parent button{
  border:none;
  background:none;
  color:var(--gc-text-muted);
  font-size:14px;
  cursor:pointer;
}
.gc-mobile-sub{
  display:none;
  padding:0 0 10px 4px;
}
.gc-mobile-sub ul li a{
  display:block;
  padding:6px 0;
  color:var(--gc-text-muted);
  font-size:13px;
  text-decoration:none;
}
.gc-mobile-sub ul li a:hover{
  color:var(--gc-accent-green);
}
.gc-mobile-leaf a{
  display:block;
  padding:10px 0;
  color:var(--gc-text-muted);
  text-decoration:none;
  font-size:14px;
}
.gc-mobile-leaf a:hover{
  color:var(--gc-accent-blue);
}

.gc-mobile-menu.is-open{
  display:block;
}
.gc-mobile-parent.is-open + .gc-mobile-sub{
  display:block;
}

/* Mobile search panel */
.gc-search-toggle{
  display:none; /* desktop hidden */
}

.gc-search-panel{
  display:none;
  background:var(--gc-bg);
  border-bottom:1px solid var(--gc-border);
  padding:8px 16px 10px;
}
.gc-search-panel.is-open{
  display:block;
}
.gc-search-panel .gc-search-form{
  max-width:var(--gc-wrap);
  margin:0 auto;
}

/* Responsive */
@media (max-width:1100px){
  .gc-mega-grid-cards{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}
@media (max-width:900px){
  .gc-nav{
    display:none;
  }
  .gc-header-inner{
    padding:8px 14px;
  }
  .gc-logo img{
    height:34px;
  }
  .gc-logo-text{
    display:none;
  }
  .gc-header-actions{
    justify-content:flex-end;
    gap:8px;
    min-width:auto;
    flex:0 0 auto;
  }
  .gc-search-wrap{
    display:none;     /* hide full bar on mobile */
  }
  .gc-search-toggle{
    display:inline-flex;
  }
  .gc-burger{
    display:inline-flex;
  }
  .gc-mega{
    display:none !important;  /* disable desktop mega on very small screens */
  }
}
@media (max-width:480px){
  .gc-header-inner{
    gap:10px;
  }
  .gc-cart-link,
  .gc-icon-btn{
    width:30px;
    height:30px;
    font-size:13px;
  }
}
/* ================= FOOTER – Futuristic Dark ================= */

/* hide default block footer from Twenty Twenty-Five */
.wp-site-blocks > footer.wp-block-template-part{
  display:none;
}

.gc-footer-shell{
  background:radial-gradient(circle at top, rgba(45,212,255,0.16), transparent 55%),
             radial-gradient(circle at bottom, rgba(34,197,94,0.16), transparent 60%),
             #020617;
  color:var(--gc-text-muted);
  padding:42px 0 12px;
  border-top:1px solid rgba(15,23,42,0.9);
  position:relative;
  overflow:hidden;
}

.gc-footer-wrap{
  max-width:var(--gc-wrap);
  margin:0 auto;
  padding:0 16px 10px;
  position:relative;
  z-index:1;
}

/* glowing line at top of footer */
.gc-footer-glow{
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:70%;
  height:2px;
  background:linear-gradient(90deg,transparent,var(--gc-accent-blue),var(--gc-accent-green),transparent);
  opacity:.6;
}

/* grid layout */
.gc-footer-grid{
  display:grid;
  grid-template-columns:2fr 1.4fr 1.4fr 2fr;
  gap:36px;
}

/* brand column */
.gc-footer-logo img{
  width:130px;
  display:block;
}
.gc-footer-tagline{
  margin-top:6px;
  font-size:11px;
  color:var(--gc-accent-blue);
  letter-spacing:.18em;
}
.gc-footer-text{
  margin-top:12px;
  font-size:13px;
  line-height:1.6;
  color:#fff;
}

/* badges / chips */
.gc-footer-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}
.gc-footer-chip{
  font-size:11px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,0.5);
  background:linear-gradient(135deg,rgba(15,23,42,0.9),rgba(15,23,42,0.6));
  display:inline-flex;
  color:#fff;
  gap:6px;
  color:var(--gc-text-muted);
}
.gc-footer-chip i{
  font-size:11px;
  color:var(--gc-accent-green);
}

/* Social icons */
.gc-footer-social{
  margin-top:18px;
  display:flex;
  gap:14px;
}
.gc-footer-social a{
  width:32px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  border:1px solid rgba(148,163,184,0.45);
  background:rgba(15,23,42,0.9);
  color:#fff;
  transition:background .2s ease, box-shadow .2s ease, border-color .2s ease, transform .2s ease;
  text-decoration:none;          /* remove underline below icons */
}
.gc-footer-social a:hover{
  background:linear-gradient(135deg,var(--gc-accent-blue),var(--gc-accent-green));
  color:#020617;
  border-color:transparent;
  box-shadow:0 10px 30px rgba(15,23,42,0.9);
  transform:translateY(-2px) scale(1.03);
}

/* columns */
.gc-footer-title{
  font-size:14px;
  color:#fff;
  font-weight:600;
  margin-bottom:10px;
  position:relative;
  padding-bottom:8px;
}

/* gradient underline below Product Families / Support / Contact */
.gc-footer-title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:46px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--gc-accent-blue),var(--gc-accent-green));
}

/* utility when needed (not used now, but kept) */
.gc-footer-title-small{
  margin-top:18px;
}

.gc-footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}
.gc-footer-col ul li{
  margin-bottom:6px;
}

/* links + hover animation */
.gc-footer-col ul li a{
  color:#fff;
  text-decoration:none;
  font-size:13px;
  position:relative;
  display:inline-block;
  transition:color .2s ease, transform .2s ease;
}
.gc-footer-col ul li a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-2px;
  width:0;
  height:1px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--gc-accent-blue),var(--gc-accent-green));
  transition:width .22s ease;
}
.gc-footer-col ul li a:hover{
  color:var(--gc-accent-blue);
  transform:translateX(3px);
}
.gc-footer-col ul li a:hover::after{
  width:18px;
}

/* contact block – card style */
.gc-footer-contact-card{
  border-radius:18px;
  border:1px solid rgba(148,163,184,0.4);
  background:radial-gradient(circle at top left,rgba(45,212,255,0.14),transparent 50%),
             radial-gradient(circle at bottom right,rgba(34,197,94,0.16),transparent 55%),
             rgba(15,23,42,0.95);
  box-shadow:0 18px 40px rgba(15,23,42,0.7);
  padding:16px 16px 12px;
  position:relative;
  overflow:hidden;
}
.gc-footer-contact-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  border:1px solid rgba(148,163,184,0.22);
  pointer-events:none;
  opacity:.6;
}

.gc-footer-contact{
  list-style:none;
  padding:0;
  margin:0;
  position:relative;
  z-index:1;
}
.gc-footer-contact-row{
  display:flex;
  gap:10px;
  font-size:13px;
  margin-bottom:12px;
  align-items:flex-start;
}
.gc-footer-contact-row:last-child{
  margin-bottom:2px;
}
.gc-contact-primary{
  padding-bottom:10px;
  border-bottom:1px dashed rgba(148,163,184,0.35);
  margin-bottom:12px;
}

/* add separator between Email & Address */
.gc-contact-divider{
  padding-bottom:10px;
  border-bottom:1px dashed rgba(148,163,184,0.35);
  margin-bottom:12px;
}

/* icon bubble */
.gc-footer-icon-bubble{
  width:32px;
  height:32px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:radial-gradient(circle at 30% 0,rgba(45,212,255,0.8),rgba(34,197,94,0.3));
  box-shadow:0 12px 28px rgba(15,23,42,0.85);
  flex-shrink:0;
}
.gc-footer-icon-bubble i{
  font-size:14px;
  color:#fff;
}

/* text stack */
.gc-footer-contact-text{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.gc-contact-label{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.16em;
  color:#fff;
}
.gc-contact-main{
  font-size:14px;
  color:var(--gc-text);
  font-weight:500;
}
.gc-contact-sub{
  font-size:11px;
  color:#fff;
}
.gc-contact-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:4px;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.14em;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(15,23,42,0.9);
  border:1px solid rgba(45,212,255,0.5);
  color:var(--gc-accent-blue);
}
.gc-footer-contact a{
  color:var(--gc-text);
  text-decoration:none;
  transition:color .2s ease;
}
.gc-footer-contact a:hover{
  color:var(--gc-accent-blue);
}
/* --- FIX CONTACT SPACING & GAP --- */

.gc-footer-contact-row {
  margin-bottom: 24px !important;
}

/* dashed line only for Call and Email (not Address) */
.gc-footer-contact-row.gc-contact-primary,
.gc-footer-contact-row.gc-contact-divider {
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(148,163,184,0.35);
  margin-bottom: 24px !important;
}

/* remove excess bottom space under last (Address) block */
.gc-footer-contact-row:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

/* tighten caption under address */
.gc-footer-contact-text .gc-contact-sub {
  margin-top: 4px;
  display: block;
}

/* Newsletter + payments row */
.gc-footer-extra{
  margin-top:25px;
}
.gc-footer-extra-inner{
  display:flex;
  align-items:flex-end; /* ensures payment graphic aligns to bottom */
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}

/* Newsletter Card — Smaller, compact & fixed width look */
.gc-footer-newsletter{
  flex:1 1 350px;
  max-width:520px;
  border-radius:16px;
  border:1px solid rgba(148,163,184,0.45);
  background:radial-gradient(circle at top left,rgba(45,212,255,0.18),transparent 55%),
             radial-gradient(circle at bottom right,rgba(34,197,94,0.18),transparent 60%),
             rgba(15,23,42,0.95);
  box-shadow:0 12px 32px rgba(15,23,42,0.7);
  padding:18px 22px;
}

/* Titles & text in card */
.gc-footer-news-title{
  font-size:15px;
  font-weight:600;
  color:#fff;
  margin-bottom:4px;
}

.gc-footer-news-text{
  font-size:13px;
  color:rgba(255,255,255,0.9);
  margin-bottom:10px;
  line-height:1.45;
}

/* Email input + subscribe button inline */
.gc-footer-news-fields{
  display:flex;
  align-items:center;
  gap:8px;
}

.gc-footer-news-fields input[type="email"]{
  flex:1;
  border-radius:999px;
  border:1px solid rgba(148,163,184,0.6);
  background:#000814;
  color:#fff;
  font-size:13px;
  padding:9px 12px;
}

.gc-footer-news-fields input::placeholder{
  color:rgba(255,255,255,0.55);
}

.gc-footer-news-fields button{
  border:none;
  border-radius:999px;
  padding:9px 16px;
  font-size:11px;
  text-transform:uppercase;
  font-weight:600;
  letter-spacing:.14em;
  cursor:pointer;
  background:linear-gradient(135deg,var(--gc-accent-blue),var(--gc-accent-green));
  color:#020617;
  display:flex;
  align-items:center;
  gap:6px;
  white-space:nowrap;
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.gc-footer-news-fields button:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 28px rgba(15,23,42,0.9);
  filter:brightness(1.05);
}

/* small label text */
.gc-footer-news-note{
  font-size:11px;
  margin-top:4px;
  color:rgba(255,255,255,0.75);
}

/* PAYMENT BLOCK — aligned bottom */
.gc-footer-payments{
  flex:0 0 auto;
  text-align:right;
  margin-top:auto;
}

/* horizontal policies above payment logos */
.gc-footer-pay-policies{
  font-size:12px;
  
  margin-bottom:6px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:6px;
  flex-wrap:wrap;
}
.gc-footer-pay-policies a{
  color:#fff;
  text-decoration:none;
  position:relative;
  padding-bottom:2px;
  transition:color .2s ease, transform .2s ease;
}
.gc-footer-pay-policies a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:1px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--gc-accent-blue),var(--gc-accent-green));
  transition:width .22s ease;
}
.gc-footer-pay-policies a:hover{
  color:var(--gc-accent-blue);
  transform:translateY(-1px);
}
.gc-footer-pay-policies a:hover::after{
  width:100%;
}

.gc-footer-pay-title{
  font-size:14px;
  font-weight:500;
  color:#fff;
  margin-bottom:4px;
}

.gc-footer-pay-logos img{
  max-width:370px;
  height:auto;
  display:inline-block;
  filter:drop-shadow(0 6px 20px rgba(0,0,0,0.4));
}

/* Mobile responsive alignment */
@media(max-width:768px){
  .gc-footer-extra-inner{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
  }

  .gc-footer-payments{
    text-align:left;
    margin-top:4px;
  }

  .gc-footer-pay-policies{
    justify-content:flex-start;
  }

  .gc-footer-newsletter{
    width:100%;
    max-width:none;
  }
}


/* bottom strip */
.gc-footer-bottom{
  border-top:1px solid rgba(15,23,42,0.9);
  margin-top:36px;
  padding:12px 0 4px;
  background:rgba(2,6,23,0.96);
}
.gc-footer-bottom-inner{
  max-width:var(--gc-wrap);
  margin:0 auto;
  padding:0 16px 4px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.gc-footer-copy{
  font-size:12px;
  color:var(--gc-text-muted);
}

/* center link block removed since policies are now above payments */

.gc-footer-credit{
  font-size:12px;
  color:var(--gc-text-muted);
}
.gc-footer-credit a{
  color:var(--gc-accent-blue);
  text-decoration:none;
  font-weight:500;
}
.gc-footer-credit a:hover{
  color:var(--gc-accent-green);
}

/* responsive */
@media (max-width:1000px){
  .gc-footer-grid{
    grid-template-columns:2fr 1.6fr 2fr;
    gap:28px;
  }
  .gc-footer-contact-col{
    grid-column:1 / -1;
  }
}

@media (max-width:768px){
  .gc-footer-grid{
    grid-template-columns:1fr;
  }
  .gc-footer-brand{
    text-align:center;
  }
  .gc-footer-badges{
    justify-content:center;
  }
  .gc-footer-social{
    justify-content:center;
  }
  .gc-footer-contact-row{
    justify-content:center;
    text-align:left;
  }
  .gc-footer-extra-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .gc-footer-payments{
    text-align:left;
  }
  .gc-footer-bottom-inner{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
}
@media (max-width:768px){
  /* 2-column layout on mobile */
  .gc-footer-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:18px;
  }

  /* Brand full width */
  .gc-footer-brand{
    grid-column:1 / -1;
    text-align:center;
  }

  /* Contact full width */
  .gc-footer-contact-col{
    grid-column:1 / -1;
  }

  /* Center badges + social */
  .gc-footer-badges{ justify-content:center; }
  .gc-footer-social{ justify-content:center; }

  /* Titles underline stays left; keep readable */
  .gc-footer-title{ text-align:left; }
}
@media (max-width:768px){
  .gc-footer-logo{
    display:flex;
    justify-content:center;
  }
  .gc-footer-logo img{
    margin:0 auto;
  }
}
/* Contact rows: consistent layout */
.gc-footer-contact-row{
  align-items:flex-start;
  gap:12px;
}

/* Make icon bubble fixed and aligned */
.gc-footer-icon-bubble{
  flex:0 0 36px;
  width:36px;
  height:36px;
}

/* Keep text column consistent */
.gc-footer-contact-text{
  flex:1;
  min-width:0;
  gap:4px; /* a bit more breathing */
}

.gc-contact-label{
  line-height:1.1;
  margin:0;
}

.gc-contact-main{
  line-height:1.2;
  margin:0;
}

/* Prevent the "Tap to connect" pill from pushing alignment weirdly */
.gc-contact-pill{
  align-self:flex-start;
}
/* Bottom strip: remove extra vertical space */
.gc-footer-bottom{
  margin-top:22px;     /* was 36px */
  padding:10px 0 8px;  /* reduce */
}

.gc-footer-copy,
.gc-footer-credit{
  margin:0;            /* IMPORTANT */
  line-height:1.2;
}

/* On mobile stack tightly */
@media (max-width:768px){
  .gc-footer-bottom-inner{
    gap:6px;
    padding-bottom:8px;
  }

}
/* ===== FIX: Newsletter flex issue (MOBILE ONLY) ===== */
@media (max-width:768px){
  .gc-footer-newsletter{
    flex: 0 0 auto !important;   /* stop stretching */
    width:100%;
    max-width:100%;
    align-self:flex-start;
  }
}

/* ============ GoClein – Product Page (gpp-) v6 Premium ============ */

.gpp-page{
  background:
    radial-gradient(circle at top left,#ecfeff 0,#ffffff 40%),
    radial-gradient(circle at bottom right,#dcfce7 0,#f3f4f6 55%),
    #f4f4f5;
  color:#0f172a;
  font-family:"Poppins",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.gpp-inner{
  max-width:1350px;
  margin:0 auto;
  padding:60px 18px 90px;
}

/* Remove SALE badge */
.gpp-page .onsale{display:none !important;}

/* HERO */
.gpp-hero{
  display:flex;
  gap:38px;
  align-items:flex-start;
  margin-bottom:28px;
}
.gpp-hero-left{flex:1.05;}
.gpp-hero-right{flex:1.25; display:flex; flex-direction:column;}

/* =========================================================
   GoClein – WooCommerce Product Gallery FIX (Stable)
   ========================================================= */

/* OUTER WRAPPER */
.gpp-gallery-wrap{
  background:#fff;
  border-radius:22px;
  border:1px solid rgba(148,163,184,.55);
  box-shadow:0 18px 50px rgba(15,23,42,.08);
  padding:16px;
}

/* RESET any theme overrides */
.gpp-gallery-wrap *{
  box-sizing:border-box;
}

/* =========================================================
   MAIN GALLERY CONTAINER
   ========================================================= */
.gpp-gallery-wrap .woocommerce-product-gallery{
  position:relative;
  width:100%;
  margin:0;
}

/* WRAPPER MUST NOT be flex-column */
.gpp-gallery-wrap .woocommerce-product-gallery__wrapper{
  position:relative;
  width:100%;
  overflow:hidden;
}

/* =========================================================
   MAIN IMAGE (CRITICAL FIX)
   ========================================================= */
.gpp-gallery-wrap .woocommerce-product-gallery__image{
  display:none;
  width:100%;
  text-align:center;
}

.gpp-gallery-wrap .woocommerce-product-gallery__image.flex-active-slide{
  display:block;
}

/* Image itself */
.gpp-gallery-wrap .woocommerce-product-gallery__image img{
  max-width:100%;
  height:auto;
  margin:0 auto;
  display:block;
  object-fit:contain;
}

/* =========================================================
   THUMBNAILS – CENTERED ROW
   ========================================================= */
.gpp-gallery-wrap .flex-control-thumbs{
  display:flex !important;
  justify-content:center;
  gap:10px;
  margin:16px 0 0;
  padding:0;
  list-style:none;
  flex-wrap:nowrap;
  overflow-x:auto;
}

/* Remove floats (IMPORTANT) */
.gpp-gallery-wrap .flex-control-thumbs li{
  float:none !important;
  width:auto !important;
  margin:0 !important;
}

/* Thumbnail images */
.gpp-gallery-wrap .flex-control-thumbs img{
  width:64px;
  height:64px;
  object-fit:contain;
  border-radius:10px;
  border:1px solid rgba(148,163,184,.4);
  padding:4px;
  cursor:pointer;
  opacity:.7;
  transition:all .25s ease;
  background:#fff;
}

/* Active thumb */
.gpp-gallery-wrap .flex-control-thumbs img.flex-active{
  opacity:1;
  border-color:#22c55e;
  box-shadow:0 0 0 2px rgba(34,197,94,.15);
}

/* Hover */
.gpp-gallery-wrap .flex-control-thumbs img:hover{
  opacity:1;
}

/* =========================================================
   LEFT / RIGHT ARROWS (Woo default nav)
   ========================================================= */
.gpp-gallery-wrap .flex-direction-nav a{
  width:40px;
  height:40px;
  border-radius:999px;
  background:#ffffff;
  box-shadow:0 8px 22px rgba(15,23,42,.2);
  opacity:1;
  display:flex !important;
  align-items:center;
  justify-content:center;
  color:#020617 !important;
}

.gpp-gallery-wrap .flex-direction-nav a::before{
  font-size:18px;
  color:#020617;
}

.gpp-gallery-wrap .flex-direction-nav .flex-prev{
  left:10px;
}

.gpp-gallery-wrap .flex-direction-nav .flex-next{
  right:10px;
}

/* =========================================================
   ZOOM / LIGHTBOX ICON
   ========================================================= */
.gpp-gallery-wrap .woocommerce-product-gallery__trigger{
  position:absolute;
  top:14px;
  right:14px;
  width:36px;
  height:36px;
  border-radius:999px;
  background:#020617;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9;
}

.gpp-gallery-wrap .woocommerce-product-gallery__trigger::before{
  color:#fff;
  font-size:14px;
}

/* =========================================================
   MOBILE SAFETY
   ========================================================= */
@media(max-width:640px){
  .gpp-gallery-wrap{
    padding:12px;
  }

  .gpp-gallery-wrap .flex-control-thumbs img{
    width:56px;
    height:56px;
  }
}
/* ================= MOBILE: stop gallery overflow ================= */
@media (max-width: 768px){


  /* thumbnails: centered + scroll inside, not outside */
  .gpp-gallery-wrap .flex-control-thumbs{
    max-width:100%;
    width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    scroll-snap-type:x mandatory;
    padding-bottom:6px;
    justify-content:center
  }
  .gpp-gallery-wrap .flex-control-thumbs li{
    scroll-snap-align:start;
    flex:0 0 auto;
  }

  /* arrows stay inside box */
  .gpp-gallery-wrap .flex-direction-nav a{
    top:50%;
    transform:translateY(-50%);
  }
  .gpp-gallery-wrap .flex-direction-nav .flex-prev{ left:8px; }
  .gpp-gallery-wrap .flex-direction-nav .flex-next{ right:8px; }

  /* optional: slightly smaller thumbs on phones */
  .gpp-gallery-wrap .flex-control-thumbs img{
    width:54px;
    height:54px;
  }
}

/* extra safety for very small devices */
@media (max-width: 420px){
  .gpp-gallery-wrap{ padding:12px; }
  .gpp-gallery-wrap .flex-control-thumbs img{
    width:50px;
    height:50px;
  }
}


/* breadcrumb */
.gpp-breadcrumb{margin-bottom:8px;}
.gpp-bc-nav{
  font-size:12px;
  color:#64748b;
}
.gpp-bc-nav a{
  color:#64748b;
  text-decoration:none;
}
.gpp-bc-nav a:hover{color:#0ea5e9;}
.gpp-bc-sep{padding:0 8px; opacity:.6;}

/* title + line */
.gpp-title{
  font-size:28px;
  font-weight:650;
  margin:0;
  line-height:1.25;
}
.gpp-title-line{
  height:1px;
  width:100%;
  background:linear-gradient(90deg, rgba(34,211,238,.65), rgba(34,197,94,.65), rgba(148,163,184,.25));
  margin:12px 0 14px;
}

/* price row */
.gpp-price-row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.gpp-price{
  font-size:34px;
  font-weight:700;
  color:#16a34a;
}
.gpp-price del{font-size:14px; color:#94a3b8;}
.gpp-sku{
  font-size:12px;
  color:#64748b;
  background:rgba(255,255,255,.7);
  border:1px solid rgba(148,163,184,.35);
  padding:6px 10px;
  border-radius:999px;
}
.gpp-sku span{font-weight:600; color:#0f172a;}

/* Specs heading */
.gpp-hero-blockhead{
  margin-top:8px;
  margin-bottom:10px;
}
.gpp-hero-kicker{
  font-size:11px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:#64748b;
  font-weight:700;
}
.gpp-hero-head{
  font-size:16px;
  font-weight:650;
  color:#0f172a;
  margin-top:4px;
}

/* SPECS GRID (premium) */
.gpp-hero-specs{
  border-radius:18px;
  background:linear-gradient(135deg, rgba(34,211,238,.08), rgba(34,197,94,.08));
  border:1px solid rgba(148,163,184,.55);
  box-shadow:0 12px 30px rgba(15,23,42,.07);
  overflow:hidden;
  margin-bottom:12px;
}

.gpp-hero-specs-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  background:#fff;
}

.gpp-hero-spec-item{
  padding:14px 12px 12px;
  text-align:center;
  border-right:1px solid rgba(148,163,184,.25);
  border-bottom:1px solid rgba(148,163,184,.25);
}
.gpp-hero-spec-item:nth-child(3n){border-right:none;}

.gpp-hero-spec-label{
  font-size:13px;
  font-weight:750;
  color:#0f172a;
  margin-bottom:4px;
}
.gpp-hero-spec-value{
  font-size:12px;
  color:#475569;
  line-height:1.35;
}

/* Add to cart wrap */
.gpp-addtocart-wrap{
  margin-top:6px;
  width:100%;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.gpp-addtocart-wrap form.cart{
  width:100% !important;
  display:flex !important;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  margin:0 !important;
  padding:0 !important;
}

.gpp-addtocart-wrap .quantity{
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 !important;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.45);
  overflow:hidden;
  background:#fff;
  box-shadow:0 6px 18px rgba(15,23,42,.05);
}

.gpp-addtocart-wrap .quantity .minus,
.gpp-addtocart-wrap .quantity .plus{
  display:flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:38px;
  border:none;
  background:#f1f5f9;
  font-size:16px;
  line-height:1;
  padding:0;
  cursor:pointer;
}
.gpp-addtocart-wrap .quantity .qty{
  width:60px;
  height:38px;
  border:none;
  padding:0;
  text-align:center;
  font-size:13px;
  background:#ffffff;
}

/* Add to cart button */
.gpp-addtocart-wrap .single_add_to_cart_button,
.gpp-addtocart-wrap .single_add_to_cart_button.button{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  padding:0 26px !important;
  min-height:38px;
  border-radius:999px !important;
  border:2px solid #fff !important;
  background-image:linear-gradient(135deg,#22c55e,#22d3ee) !important;
  box-shadow:0 0 0 1px rgba(15,23,42,.18), 0 12px 26px rgba(34,197,94,.40);
  color:#fff !important;
  font-size:13px !important;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.14em;
}
.gpp-addtocart-wrap .single_add_to_cart_button:before,
.gpp-addtocart-wrap .single_add_to_cart_button:after{content:none !important;}

/* Buy now */
.gpp-buy-now-btn{
  width:100%;
  max-width:580px;
  border-radius:999px;
  padding:12px 18px;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.14em;
  border:none;
  background:#020617;
  color:#f8fafc;
  cursor:pointer;
  box-shadow:0 14px 32px rgba(15,23,42,.25);
}
.gpp-buy-now-btn:hover{filter:brightness(1.05);}

/* ================== Highlight Image (below hero) ================== */
.gpp-highlight{ margin:18px 0 22px; }

.gpp-highlight-media{
  border-radius:18px;
  border:1px solid rgba(148,163,184,.35);
  background:linear-gradient(180deg,#f8fafc,#ffffff);
  padding:8px;
  overflow:hidden;
}
.gpp-highlight-img{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
  border-radius:14px;
}


/* Sections */
.gpp-sections{display:flex; flex-direction:column; gap:18px;}
.gpp-main-cols{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

/* card base */
.gpp-card{
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(148,163,184,.55);
  box-shadow:0 16px 40px rgba(15,23,42,.06);
  padding:18px 18px 16px;
}
.gpp-card-label{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:#64748b;
  margin-bottom:6px;
  font-weight:800;
}
.gpp-card-title{
  margin:0 0 10px;
  font-size:18px;
  font-weight:750;
  color:#0f172a;
}

/* WHY UI */
.gpp-card-why{
  background:
    radial-gradient(circle at top left, rgba(34,211,238,.07), transparent 60%),
    radial-gradient(circle at bottom right, rgba(34,197,94,.07), transparent 60%),
    #ffffff;
}
.gpp-why-list{list-style:none; margin:0; padding:0;}
.gpp-why-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:10px 10px;
  border-radius:16px;
  border:1px solid rgba(148,163,184,.25);
  background:rgba(248,250,252,.85);
  box-shadow:0 8px 18px rgba(15,23,42,.04);
  margin-bottom:10px;
}
.gpp-why-list li:last-child{margin-bottom:0;}
.gpp-why-icon{
  width:30px;
  height:30px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#22d3ee,#22c55e);
  color:#fff;
  flex:0 0 30px;
  margin-top:1px;
}
.gpp-why-text{
  font-size:13px;
  color:#0f172a;
  line-height:1.55;
  font-weight:550;
}

/* description */
.gpp-description p{
  margin:0 0 8px;
  font-size:13px;
  line-height:1.75;
  color:#0f172a;
}
.gpp-description p:last-child{margin-bottom:0;}

.gpp-empty{margin:0; font-size:13px; color:#64748b;}

/* USAGE UI */
.gpp-usage-card{
  padding:18px;
}
.gpp-usage-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
  margin-top:8px;
}
.gpp-usage-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:14px 12px;
  border-radius:18px;
  border:1px solid rgba(148,163,184,.30);
  background:linear-gradient(135deg, rgba(34,211,238,.06), rgba(34,197,94,.05));
  box-shadow:0 10px 22px rgba(15,23,42,.05);
}
.gpp-usage-ico{
  width:38px; height:38px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(2,6,23,.92);
  color:#fff;
  flex:0 0 38px;
}
.gpp-usage-label{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-weight:800;
  color:#64748b;
  margin-bottom:4px;
}
.gpp-usage-val{
  font-size:13px;
  font-weight:650;
  color:#0f172a;
  line-height:1.4;
}

/* Responsive */
@media(max-width:960px){
  .gpp-hero{flex-direction:column; gap:18px;}
  .gpp-main-cols{grid-template-columns:1fr;}
  .gpp-usage-grid{grid-template-columns:1fr;}
  .gpp-hero-specs-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .gpp-hero-spec-item:nth-child(3n){border-right:1px solid rgba(148,163,184,.25);}
  .gpp-hero-spec-item:nth-child(2n){border-right:none;}
}
@media(max-width:640px){
  .gpp-price{font-size:28px;}
  .gpp-hero-specs-grid{grid-template-columns:1fr;}
  .gpp-hero-spec-item{
    text-align:left;
    display:flex;
    justify-content:space-between;
    gap:12px;
  }
  .gpp-hero-spec-label{font-size:12px; margin:0;}
  .gpp-hero-spec-value{font-size:12px; text-align:right;}
}

/* ===== Shipping panel (below Product Description) ===== */
.gpp-ship-panel{
  margin-top:14px;
  border-radius:22px;
  background:
    radial-gradient(circle at top left, rgba(34,211,238,.10), transparent 55%),
    radial-gradient(circle at bottom right, rgba(34,197,94,.10), transparent 55%),
    rgba(255,255,255,.90);
  border:1px solid rgba(148,163,184,.50);
  box-shadow:0 16px 40px rgba(15,23,42,.06);
  padding:16px 16px;
}

.gpp-ship-panel-head{margin-bottom:10px;}
.gpp-ship-kicker{
  font-size:11px;
  letter-spacing:.20em;
  text-transform:uppercase;
  font-weight:800;
  color:#64748b;
}
.gpp-ship-title{
  margin-top:4px;
  font-size:16px;
  font-weight:750;
  color:#0f172a;
}

.gpp-ship-cards{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}

.gpp-ship-card{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:14px 12px;
  border-radius:18px;
  border:1px solid rgba(148,163,184,.30);
  background:linear-gradient(135deg, rgba(255,255,255,.92), rgba(248,250,252,.92));
  box-shadow:0 10px 22px rgba(15,23,42,.05);
}

.gpp-ship-ico{
  width:40px; height:40px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#020617;
  color:#fff;
  flex:0 0 40px;
}

.gpp-ship-label{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-weight:800;
  color:#64748b;
  margin-bottom:4px;
}
.gpp-ship-val{
  font-size:13px;
  font-weight:700;
  color:#0f172a;
  line-height:1.35;
}

@media(max-width:960px){
  .gpp-ship-cards{grid-template-columns:1fr;}
}

.gpp-ship-panel{
  margin-bottom:14px;
}

/* ================== RELATED PRODUCTS – ARCHIVE STYLE ================== */

.gpp-related-sec{
  margin-top:40px;
}

.gpp-related-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:16px;
  margin-bottom:16px;
}
.gpp-related-label{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:#9ca3af;
}
.gpp-related-title{
  margin:2px 0 0;
  font-size:20px;
  font-weight:600;
  color:#020617;
}
.gpp-related-sub{
  margin:0;
  font-size:13px;
  color:#4b5563;
  max-width:420px;
}

/* Grid same feel as archive */
.gpp-related-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

/* Card container */
.gpp-rel-card{
  position:relative;
  border-radius:20px;
  background:#ffffff;
  border:1px solid rgba(148,163,184,0.45);
  box-shadow:0 10px 26px rgba(15,23,42,0.06);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .16s ease, box-shadow .16s ease;
}
.gpp-rel-card:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 32px rgba(15,23,42,0.08);
}

.gpp-rel-link{
  display:block;
  color:inherit;
  text-decoration:none;
}

/* Media */
.gpp-rel-media{
  position:relative;
  padding:14px 14px 0;
}
.gpp-rel-thumb{
  border-radius:16px;
  background:#f1f5f9;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  padding:14px;
}
.gpp-rel-thumb img{
  width:100%;
  height:auto;
  object-fit:contain;
  display:block;
}

/* Badges */
.gpp-rel-badges{
  position:absolute;
  left:18px;
  top:16px;
  display:flex;
  gap:8px;
}
.gpp-rel-badge{
  display:inline-flex;
  align-items:center;
  padding:4px 9px;
  border-radius:999px;
  font-size:11px;
  background:rgba(15,23,42,0.85);
  color:#e5e7eb;
}
.gpp-rel-badge-sale{
  background:linear-gradient(135deg,#22c55e,#22d3ee);
  color:#ffffff;
}

/* Body */
.gpp-rel-body{
  padding:10px 16px 14px;
  display:flex;
  flex-direction:column;
  gap:8px;
  flex:1;
}
.gpp-rel-title{
  margin:0;
  font-size:14px;
  font-weight:600;
  color:#0f172a;
}

/* Meta row */
.gpp-rel-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:11px;
  color:#6b7280;
}
.gpp-rel-meta span{
  white-space:nowrap;
}

/* Rating */
.gpp-rel-rating{
  display:flex;
  align-items:center;
  gap:6px;
}
.gpp-rel-rating .star-rating{
  margin:0 !important;
  transform:scale(.95);
}
.gpp-rel-rating small{
  font-size:11px;
  color:#6b7280;
}

/* Price row */
.gpp-rel-price-row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
}
.gpp-rel-price{
  font-size:16px;
  font-weight:600;
  color:#16a34a;
}
.gpp-rel-price del{
  font-size:12px;
  color:#9ca3af;
}

/* Chips */
.gpp-rel-chips{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-top:4px;
}
.gpp-rel-chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 8px;
  border-radius:999px;
  background:#f9fafb;
  border:1px solid rgba(226,232,240,0.9);
  font-size:11px;
  color:#4b5563;
}
.gpp-rel-chip i{
  font-size:12px;
  color:#22c55e;
}

/* Footer CTAs */
.gpp-rel-footer{
  padding:10px 16px 14px;
  border-top:1px dashed rgba(226,232,240,0.9);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.gpp-rel-cta{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 13px;
  border-radius:999px;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.14em;
  text-decoration:none;
  border:1px solid rgba(148,163,184,0.8);
  color:#0f172a;
}
.gpp-rel-cta i{
  font-size:12px;
}

/* Responsive */
@media(max-width:1024px){
  .gpp-related-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media(max-width:640px){
  .gpp-related-grid{
    grid-template-columns:1fr;
  }
}
/* ========== GoClein – Cart Page Layout ========== */
:root{
  --gc-brand-blue:#22d3ee;
  --gc-brand-green:#22c55e;
  --gc-cart-bg:#020617;
  --gc-cart-soft:#050f19;
  --gc-cart-border:#1f2933;
  --gc-cart-text:#e5f2ff;
  --gc-cart-muted:#8b9bb3;
  --gc-cart-danger:#f97373;
}

body.woocommerce-cart{
  background:#020617;
}

/* Wrapper */
.gc-cart-page{
  padding:60px 18px 80px;
  font-family:"Poppins",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
.gc-cart-inner{
  max-width:1180px;
  margin:0 auto;
  color:var(--gc-cart-text);
}

/* Header */
.gc-cart-header{
  margin-bottom:26px;
}
.gc-cart-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 14px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.65);
  background:#020b16;
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--gc-cart-muted);
}
.gc-cart-pill-icon{
  font-size:15px;
}
.gc-cart-title{
  margin:12px 0 4px;
  font-size:28px;
  font-weight:600;
}
.gc-cart-sub{
  margin:0;
  font-size:13px;
  color:var(--gc-cart-muted);
}

/* Layout */
.gc-cart-main{
  display:grid;
  grid-template-columns: minmax(0,2fr) minmax(0,1.15fr);
  gap:24px;
}

/* Table */
.gc-cart-items{
  background:var(--gc-cart-soft);
  border-radius:22px;
  border:1px solid rgba(15,23,42,.8);
  box-shadow:0 18px 40px rgba(0,0,0,.65);
  padding:16px 18px 18px;
}

.gc-cart-table{
  width:100%;
}

/* Head row */
.gc-cart-head-row{
  display:grid;
  grid-template-columns: minmax(0,1.6fr) minmax(0,0.7fr) minmax(0,0.85fr) minmax(0,0.9fr);
  gap:12px;
  padding:4px 4px 8px;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.16em;
  color:var(--gc-cart-muted);
}
.gc-cart-body{
  border-top:1px solid rgba(15,23,42,.9);
}

/* Cart rows */
.gc-cart-row{
  display:grid;
  grid-template-columns: minmax(0,1.6fr) minmax(0,0.7fr) minmax(0,0.85fr) minmax(0,0.9fr);
  gap:12px;
  padding:14px 6px;
  border-bottom:1px solid rgba(15,23,42,.9);
}
.gc-col-product,
.gc-col-price,
.gc-col-qty,
.gc-col-subtotal{
  display:flex;
  align-items:center;
  font-size:13px;
}

/* Product column */
.gc-cart-prod{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.gc-cart-thumb{
  width:70px;
  min-width:70px;
  height:70px;
  border-radius:16px;
  background:#020617;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border:1px solid var(--gc-cart-border);
}
.gc-cart-thumb img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.gc-cart-prod-info{
  flex:1;
}
.gc-cart-prod-title{
  margin:0 0 6px;
  font-size:14px;
  font-weight:600;
}
.gc-cart-prod-title a{
  color:var(--gc-cart-text);
  text-decoration:none;
}
.gc-cart-prod-title a:hover{
  text-decoration:underline;
}
.gc-cart-prod-meta{
  display:flex;
  flex-wrap:wrap;
  gap:4px 10px;
  font-size:11px;
  color:var(--gc-cart-muted);
}
.gc-cart-meta-sku{
  opacity:.8;
}
.gc-cart-remove{
  margin-top:6px;
}
.gc-remove-link{
  font-size:11px;
  color:var(--gc-cart-muted);
  text-decoration:underline;
}

/* Price / subtotal */
.gc-col-price,
.gc-col-subtotal{
  justify-content:flex-end;
  font-weight:500;
}
.gc-col-price{
  color:#e0f2fe;
}
.gc-col-subtotal{
  color:#a5f3fc;
}

/* Quantity */
.gc-col-qty{
  justify-content:flex-start;
}

/* Woo qty style tweak */
.gc-col-qty .quantity{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  border:1px solid var(--gc-cart-border);
  overflow:hidden;
  background:#020617;
}
.gc-col-qty .qty{
  width:52px;
  padding:5px 6px;
  text-align:center;
  border:none;
  background:transparent;
  color:var(--gc-cart-text);
}

/* Bottom: coupon + actions */
.gc-cart-bottom{
  padding-top:14px;
}
.gc-cart-coupon{
  margin-bottom:14px;
}
.gc-cart-coupon-label{
  display:block;
  font-size:12px;
  color:var(--gc-cart-muted);
  margin-bottom:4px;
}
.gc-cart-coupon-row{
  display:flex;
  gap:8px;
}
.gc-cart-coupon-row .input-text{
  flex:1;
  border-radius:999px;
  border:1px solid var(--gc-cart-border);
  padding:8px 12px;
  background:#020617;
  color:var(--gc-cart-text);
  font-size:13px;
}
.gc-btn-secondary{
  border-radius:999px !important;
  background:#020617 !important;
  border:1px solid rgba(148,163,184,.8) !important;
  color:var(--gc-cart-text) !important;
  font-size:12px !important;
  padding:8px 16px !important;
  text-transform:uppercase;
  letter-spacing:.12em;
}

/* Actions row */
.gc-cart-actions-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:10px;
  margin-top:6px;
}
.gc-btn-ghost,
.gc-btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:9px 18px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  text-decoration:none;
  cursor:pointer;
}
.gc-btn-ghost{
  border:1px solid transparent;
  color:var(--gc-cart-muted);
  background:transparent;
}
.gc-btn-outline{
  border:1px solid rgba(148,163,184,.9);
  background:#020617;
  color:var(--gc-cart-text);
}

/* SUMMARY SIDE */
.gc-cart-summary{
  position:relative;
}
.gc-cart-summary-card{
  position:sticky;
  top:90px;
  background:#020617;
  border-radius:22px;
  border:1px solid rgba(148,163,184,.5);
  box-shadow:0 18px 40px rgba(0,0,0,.7);
  padding:18px 18px 16px;
}
.gc-summary-title{
  margin:4px 0 3px;
  font-size:18px;
  font-weight:600;
}
.gc-summary-note{
  margin:0 0 10px;
  font-size:12px;
  color:var(--gc-cart-muted);
}

/* Make Woo totals match style */
.gc-cart-summary .cart_totals{
  margin:0;
}
.gc-cart-summary .shop_table{
  width:100%;
  border-spacing:0;
  border-collapse:collapse;
  background:transparent;
  color:var(--gc-cart-text);
}
.gc-cart-summary .shop_table tr{
  border-bottom:1px solid rgba(15,23,42,.9);
}
.gc-cart-summary .shop_table th,
.gc-cart-summary .shop_table td{
  padding:8px 0;
  font-size:13px;
  border:none;
}
.gc-cart-summary .shop_table th{
  text-align:left;
  color:var(--gc-cart-muted);
}
.gc-cart-summary .order-total th,
.gc-cart-summary .order-total td{
  font-weight:600;
}
.gc-cart-summary .wc-proceed-to-checkout{
  padding-top:12px;
}
.gc-cart-summary .checkout-button{
  width:100%;
  border-radius:999px;
  background:linear-gradient(135deg,var(--gc-brand-blue),var(--gc-brand-green)) !important;
  border:none !important;
  font-size:13px !important;
  font-weight:600 !important;
  text-transform:uppercase;
  letter-spacing:.16em;
  padding:11px 16px !important;
}

/* Secure note */
.gc-summary-secure{
  margin-top:10px;
  display:flex;
  align-items:center;
  gap:8px;
  font-size:11px;
  color:var(--gc-cart-muted);
}
.gc-summary-secure-icon{
  font-size:15px;
}

/* ========== Responsive ========== */
@media (max-width:960px){
  .gc-cart-main{
    grid-template-columns:1fr;
  }
  .gc-cart-summary-card{
    position:static;
  }
}

@media (max-width:768px){
  .gc-cart-page{
    padding:46px 14px 60px;
  }
  .gc-cart-row,
  .gc-cart-head-row{
    grid-template-columns: minmax(0,1.5fr) minmax(0,.7fr);
    grid-template-areas:
      "prod prod"
      "price qty"
      "subtotal subtotal";
  }
  .gc-cart-head-row{
    display:none;
  }
  .gc-cart-row{
    padding:12px 4px;
  }
  .gc-col-product{ grid-area:prod; }
  .gc-col-price{ grid-area:price; justify-content:flex-start; font-size:12px; }
  .gc-col-qty{ grid-area:qty; justify-content:flex-end; }
  .gc-col-subtotal{ grid-area:subtotal; justify-content:flex-end; font-size:13px; }
  .gc-col-price::before,
  .gc-col-qty::before,
  .gc-col-subtotal::before{
    content:attr(data-label);
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.16em;
    color:var(--gc-cart-muted);
    margin-right:6px;
  }

  .gc-cart-coupon-row{
    flex-direction:column;
  }
  .gc-cart-actions-row{
    justify-content:flex-start;
  }
}
/* ===== GoClein Cart – Color hard-coding & refinements ===== */

/* Base text colours */
body.woocommerce-cart .gc-cart-inner,
body.woocommerce-cart .gc-cart-inner p,
body.woocommerce-cart .gc-cart-inner span,
body.woocommerce-cart .gc-cart-inner a,
body.woocommerce-cart .gc-cart-inner h1,
body.woocommerce-cart .gc-cart-inner h2 {
  color:#ffffff;
}

/* Muted / helper text */
.gc-cart-sub,
.gc-cart-prod-meta,
.gc-cart-meta-sku,
.gc-remove-link,
.gc-cart-coupon-label,
.gc-summary-note,
.gc-summary-secure,
.gc-summary-secure span,
.gc-offer-note {
  color:#8b9bb3 !important;
}

/* Prices / totals */
.gc-col-price,
.gc-col-subtotal,
.gc-cart-summary .shop_table td,
.gc-cart-summary .shop_table th {
  color:#e5f2ff !important;
}

/* Table headers */
.gc-cart-head-row {
  color:#8b9bb3;
}

/* Coupon input */
.gc-cart-coupon-row .input-text {
  background:#020617;
  border-color:#1e293b;
  color:#ffffff;
}

/* "Continue shopping" link */
.gc-btn-ghost {
  color:#8b9bb3;
}

/* Quantity pill – remove white default, force dark style */
.woocommerce-cart .gc-cart-row .quantity {
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  border:1px solid #1e293b;
  overflow:hidden;
  background:#020617;
}

.woocommerce-cart .gc-cart-row .quantity .qty {
  width:52px;
  padding:6px 6px;
  border:none;
  background:#020617;
  color:#ffffff;
  box-shadow:none;
}

/* Common +/- button selectors across many themes */
.woocommerce-cart .gc-cart-row .quantity .minus,
.woocommerce-cart .gc-cart-row .quantity .plus,
.woocommerce-cart .gc-cart-row .quantity button {
  background:#020617 !important;
  border:none !important;
  color:#ffffff !important;
  width:32px;
  height:32px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  padding:0;
  box-shadow:none !important;
}

/* Remove any white hover state from theme */
.woocommerce-cart .gc-cart-row .quantity .minus:hover,
.woocommerce-cart .gc-cart-row .quantity .plus:hover,
.woocommerce-cart .gc-cart-row .quantity button:hover {
  background:#020617 !important;
}

/* Remove underline from product title on default state, keep on hover */
.gc-cart-prod-title a {
  text-decoration:none;
}
.gc-cart-prod-title a:hover {
  text-decoration:underline;
}

/* Remove any bullets / default list styling if theme adds them */
.gc-cart-items ul,
.gc-cart-items li {
  list-style:none;
  margin:0;
  padding:0;
}
