/* =============================================
   CLARAS — Shared Design System
   Used across all pages
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Nunito:wght@300;400;500;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --brand-primary: #032b31;
  --brand-secondary: #064d57;
  --brand-accent: #ffae2b;
  --brand-red: #e31837;
  --brand-light: #f5f0e8;
  --text-dark: #1a1a1a;
  --text-muted: #6b7280;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Nunito', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { 
    max-width: 100vw;
    overflow-x: hidden; 
    font-family: var(--font-body); 
    color: var(--text-dark); 
    background: var(--white); 
    line-height: 1.6; 
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- Container ---- */
.claras-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---- Preloader ---- */
#preloader {
    width: 100%; height: 100dvh;
    position: fixed; z-index: 99999;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: #fff;
    transition: opacity 0.4s ease-out;
}
#preloader .preloader-circle {
    width: 160px; height: 160px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 30px rgba(255,174,43,0.5);
}
#preloader .preloader-gif {
    position: absolute !important; inset: 0 !important;
    width: 160px !important; height: 160px !important;
    object-fit: cover !important; object-position: center center !important;
}

/* ---- Page body offset for fixed header + marquee (header actual height: 124px desktop, 79px mobile) ---- */
body.page-inner { padding-top: calc(44px + 124px); }
@media (max-width: 768px) {
    body.page-inner { padding-top: calc(44px + 79px); }
}

/* ---- Breadcrumb ---- */
.breadcrumb-section {
    margin-top: 0;
    padding: 15px 0;
    background: #f8fafc;
    border-bottom: 1px solid #edf2f7;
}
.breadcrumb-section ol { display: flex; gap: 10px; list-style: none; padding: 0; margin: 0; font-size: 0.85rem; color: #64748b; font-family: 'Inter', sans-serif; }
.breadcrumb-section a { color: inherit; text-decoration: none; }
.breadcrumb-section a:hover { color: #A1CE22; }

/* ---- Shop Page Cards ---- */
.shop-hero { padding: 60px 20px 30px; text-align: center; }
.shop-hero h1 { font-family: 'Libre Baskerville', serif; font-size: 2.5rem; color: #032b31; margin-bottom: 10px; }
.shop-hero p { color: #64748b; font-size: 1.05rem; }
.filter-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 30px; }
.filter-card h3 { font-family: 'Libre Baskerville', serif; color: #032b31; margin-bottom: 20px; }
.filter-group { margin-bottom: 24px; }
.filter-group h4 { font-size: 0.9rem; font-weight: 700; color: #032b31; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.filter-label { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: #4b5563; margin-bottom: 8px; cursor: pointer; }
.grid-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.grid-header p { color: #64748b; }
.grid-header select { padding: 8px 14px; border: 1.5px solid #e2e8f0; border-radius: 8px; font-size: 0.9rem; color: #032b31; }
.pc-img { position: relative; aspect-ratio: 1; overflow: hidden; background: #f5f0e8; }
.pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .pc-img img { transform: scale(1.06); }
.pc-badge { position: absolute; top: 12px; left: 12px; background: #e31837; color: #fff; padding: 4px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; z-index: 2; }
.pc-content { padding: 18px; }
.pc-cat { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #A1CE22; margin-bottom: 5px; }
.pc-content h3 { font-size: 1rem; font-weight: 700; color: #032b31; margin-bottom: 12px; line-height: 1.3; }
.pc-variants { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.pc-var { padding: 5px 14px; border: 1.5px solid #e2e8f0; background: #fff; border-radius: 20px; font-size: 0.8rem; font-weight: 600; color: #64748b; cursor: pointer; transition: all 0.3s; }
.pc-var.active { border-color: #032b31; background: #032b31; color: #fff; }
.pc-footer { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; flex-wrap: wrap; gap: 8px; }
.pc-price { font-weight: 800; color: #032b31; font-size: 1.1rem; }
.pc-price span { display: block; font-size: 0.7rem; font-weight: 500; color: #94a3b8; margin-bottom: 2px; }
.pc-actions { display: flex; gap: 8px; }
.add-cart-btn { flex: 1; background: #032b31; color: #fff; border: none; padding: 11px 10px; border-radius: 10px; font-weight: 700; font-size: 0.88rem; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px; transition: background 0.3s; }
.add-cart-btn:hover { background: #064d57; }
.view-btn { background: transparent; color: #032b31; border: 1.5px solid #032b31; padding: 11px 16px; border-radius: 10px; font-weight: 700; font-size: 0.88rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; text-decoration: none; white-space: nowrap; }
.view-btn:hover { background: #032b31; color: #fff; }
.pagination { display: flex; gap: 8px; justify-content: center; align-items: center; margin-top: 50px; flex-wrap: wrap; }
.pagination a { padding: 10px 16px; border: 1.5px solid #e2e8f0; border-radius: 8px; font-weight: 600; font-size: 0.9rem; color: #032b31; text-decoration: none; transition: all 0.3s; }
.pagination a.active { background: #032b31; color: #fff; border-color: #032b31; }
.pagination a:hover:not(.active) { border-color: #032b31; }
.pagination .dots { color: #94a3b8; padding: 10px 4px; }
.pagination .disabled { opacity: 0.4; pointer-events: none; }
/* claras-btn outline variant */
.claras-btn-outline { background: transparent !important; color: #032b31 !important; border: 2px solid #032b31 !important; }
.claras-btn-outline:hover { background: #032b31 !important; color: #fff !important; }

/* ============================================================
   HEADER
   ============================================================ */
/* ===== FLASH MARQUEE (fixed top bar) ===== */
#flash-marquee-top {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 10002;
    background: #A1CE22;
    color: #032b31;
    padding: 11px 0;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 900;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    display: flex;
    height: 44px;
    box-sizing: border-box;
}
#flash-marquee-top .ticker-inner {
    display: flex;
    animation: ticker 25s linear infinite;
    will-change: transform;
}
#flash-marquee-top .ticker-inner span { margin: 0 36px; }
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

/* ===== UNIFIED HEADER ===== */
body header#Header {
    position: fixed !important;
    top: 44px !important; left: 0 !important; width: 100% !important;
    z-index: 10000 !important;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
/* Inner pages (white bg) — header starts semi-transparent so it's always visible */
body.page-inner header#Header {
    background: rgba(3,43,49,0.88) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
}
body header#Header.sticky {
    position: fixed !important;
    top: 44px !important;
    background: #032b31 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
body header#Header.hide {
    transform: translateY(-150%) !important;
}



.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 24px;
}
@media (max-width: 768px) {
    .header-bar { padding: 12px 16px !important; gap: 10px !important; }
    .header-logo img { max-height: 55px !important; }
    .header-search { display: none !important; } /* Hide search on tablets/phones to avoid overcrowding */
}

.header-logo img { max-height: 80px; width: auto; display: block; flex-shrink: 0; }

.header-search {
    flex: 1;
    max-width: 560px;
    position: relative;
}
.header-search form {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.10);
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 50px;
    overflow: hidden;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.header-search form:focus-within {
    background: rgba(255,255,255,0.16);
    border-color: #ffae2b;
    box-shadow: 0 0 0 3px rgba(255,174,43,0.18);
}
.header-search input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    padding: 11px 18px;
    min-width: 0;
}
.header-search input::placeholder { color: rgba(255,255,255,0.5); }
.header-search button {
    background: #ffae2b;
    border: none;
    color: #032b31;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 0 50px 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    flex-shrink: 0;
}
.header-search button:hover { background: #e8971a; }
@media (max-width: 640px) {
    .header-search { max-width: 100%; }
    .header-search input { font-size: 0.85rem; padding: 9px 14px; }
}
@media (max-width: 460px) {
    .header-right { gap: 12px; }
    .ham-btn { width: 40px; height: 40px; border-radius: 10px; }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
}

.hdr-cart {
    position: relative;
    color: #fff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: color 0.3s;
    flex-shrink: 0;
}
.hdr-cart:hover { color: #ffae2b; }
.hdr-cart .cartCountData {
    position: absolute;
    top: -8px; right: -10px;
    background: #A1CE22;
    color: #032b31;
    font-size: 0.65rem;
    font-weight: 900;
    border-radius: 50%;
    padding: 2px 5px;
    line-height: 1;
}

/* ===== HAMBURGER BUTTON ===== */
.ham-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 46px; height: 46px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 12px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s;
    z-index: 10002;
    padding: 0;
}
.ham-btn:hover { background: rgba(255,174,43,0.15); border-color: #ffae2b; }
.ham-btn span {
    display: block;
    width: 22px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
    transform-origin: center;
}
.ham-btn.open { background: rgba(255,174,43,0.2); border-color: #ffae2b; }
.ham-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: #ffae2b; }
.ham-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: #ffae2b; }

/* ===== FULL-SCREEN OVERLAY MENU ===== */
#navOverlay {
    position: fixed;
    inset: 0;
    background: #011a1e;
    z-index: 10005;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
#navOverlay::before {
    content: 'CLARAS';
    position: fixed;
    bottom: -40px; right: -20px;
    font-family: var(--font-heading);
    font-size: clamp(8rem, 18vw, 18rem);
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    pointer-events: none;
    user-select: none;
    letter-spacing: -5px;
    line-height: 1;
    z-index: 0;
}
#navOverlay.open {
    opacity: 1;
    pointer-events: all;
}
.nav-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    height: 100%;
    padding: 40px 30px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
.vertical-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}
.vm-item {
    overflow: hidden;
}
.vm-item a {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
    line-height: 1.2;
}
.vm-item a:hover {
    color: #ffae2b;
}
.nav-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    width: 200px;
    margin: 14px auto;
}
.nav-utils {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.nav-utils a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex; align-items: center; gap: 8px;
    transition: color 0.3s;
}
.nav-utils a:hover { color: #ffae2b; }
.nav-utils a i { font-size: 0.9rem; }
.nav-contact {
    margin-top: 16px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.nav-contact a {
    color: #ffae2b;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}
.nav-contact a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
/* ===== FOOTER ===== */
.claras-footer {
  background: linear-gradient(135deg, #032b31 0%, #064d57 100%);
  color: #fff;
  padding: 80px 0 0;
  border-top: 4px solid var(--brand-accent);
}

.claras-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.claras-footer .ft-heading {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 25px;
  padding-bottom: 10px;
  position: relative;
  display: inline-block;
}
.claras-footer .ft-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 35px; height: 3px;
  background: var(--brand-accent);
  border-radius: 2px;
}
.claras-footer ul { list-style: none; padding: 0; line-height: 2.2; }
.claras-footer ul li a { color: rgba(255,255,255,0.8); font-size: 0.95rem; text-decoration: none; transition: var(--transition); }
.claras-footer ul li a:hover { color: var(--brand-accent); padding-left: 5px; }

.claras-footer .social-row { display: flex; gap: 15px; margin-top: 25px; }
.claras-footer .social-row a { color: #fff; font-size: 1.2rem; transition: var(--transition); }
.claras-footer .social-row a:hover { color: var(--brand-accent); transform: translateY(-3px); }

.claras-footer-bottom {
  background: rgba(0,0,0,0.2);
  margin-top: 60px;
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #ffffff;
}
.claras-footer-bottom p { margin: 0; color: #ffffff !important; }
.claras-footer-bottom a { color: #ffffff !important; font-weight: bold; }
.claras-footer-bottom a:hover { color: var(--brand-accent) !important; }

@media (max-width: 991px) {
  .claras-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; padding: 0 20px; }
}
@media (max-width: 600px) {
  .claras-footer { overflow-x: hidden; }
  .claras-footer-grid { grid-template-columns: 1fr; gap: 25px; padding: 0 20px; }
  .claras-footer .ft-col { max-width: 100%; overflow: hidden; }
  .claras-footer p, .claras-footer a, .claras-footer ul li a { word-break: break-word; font-size: 0.88rem; }
  .claras-footer .footer-buttons { align-items: stretch !important; }
  .claras-footer .footer-buttons a { justify-content: center !important; text-align: center; }
  .claras-footer-bottom { padding: 15px 20px; font-size: 0.78rem; }
}

/* ============================================================
   COMMON UI COMPONENTS
   ============================================================ */

/* Breadcrumb */
.claras-breadcrumb {
  background: var(--brand-light);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.claras-breadcrumb ol { display: flex; gap: 8px; list-style: none; font-size: 0.9rem; }
.claras-breadcrumb ol li { color: var(--text-muted); }
.claras-breadcrumb ol li::after { content: '/'; margin-left: 8px; }
.claras-breadcrumb ol li:last-child::after { content: ''; }
.claras-breadcrumb ol li a { color: var(--brand-secondary); font-weight: 500; }
.claras-breadcrumb ol li a:hover { color: var(--brand-accent); }

/* Buttons */
.btn-primary-claras {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brand-accent);
  color: var(--brand-primary);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(255,174,43,0.3);
  text-decoration: none;
}
.btn-primary-claras:hover { background: #e8971a; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,174,43,0.4); }
.btn-secondary-claras {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--brand-primary);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--brand-primary);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-secondary-claras:hover { background: var(--brand-primary); color: white; }
.btn-danger-claras {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-red);
  color: white;
  padding: 11px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-danger-claras:hover { background: #c21230; }

/* General purpose CTA button used across pages */
.claras-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--brand-primary);
  color: #fff;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.97rem;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 5px 18px rgba(3,43,49,0.25);
  position: relative;
  overflow: hidden;
}
.claras-btn:hover {
  background: var(--brand-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(3,43,49,0.35);
  color: #fff;
}

/* Page Heading */
.page-hero {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  padding: 60px 0;
  text-align: center;
  color: white;
}
.page-hero h1 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; }

/* Product Card */
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-card-img { position: relative; overflow: hidden; aspect-ratio: 1; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--brand-red);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}
.product-wishlist {
  position: absolute;
  top: 12px; right: 12px;
  background: white;
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: var(--transition);
  font-size: 1.1rem;
  color: #ccc;
}
.product-wishlist:hover, .product-wishlist.active { color: var(--brand-red); }
.product-card-body { padding: 18px; }
.product-cat { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.product-name { font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: 10px; line-height: 1.3; }
.product-price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.product-price { font-weight: 800; font-size: 1.15rem; color: var(--brand-primary); }
.product-price-old { font-size: 0.9rem; color: var(--text-muted); text-decoration: line-through; }
.product-card-actions { display: flex; gap: 8px; }
.btn-add-cart {
  flex: 1;
  background: var(--brand-primary);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-add-cart:hover { background: var(--brand-secondary); }

/* Form Inputs */
.claras-form-group { margin-bottom: 20px; }
.claras-form-group label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 8px; }
.claras-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--transition);
  background: white;
  color: var(--text-dark);
}
.claras-input:focus { outline: none; border-color: var(--brand-secondary); box-shadow: 0 0 0 3px rgba(6,77,87,0.1); }
.claras-input::placeholder { color: #a0aec0; }
.claras-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

/* Alerts */
.claras-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.claras-alert-icon { font-size: 1.3rem; flex-shrink: 0; line-height: 1; }
.claras-alert-text { flex: 1; }
.claras-alert-text strong { display: block; margin-bottom: 3px; font-weight: 700; }
.claras-alert-close { background: none; border: none; cursor: pointer; font-size: 1.1rem; opacity: 0.6; transition: var(--transition); flex-shrink: 0; }
.claras-alert-close:hover { opacity: 1; }
.alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.alert-warning { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.alert-info { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }

/* Toast notifications */
.claras-toast-container {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.claras-toast {
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  max-width: 400px;
  animation: toastIn 0.4s ease;
  border-left: 4px solid var(--brand-accent);
}
.claras-toast.toast-success { border-left-color: #22c55e; }
.claras-toast.toast-error { border-left-color: var(--brand-red); }
@keyframes toastIn { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: translateX(0); } }

/* Section Titles */
.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 12px;
}
.section-subtitle { color: #6b7280; font-size: 1.1rem; margin-bottom: 40px; }
.section-title-wrap { margin-bottom: 40px; }
.section-title-wrap .section-title::after {
  content: '';
  display: block;
  width: 60px; height: 4px;
  background: var(--brand-accent);
  border-radius: 2px;
  margin-top: 10px;
}

/* Responsive Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .claras-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .claras-menu { display: none; }
  .claras-hamburger { display: flex; }
  .page-hero h1 { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .claras-footer-grid { grid-template-columns: 1fr; }
  .claras-container { padding: 0 15px; }
}

/* Quantity Input */
.qty-input {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  background: var(--brand-light);
  border: none;
  padding: 8px 14px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  color: var(--brand-primary);
  transition: var(--transition);
}
.qty-btn:hover { background: var(--brand-accent); }
.qty-val {
  border: none;
  width: 50px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 8px;
  outline: none;
}

/* Stars */
.stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; }

/* Tabs */
.claras-tabs { display: flex; gap: 5px; border-bottom: 2px solid var(--border); margin-bottom: 30px; }
.claras-tab {
  padding: 12px 24px;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}
.claras-tab.active, .claras-tab:hover { color: var(--brand-primary); border-bottom-color: var(--brand-accent); }

/* ============================================================
   PREMIUM BUTTON HOVER ANIMATIONS (GLANCING EFFECT)
   ============================================================ */
button, .btn, [class*="btn-"] {
  position: relative;
  overflow: hidden;
}

button::after, .btn::after, [class*="btn-"]::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: left 0.7s ease;
  z-index: 1;
  pointer-events: none;
}

button:hover::after, .btn:hover::after, [class*="btn-"]:hover::after {
  left: 200%;
}

/* ============================================================
   GREEN CUSTOM CURSORS
   ============================================================ */
/* Default Green Mouse Icon for the whole page */
html, body {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24'%3E%3Cpath fill='%2310b981' stroke='%23ffffff' stroke-width='1.5' d='M6.5 3.5v15l4-3.5 3.5 6.5 2-1-3.5-6.5h4z'/%3E%3C/svg%3E") 6 4, auto !important;
}

/* Green Hand Icon for Clickable Elements */
a, button, input[type="submit"], input[type="button"], 
.btn, [class*="btn-"], .product-card, .claras-tab, 
.claras-hamburger, .product-wishlist, select, .qty-btn {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24'%3E%3Cpath fill='%2310b981' stroke='%23ffffff' stroke-width='1.5' d='M10.5 11.5V4a2.5 2.5 0 0 1 5 0v4h.5a2.5 2.5 0 0 1 5 0v5.5a7 7 0 0 1-2.5 5.5l-3 2.5a3 3 0 0 1-2 .8H10a4.5 4.5 0 0 1-4-3l-2.5-5.5a2 2 0 0 1 1.5-2.8l2.5-1c1-.5 2.5.5 2.5 1.5v2.5z'/%3E%3C/svg%3E") 8 4, pointer !important;
}


/* Ensure Add buttons always have white text for contrast */
body .addBtn, body .cartBtn, body .addToCart, body .addToCartBtn, body button.add, body a.add,
body .addBtn .text, body .cartBtn .text, body .addToCart .text, body .addToCartBtn .text, 
body button.add .text, body a.add .text {
  color: #ffffff !important;
}

/* ===================== PRODUCT CARD COMPONENT ===================== */
.product-card { height: 100%; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }

/* Hide WooCommerce default loop buttons - theme uses custom card design */
.woocommerce ul.products li.product .button.add_to_cart_button,
.woocommerce ul.products li.product .woocommerce-loop-product__link ~ a,
.woocommerce ul.products li.product .added_to_cart,
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product .product-card + .button,
.woocommerce ul.products li.product > a.button {
    display: none !important;
}
/* But keep custom card's own buttons visible */
.woocommerce ul.products li.product .product-card a.button,
.woocommerce ul.products li.product .product-card .addBtn {
    display: inline-flex !important;
}
    /* ==========================================================================
       CLEAN MOBILE & TABLET REBUILD (REPLACES PREVIOUS MOBILE CSS)
       ========================================================================== */
    /* ===== UNIFIED HAMBURGER HEADER (ALL SCREEN SIZES) ===== */

    /* Base header */
    #Header {
        position: fixed !important;
        top: 44px !important; left: 0 !important; width: 100% !important;
        z-index: 10000 !important;
        background: transparent;
        transition: background 0.4s ease, box-shadow 0.4s ease;
    }
    #Header.sticky {
        position: fixed !important;
        top: 44px !important;
        background: #032b31 !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
    }
    #Header.hide { transform: translateY(-100%); }

    /* Hide old elements we no longer need */
    .top_hdr, #HeaderMain .cNavWrap, .desktop-hub,
    .SearchBox, .MyaccountDrop { display: none !important; }

    /* Header bar */
    .header-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 40px;
        max-width: 1400px;
        margin: 0 auto;
    }
    @media (max-width: 768px) {
        .header-bar { padding: 14px 20px; }
    }

    .header-logo img { max-height: 80px; width: auto; display: block; }

    .header-right {
        display: flex;
        align-items: center;
        gap: 22px;
    }

    /* Cart icon */
    .hdr-cart {
        position: relative;
        color: #fff;
        font-size: 1.3rem;
        text-decoration: none;
        transition: color 0.3s;
        flex-shrink: 0;
    }
    .hdr-cart:hover { color: #ffae2b; }
    .hdr-cart .cartCountData {
        position: absolute;
        top: -8px; right: -10px;
        background: #A1CE22;
        color: #032b31;
        font-size: 0.65rem;
        font-weight: 900;
        border-radius: 50%;
        padding: 2px 5px;
        line-height: 1;
    }

    /* ===== HAMBURGER BUTTON ===== */
    .ham-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        width: 46px; height: 46px;
        background: rgba(255,255,255,0.08);
        border: 1.5px solid rgba(255,255,255,0.18);
        border-radius: 12px;
        cursor: pointer;
        flex-shrink: 0;
        transition: background 0.3s, border-color 0.3s;
        z-index: 10001;
        padding: 0;
    }
    .ham-btn:hover { background: rgba(255,174,43,0.15); border-color: #ffae2b; }
    .ham-btn span {
        display: block;
        width: 22px; height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
        transform-origin: center;
    }

/* ===== CLEAN MOBILE & TABLET REBUILD ===== */

    /* ===================== PRELOADER FIX ===================== */
    #preloader { background: #fff; }
    #preloader .circle { display: none !important; }
    @keyframes preloaderPulse {
        0%, 100% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.08); opacity: 0.85; }
    }

    /* ===================== GREEN CURSOR SYSTEM ===================== */
    body, html {
        cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M5.5 3.21V20.8c0 .45.54.67.85.35l4.86-4.86a.5.5 0 0 1 .35-.15h6.87c.45 0 .67-.54.35-.85L6.35 2.85a.5.5 0 0 0-.85.36Z" fill="%230d544f" stroke="%23ffffff" stroke-width="1.5"/></svg>') 4 4, auto !important;
    }
    a, button, input, select, textarea, .hoveranim, .claras-btn, .mh-dot, .mh-read-more {
        cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M10.08 2.16l11.4 11.4a1.2 1.2 0 01-1.7 1.7l-9.78-9.78v15.72a1.2 1.2 0 01-2.4 0V5.48L2.22 10.88a1.2 1.2 0 01-1.7-1.7l11.4-11.4a1.2 1.2 0 011.7 0z" fill="%230d544f" stroke="%23ffffff" stroke-width="1"/></svg>') 12 12, pointer !important;
    }

    /* ===================== PREMIUM SHINE ANIMATION ===================== */
    @keyframes shimmer {
        0%   { background-position: -250% center; }
        100% { background-position: 250% center; }
    }

    /* ===================== GLOBAL BUTTON SYSTEM ===================== */
    /* Base: pill shape, theme colors, shine on hover — applies to ALL buttons across site */
    .claras-btn,
    .banner-custom a,
    .hoveranim,
    .addBtn, .cartBtn, .addToCart,
    button.addBtn, a.addBtn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        padding: 13px 30px !important;
        border-radius: 50px !important;
        font-weight: 700 !important;
        font-size: 1rem !important;
        text-decoration: none !important;
        cursor: pointer !important;
        border: none !important;
        position: relative !important;
        overflow: hidden !important;
        transition: all 0.35s ease !important;
        background: #ffae2b !important;
        color: #032b31 !important;
        box-shadow: 0 6px 20px rgba(255,174,43,0.35) !important;
    }

    .claras-btn::after,
    .banner-custom a::after {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%) !important;
        background-size: 250% auto !important;
        opacity: 0 !important;
        transition: opacity 0.3s !important;
        border-radius: 50px !important;
    }

    .claras-btn:hover::after,
    .banner-custom a:hover::after {
        opacity: 1 !important;
        animation: shimmer 0.8s linear !important;
    }

    .claras-btn:hover,
    .banner-custom a:hover {
        transform: translateY(-3px) scale(1.02) !important;
        box-shadow: 0 12px 35px rgba(255,174,43,0.55) !important;
        color: #032b31 !important;
    }

    /* Secondary / outline variant */
    .claras-btn-outline {
        background: transparent !important;
        color: #ffae2b !important;
        border: 2px solid #ffae2b !important;
        box-shadow: none !important;
    }
    .claras-btn-outline:hover {
        background: #ffae2b !important;
        color: #032b31 !important;
        box-shadow: 0 10px 30px rgba(255,174,43,0.4) !important;
    }

    /* Product card Add buttons — match pill shape */
    .price_flx .rgt {
        display: flex !important;
        gap: 8px !important;
        align-items: center !important;
        justify-content: flex-end !important;
    }

    .addBtn, .cartBtn, .addToCart, button.addBtn, a.addBtn,
    .addToCartBtn, .add, button.add, a.add {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        min-width: 90px !important; /* Slightly smaller to fit side-by-side */
        font-size: 0.82rem !important;
        padding: 8px 16px !important;
        color: #ffffff !important;
        background: #032b31 !important;
        border-radius: 50px !important;
        white-space: nowrap !important;
    }
    
    .goToCartBtn {
        background: #ffae2b !important; /* Orange for Go To Cart */
        color: #032b31 !important;
    }
    .goToCartBtn .text {
        color: #032b31 !important;
    }
    
    .add .icon, .addToCart .icon, .addToCartBtn .icon, .goToCartBtn .icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .add .icon img, .addToCart .icon img, .addToCartBtn .icon img, .goToCartBtn .icon img {
        width: 14px !important;
        height: auto !important;
        filter: brightness(0) invert(1) !important;
    }
    
    .goToCartBtn .icon img {
        filter: brightness(0) !important; /* Dark icon for orange button */
    }

    .addToCartBtn .text, .add .text, .addToCart .text {
        color: #ffffff !important;
    }

    
    .shop_now {
        min-width: 100px !important;
        font-size: 0.9rem !important;
        padding: 10px 22px !important;
        color: inherit !important; /* Allow parent section styles to define this */
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
    }

    /* Product card alignment fix */
    .item_bx {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .item_bx .price_flx {
        margin-top: auto;
    }
    .item_bx .title {
        min-height: 48px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Fix hero dots centering */
    .mh-dots {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Center Categories watermark */
    #whatLooking { 
        position: relative; 
        padding: 40px 0 100px !important; 
        overflow: visible !important;
    }
    #whatLooking .hd {
        position: absolute;
        top: 20px;
        left: 50% !important;
        transform: translateX(-50%) rotate(0deg) !important;
        writing-mode: horizontal-tb !important;
        width: 100%;
        text-align: center;
        opacity: 0.05;
        font-size: clamp(4rem, 8vw, 8rem);
    }

    /* Stacked Cards Interaction */
    .stacked-container {
        position: relative;
        width: 100%;
        height: 480px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 50px;
    }
    .stacked-cards-wrapper {
        position: relative;
        width: 340px;
        height: 440px;
    }
    .stacked-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        border-radius: 28px;
        border: 1px solid rgba(0,0,0,0.06);
        box-shadow: 0 15px 45px rgba(0,0,0,0.05);
        overflow: hidden;
        transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        cursor: pointer;
        padding: 12px;
        display: flex;
        flex-direction: column;
    }
    
    .stacked-card .img-wrapper {
        position: relative;
        width: 100%;
        height: 310px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    }
    .stacked-card .img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 25px;
        transition: transform 0.6s ease;
    }
    
    .stacked-card .card-content {
        padding: 18px 10px;
        text-align: center;
    }
    .stacked-card .card-content h3 {
        font-family: var(--font-heading);
        font-size: 1.15rem;
        color: var(--brand-primary);
        margin-bottom: 6px;
        font-weight: 700;
    }
    .stacked-card .card-content p {
        font-size: 0.85rem;
        color: var(--text-muted);
        line-height: 1.4;
    }

    /* Stack positioning classes */
    .stacked-card.pos-center { z-index: 10; transform: translate(0, 0); }
    .stacked-card.pos-left { z-index: 5; transform: translate(0, 0); }
    .stacked-card.pos-right { z-index: 1; transform: translate(0, 0); }

    /* Hover States - Spread Animation */
    .stacked-container:hover .stacked-card.pos-left {
        transform: translateX(-140px) rotate(-8deg) scale(0.95);
        opacity: 0.9;
    }
    .stacked-container:hover .stacked-card.pos-right {
        transform: translateX(140px) rotate(8deg) scale(0.95);
        opacity: 0.9;
    }
    .stacked-container:hover .stacked-card.pos-center {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    }
    
    .stacked-card:hover .img-wrapper img {
        transform: scale(1.1) translateY(-5px);
    }

    /* Logo background float */
    .logo-float {
        position: absolute;
        width: 180px;
        top: 0;
        right: 0;
        opacity: 0;
        z-index: -1;
        transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
        pointer-events: none;
    }
    .stacked-container:hover .logo-float {
        opacity: 0.15;
        transform: translate(60px, -60px) rotate(15deg);
    }

    @media (max-width: 768px) {
        .stacked-container { height: 420px; }
        .stacked-cards-wrapper { width: 300px; height: 380px; }
        .stacked-card .img-wrapper { height: 260px; }
        .stacked-container:hover .stacked-card.pos-left { transform: translateX(-60px) rotate(-5deg) scale(0.9); }
        .stacked-container:hover .stacked-card.pos-right { transform: translateX(60px) rotate(5deg) scale(0.9); }
    }

    /* Brand Logo Colors Override for Sections */
    #whatLooking {
        background: linear-gradient(135deg, #f6fae8 0%, #ffffff 100%) !important;
    }
    #whatLooking .bg { display: none !important; }

    #variations .item_bx {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
    }
    #variations .item_bx .bg, #variations .item_bx .bg2 { display: none !important; }
    #variations .item_bx .flx {
        display: flex;
        align-items: center;
        width: 100%;
    }
    #variations .item_bx .lft {
        width: 44%;
        flex-shrink: 0;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: 0 0 0 16px;
    }
    #variations .item_bx .imgBx {
        width: 100%;
    }
    #variations .item_bx .imgBx img {
        width: 100% !important;
        height: auto !important;
        max-height: 220px;
        object-fit: contain !important;
        display: block;
    }
    #variations .item_bx .rgt {
        flex: 1;
        padding: 20px 20px 20px 12px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    #variations .item_bx .title {
        font-family: var(--font-heading, 'Outfit', sans-serif);
        font-size: clamp(1rem, 1.6vw, 1.35rem) !important;
        font-weight: 800;
        margin-bottom: 10px;
        line-height: 1.3;
        min-height: auto !important;
    }
    #variations .item_bx p { font-size: 0.88rem; line-height: 1.55; margin-bottom: 20px; opacity: 0.88; }
    #variations .item_bx a.shop_now {
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 10px 20px !important;
        border-radius: 50px !important;
        font-weight: 700 !important;
        font-size: 0.88rem !important;
        text-decoration: none !important;
        width: auto !important;
        min-width: auto !important;
    }
    #variations .item_bx .shop_now .icon { display: flex; align-items: center; }
    #variations .item_bx .shop_now .icon img {
        width: 18px !important; height: 18px !important;
        object-fit: contain !important;
    }
    
    #variations .swiper-slide:nth-child(1) .item_bx {
        background: linear-gradient(135deg, #032b31, #064d57) !important;
    }
    #variations .swiper-slide:nth-child(1) .item_bx .title,
    #variations .swiper-slide:nth-child(1) .item_bx p {
        color: #ffffff !important;
    }
    #variations .swiper-slide:nth-child(1) .item_bx a.shop_now {
        background: #ffae2b !important;
        color: #032b31 !important;
        border-radius: 50px !important;
    }

    #variations .swiper-slide:nth-child(2) .item_bx {
        background: linear-gradient(135deg, #ffae2b, #ff9800) !important;
    }
    #variations .swiper-slide:nth-child(2) .item_bx .title,
    #variations .swiper-slide:nth-child(2) .item_bx p {
        color: #032b31 !important;
    }
    #variations .swiper-slide:nth-child(2) .item_bx a.shop_now {
        background: #032b31 !important;
        color: #ffffff !important;
        border-radius: 50px !important;
    }

    /* ===== SERVICES / FEATURES BAR ===== */
    #services {
        padding: 28px 0;
        background: #fff;
        border-top: 1px solid #f0f4f5;
    }
    #services .d_flx {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 48px;
        flex-wrap: wrap;
    }
    #services .item .flx {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
    #services .item .icon { display: flex; justify-content: center; }
    #services .item .icon .imgBx { display: flex; align-items: center; justify-content: center; }
    #services .item .icon .imgBx img {
        width: 56px !important; height: 56px !important;
        object-fit: contain !important;
        display: block;
    }
    #services .item .text {
        font-size: 0.88rem;
        font-weight: 700;
        color: #032b31;
        line-height: 1.3;
        max-width: 120px;
    }

    /* Fix slider active dot color to green */
    .mh-dot.active { background: #A1CE22 !important; width: 28px !important; }

    /* Fix View All Products text color */
    .all_pro .text { color: #032b31 !important; font-weight: bold; }
    
    /* Ensure Need a try buttons don't wrap */
    .shop_now { white-space: nowrap !important; }

    /* Fix Who Can Order cards text visibility */
    .categoriesBx .title {
        display: block !important;
        -webkit-line-clamp: unset !important;
        height: auto !important;
        min-height: auto !important;
        color: #032b31 !important;
        font-weight: bold;
    }
    
    /* Fix specialty button overflow */
    #newlaunch .add.addToCartBtn, 
    #newlaunch .add.goToCartBtn {
        padding: 8px 10px !important;
        font-size: 0.75rem !important;
        min-width: 85px !important;
        white-space: nowrap !important;
    }
    #newlaunch .add .text { font-size: 0.75rem !important; }
    #newlaunch .add .icon img { width: 18px !important; height: auto !important; }

    
    /* Benefit cards logo colors override */
    #benefit .swiper-slide:nth-child(1) .benefit_bx { background-color: #ffae2b !important; }
    #benefit .swiper-slide:nth-child(1) .benefit_bx .title,
    #benefit .swiper-slide:nth-child(1) .benefit_bx p { color: #032b31 !important; }

    #benefit .swiper-slide:nth-child(2) .benefit_bx { background-color: #19958d !important; }
    #benefit .swiper-slide:nth-child(2) .benefit_bx .title,
    #benefit .swiper-slide:nth-child(2) .benefit_bx p { color: #ffffff !important; }

    #benefit .swiper-slide:nth-child(3) .benefit_bx { background-color: #A1CE22 !important; }
    #benefit .swiper-slide:nth-child(3) .benefit_bx .title,
    #benefit .swiper-slide:nth-child(3) .benefit_bx p { color: #032b31 !important; }

    /* Fix View All Products hover text color */
    .all_pro:hover .text { color: #ffffff !important; }

    /* Specific fix for variation button text colors */
    #variations .swiper-slide:nth-child(1) .item_bx a.shop_now .text { color: #032b31 !important; }
    #variations .swiper-slide:nth-child(2) .item_bx a.shop_now .text { color: #ffffff !important; }
    /* ===================== HERO TITLE GLACE EFFECT ===================== */
    .mh-title {
        display: inline-block;
        position: relative;
        overflow: hidden;
        background: linear-gradient(90deg, currentColor 0%, currentColor 45%, #fff 50%, currentColor 55%, currentColor 100%);
        background-size: 200% auto;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        transition: 0.5s;
    }
    .mh-title:hover {
        background-position: -100% center !important;
    }
    /* ==========================================================================
       CLEAN MOBILE & TABLET REBUILD (REPLACES PREVIOUS MOBILE CSS)
       ========================================================================== */
    /* ===== UNIFIED HAMBURGER HEADER (ALL SCREEN SIZES) ===== */

    /* Base header */
    #Header {
        position: fixed !important;
        top: 44px !important; left: 0 !important; width: 100% !important;
        z-index: 10000 !important;
        background: transparent;
        transition: background 0.4s ease, box-shadow 0.4s ease;
    }
    #Header.sticky {
        position: fixed !important;
        top: 44px !important;
        background: #032b31 !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
    }
    #Header.hide { transform: translateY(-100%); }

    /* Hide old elements we no longer need */
    .top_hdr, #HeaderMain .cNavWrap, .desktop-hub,
    .SearchBox, .MyaccountDrop { display: none !important; }

    /* Header bar */
    .header-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 40px;
        max-width: 1400px;
        margin: 0 auto;
    }
    @media (max-width: 768px) {
        .header-bar { padding: 14px 20px; }
    }

    .header-logo img { max-height: 80px; width: auto; display: block; }

    .header-right {
        display: flex;
        align-items: center;
        gap: 22px;
    }

    /* Cart icon */
    .hdr-cart {
        position: relative;
        color: #fff;
        font-size: 1.3rem;
        text-decoration: none;
        transition: color 0.3s;
        flex-shrink: 0;
    }
    .hdr-cart:hover { color: #ffae2b; }
    .hdr-cart .cartCountData {
        position: absolute;
        top: -8px; right: -10px;
        background: #A1CE22;
        color: #032b31;
        font-size: 0.65rem;
        font-weight: 900;
        border-radius: 50%;
        padding: 2px 5px;
        line-height: 1;
    }

    /* ===== HAMBURGER BUTTON ===== */
    .ham-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        width: 46px; height: 46px;
        background: rgba(255,255,255,0.08);
        border: 1.5px solid rgba(255,255,255,0.18);
        border-radius: 12px;
        cursor: pointer;
        flex-shrink: 0;
        transition: background 0.3s, border-color 0.3s;
        z-index: 10001;
        padding: 0;
    }
    .ham-btn:hover { background: rgba(255,174,43,0.15); border-color: #ffae2b; }
    .ham-btn span {
        display: block;
        width: 22px; height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
        transform-origin: center;
    }
    .ham-btn.open { background: rgba(255,174,43,0.2); border-color: #ffae2b; }
    .ham-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: #ffae2b; }
    .ham-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .ham-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: #ffae2b; }

    /* ===== FULL-SCREEN OVERLAY MENU ===== */
    #navOverlay {
        position: fixed;
        inset: 0;
        background: #011a1e;
        z-index: 10005;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    #navOverlay.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav-overlay-inner {
        display: flex;
        flex-direction: column;
        height: 100%;
        padding: 28px 60px 40px;
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
    }
    @media (max-width: 768px) {
        .nav-overlay-inner { padding: 28px 28px 36px; }
    }

    .nav-overlay-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
    }
    @media (max-width: 768px) {
        .nav-overlay-head { margin-bottom: 16px; }
    }

    .overlay-logo img { max-height: 70px; width: auto; }

    /* ===== VERTICAL MENU ITEMS (MenuVertical style) ===== */
    .vertical-menu {
        display: flex;
        flex-direction: column;
        gap: 0;
        flex: 1;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .vm-item {
        display: flex;
        align-items: center;
        gap: 0;
        /* NO overflow:hidden — it clips first letters */
        opacity: 0;
        transform: translateX(40px);
        transition: opacity 0.4s ease, transform 0.4s ease;
        padding-left: 10px;
    }
    #navOverlay.open .vm-item { opacity: 1; transform: translateX(0); }
    #navOverlay.open .vm-item:nth-child(1) { transition-delay: 0.08s; }
    #navOverlay.open .vm-item:nth-child(2) { transition-delay: 0.14s; }
    #navOverlay.open .vm-item:nth-child(3) { transition-delay: 0.20s; }
    #navOverlay.open .vm-item:nth-child(4) { transition-delay: 0.26s; }
    #navOverlay.open .vm-item:nth-child(5) { transition-delay: 0.32s; }
    #navOverlay.open .vm-item:nth-child(6) { transition-delay: 0.38s; }
    #navOverlay.open .vm-item:nth-child(7) { transition-delay: 0.44s; }

    .vm-arrow {
        transform: translateX(-120%);
        opacity: 0;
        color: #ffae2b;
        transition: transform 0.35s ease, opacity 0.35s ease, margin-right 0.35s ease;
        font-size: clamp(1.4rem, 2.5vw, 2rem);
        flex-shrink: 0;
        line-height: 1;
        margin-right: 0;
        width: 0;
        overflow: visible;
        pointer-events: none;
    }
    .vm-item:hover .vm-arrow {
        transform: translateX(0);
        opacity: 1;
        margin-right: 14px;
    }
    .vm-arrow i { display: block; }

    .vm-item a {
        font-size: clamp(1.4rem, 2.2vw, 2.2rem);
        font-weight: 700;
        color: rgba(255,255,255,0.85);
        text-decoration: none;
        font-family: 'Libre Baskerville', Georgia, serif;
        /* No initial translateX — was clipping first letters */
        transition: color 0.3s ease, letter-spacing 0.3s ease;
        display: block;
        line-height: 1.1;
        padding: 4px 0;
        white-space: nowrap;
    }
    .vm-item:hover a {
        color: #ffae2b;
        letter-spacing: 0.01em;
    }

    /* Divider line between main links and utility */
    .nav-divider {
        height: 1px;
        background: rgba(255,255,255,0.08);
        margin: 24px 0;
        opacity: 0;
        transition: opacity 0.4s ease 0.4s;
    }
    #navOverlay.open .nav-divider { opacity: 1; }

    /* Utility links (Cart, Login, Register) */
    .nav-utils {
        display: flex;
        gap: 28px;
        align-items: center;
        flex-wrap: wrap;
        opacity: 0;
        transition: opacity 0.4s ease 0.45s;
    }
    #navOverlay.open .nav-utils { opacity: 1; }
    .nav-utils a {
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 600;
        display: flex; align-items: center; gap: 8px;
        transition: color 0.3s;
    }
    .nav-utils a:hover { color: #ffae2b; }
    .nav-utils a i { font-size: 0.9rem; }

    /* Contact footer in overlay */
    .nav-contact {
        margin-top: 16px;
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        opacity: 0;
        transition: opacity 0.4s ease 0.5s;
    }
    #navOverlay.open .nav-contact { opacity: 1; }
    .nav-contact a {
        color: #ffae2b;
        font-size: 0.85rem;
        font-weight: 700;
        text-decoration: none;
        white-space: nowrap;
    }
    .nav-contact a:hover { text-decoration: underline; }

    /* Decorative overlay accent */
    #navOverlay::before {
        content: 'CLARAS';
        position: absolute;
        bottom: -40px; right: -20px;
        font-family: 'Libre Baskerville', serif;
        font-size: clamp(8rem, 18vw, 18rem);
        font-weight: 900;
        color: rgba(255,255,255,0.025);
        pointer-events: none;
        user-select: none;
        letter-spacing: -5px;
        line-height: 1;
    }

    @media (max-width: 768px) {
        /* Mobile hero adjustments */
        #minimalist-hero * { box-sizing: border-box !important; }
        #minimalist-hero { 
            height: auto !important; min-height: 100vh !important; 
            padding: 0 !important; 
            display: flex !important; flex-direction: column !important; 
            overflow: hidden !important;
            position: relative;
            width: 100% !important;
            max-width: 100vw !important;
        }
        .mh-slides { position: relative !important; flex: 1 !important; overflow: hidden !important; min-height: 500px !important; display: flex; align-items: stretch; width: 100% !important; }
        .mh-slide { 
            position: absolute !important; inset: 0 !important; display: none !important; 
            flex-direction: column !important; align-items: center !important; justify-content: flex-start !important; 
            text-align: center !important; padding: 120px 20px 40px !important;
            width: 100% !important;
        }
        .mh-slide.active { display: flex !important; position: relative !important; }
        .mh-right { order: 1 !important; margin-bottom: 25px !important; width: 100% !important; z-index: 5 !important; }
        .mh-heading { font-size: clamp(3rem, 12vw, 4.5rem) !important; line-height: 1.1 !important; font-weight: 900 !important; margin: 0 !important; }
        .mh-center { order: 2 !important; margin: 20px 0 40px !important; width: 100% !important; position: relative !important; }
        .mh-product-img { max-width: 80vw !important; height: auto !important; max-height: 320px !important; object-fit: contain !important; z-index: 10 !important; position: relative !important; margin: 0 auto; display: block; }
        .mh-circle { width: 220px !important; height: 220px !important; bottom: 50px !important; left: 50% !important; transform: translateX(-50%) !important; z-index: 5 !important; position: absolute; border-radius: 50%; filter: blur(30px); }
        .mh-left { order: 3 !important; width: 100% !important; align-items: center !important; margin-top: 10px !important; display: flex; flex-direction: column; }
        .mh-desc { display: none !important; }
        .mh-read-more { display: inline-block !important; background: transparent !important; color: #fff !important; padding: 12px 30px !important; border-radius: 50px !important; font-weight: 800 !important; text-decoration: none !important; font-size: 1rem !important; transition: 0.3s !important; border: 2px solid rgba(255,255,255,0.4) !important; margin-top: 10px; }
        
        .mh-bottom { order: 4 !important; position: relative !important; width: 100% !important; padding: 20px !important; display: flex !important; flex-direction: column !important; gap: 15px !important; background: rgba(0,0,0,0.6) !important; border-top: 1px solid rgba(255,255,255,0.1) !important; z-index: 100 !important; backdrop-filter: blur(10px); }
        .mh-dots { position: relative !important; width: 100% !important; display: flex !important; justify-content: center !important; margin: 0 !important; }
        .mh-social { width: 100% !important; justify-content: center !important; margin: 0 !important; }
        .mh-location { display: none !important; }
        .mh-watermark { display: none !important; }
    }



    html, body { overflow-x: hidden !important; width: 100% !important; max-width: 100vw !important; position: relative; }

    /* Fix Why Choose Grid Heights */
    .wc-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
        margin-top: 60px;
        align-items: stretch !important; /* Forces equal height */
    }
    .wc-card { height: 100% !important; display: flex !important; flex-direction: column !important; }

    /* Payment Icons Row Fix */
    .payment-icons {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
        margin-top: 20px !important;
    }
    .payment-icons i {
        font-size: 30px !important;
        flex-shrink: 0 !important;
        color: #fff !important;
        opacity: 0.9 !important;
    }
    .payment-icons i:hover { color: #ffae2b !important; opacity: 1 !important; transform: scale(1.1) !important; }
    
/* ===================== WOOCOMMERCE MY ACCOUNT PAGE ===================== */
.woocommerce-account .woocommerce {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 80px;
    padding: 0 20px;
}

/* Sidebar Navigation */
.woocommerce-MyAccount-navigation {
    flex: 0 0 280px;
    background: #fff;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    align-self: flex-start;
}
@media (max-width: 768px) {
    .woocommerce-MyAccount-navigation { flex: 1 1 100%; margin-bottom: 20px; }
}

.woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.woocommerce-MyAccount-navigation li {
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid #f8fafc;
}
.woocommerce-MyAccount-navigation li:last-child {
    border-bottom: none;
}

.woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 16px 25px;
    color: #64748b;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
}

.woocommerce-MyAccount-navigation li a:hover {
    background: #fafafa;
    color: #ffae2b;
    padding-left: 32px;
}

.woocommerce-MyAccount-navigation li.is-active a {
    background: #032b31;
    color: #fff;
    font-weight: 600;
    border-left: 4px solid #ffae2b;
}

/* Main Content Area */
.woocommerce-MyAccount-content {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
@media (max-width: 768px) {
    .woocommerce-MyAccount-content { padding: 25px; }
}

/* Inside Content Styling */
.woocommerce-MyAccount-content > p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}
.woocommerce-MyAccount-content a:not(.button) {
    color: #ffae2b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.woocommerce-MyAccount-content a:not(.button):hover {
    color: #032b31;
    text-decoration: underline;
}

/* Tables in Account (Orders, Downloads) */
.woocommerce-MyAccount-content table.woocommerce-orders-table,
.woocommerce-MyAccount-content table.woocommerce-MyAccount-downloads {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}
.woocommerce-MyAccount-content table th {
    background: #f8fafc;
    color: #032b31;
    font-weight: 600;
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}
.woocommerce-MyAccount-content table td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
}
.woocommerce-MyAccount-content table tr:last-child td {
    border-bottom: none;
}
.woocommerce-MyAccount-content table .button {
    background: #032b31;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.3s;
}
.woocommerce-MyAccount-content table .button:hover {
    background: #ffae2b;
}

/* Forms & Addresses */
.woocommerce-MyAccount-content .u-columns {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.woocommerce-MyAccount-content .u-column1,
.woocommerce-MyAccount-content .u-column2 {
    flex: 1;
    min-width: 250px;
}
.woocommerce-MyAccount-content header.title h3 {
    color: #032b31;
    font-family: var(--font-heading);
    margin-bottom: 15px;
    font-size: 1.5rem;
}
.woocommerce-MyAccount-content address {
    font-style: normal;
    color: #64748b;
    line-height: 1.6;
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

/* Account Details Form */
.woocommerce-EditAccountForm {
    max-width: 800px;
}
.woocommerce-EditAccountForm fieldset {
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    background: #f8fafc;
}
.woocommerce-EditAccountForm legend {
    padding: 0 15px;
    font-weight: 600;
    color: #032b31;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}


/* ===== CART / CHECKOUT PAGE HERO ===== */
.cart-page-hero {
    background: linear-gradient(135deg, #032b31 0%, #064d57 100%);
    padding: 36px 20px 32px;
    text-align: center;
    color: #fff;
}
.cart-page-hero-inner { max-width: 1200px; margin: 0 auto; }
.cart-page-hero h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}
.cart-page-breadcrumb {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}
.cart-page-breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.cart-page-breadcrumb a:hover { color: #ffae2b; }
.cart-page-breadcrumb span { color: rgba(255,255,255,0.4); }

/* Page content section for cart — no extra top padding, WooCommerce adds its own */
.wc-page-content { padding: 0; }
.wc-page-content .container { padding: 0 20px; max-width: 1200px; margin: 0 auto; }

/* Fix body padding for cart/checkout: matches header height exactly */
body.woocommerce-cart,
body.woocommerce-checkout {
    padding-top: calc(44px + 124px) !important;
}
@media (max-width: 768px) {
    body.woocommerce-cart,
    body.woocommerce-checkout {
        padding-top: calc(44px + 79px) !important;
    }
}

/* ===== WOOCOMMERCE CART PAGE FIXES ===== */
.woocommerce-cart .woocommerce {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}
.woocommerce-cart table.shop_table {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    width: 100%;
}
.woocommerce-cart table.shop_table th {
    background: #f8fafc;
    color: #032b31;
    font-weight: 600;
    padding: 15px;
}
.woocommerce-cart table.shop_table td {
    padding: 15px;
    border-top: 1px solid #e2e8f0;
    vertical-align: middle;
}
.woocommerce-cart table.shop_table img {
    max-width: 80px;
    height: auto;
    border-radius: 8px;
}
.woocommerce-cart .cart-collaterals {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}
.woocommerce-cart .cart-collaterals .cross-sells,
.woocommerce-cart .cart-collaterals .cart_totals {
    width: 48%;
}
.woocommerce-cart .cart-collaterals .cross-sells ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.woocommerce-cart .cart-collaterals .cross-sells ul.products li.product {
    width: 100%;
    margin: 0;
}
.woocommerce-cart .cart-collaterals .cross-sells img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}
.woocommerce-cart .button {
    background: #032b31;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.woocommerce-cart .button:hover {
    background: #021a1e;
}
@media (max-width: 768px) {
    .woocommerce-cart .cart-collaterals .cross-sells,
    .woocommerce-cart .cart-collaterals .cart_totals {
        width: 100%;
    }
}



/* ===== WOOCOMMERCE CART BLOCK FIXES ===== */
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
    max-width: 1200px;
    margin: 30px auto 60px;
    padding: 0 20px;
}
.wc-block-cart-items {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}
.wc-block-components-product-sale-badge {
    display: none;
}
/* Fix cross-sells / new in store images */
body .wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-image {
    max-width: 150px !important;
    height: auto !important;
    margin: 0 auto !important;
}
body .wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-image img {
    border-radius: 8px !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
}
.wc-block-grid__products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.wc-block-grid__product {
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
    border: 1px solid #e2e8f0;
    padding: 15px;
    border-radius: 8px;
}
.wc-block-cart__cross-sells {
    margin-top: 50px;
}
.wc-block-components-product-title {
    font-size: 1.1rem;
    color: #032b31;
    margin-top: 10px;
    font-weight: 600;
}
.wc-block-components-product-price {
    color: #64748b;
    margin-bottom: 15px;
}
.wp-block-button__link {
    background: #032b31 !important;
    color: #fff !important;
    border-radius: 6px !important;
}
/* Fix Header Gap — use correct header height (124px desktop, 79px mobile) */
body.woocommerce-page .inner-banner {
    display: none !important;
}
body.woocommerce-page {
    padding-top: calc(44px + 124px) !important;
}
@media (max-width: 768px) {
    body.woocommerce-page {
        padding-top: calc(44px + 79px) !important;
    }
}

/* ===== WORDPRESS ADMIN BAR OFFSET =====
 * The admin bar adds html { margin-top: 32px } which automatically shifts body content.
 * We only need to move the fixed marquee and header down so they don't hide behind the admin bar.
 * The 'admin-bar' class is on BODY, so we use it as an ancestor for header/marquee. */
.admin-bar #flash-marquee-top {
    top: 32px !important;
}
.admin-bar header#Header {
    top: calc(32px + 44px) !important;
}
@media (max-width: 782px) {
    .admin-bar #flash-marquee-top { top: 46px !important; }
    .admin-bar header#Header { top: calc(46px + 44px) !important; }
}

/* ============================================================
   SINGLE PRODUCT PAGE — Clara's Custom Styling
   ============================================================ */
.single-product #pageWrapper,
.woocommerce-page.single-product div.woocommerce {
    padding-top: 0;
}

/* Breadcrumb */
.woocommerce-breadcrumb {
    background: #f6fae8;
    padding: 14px 32px !important;
    font-size: 0.82rem;
    color: #6b7280;
    margin-bottom: 0 !important;
    border-bottom: 1px solid #e5e7eb;
}
.woocommerce-breadcrumb a { color: #032b31; text-decoration: none; }
.woocommerce-breadcrumb a:hover { color: #ffae2b; }

/* Main product layout */
.woocommerce div.product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}
.woocommerce div.product .woocommerce-product-gallery {
    width: 100%;
}
.woocommerce div.product .entry-summary {
    width: 100%;
    padding: 0;
}

/* Product title */
.woocommerce div.product .product_title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #032b31;
    line-height: 1.2;
    margin-bottom: 12px;
}

/* Price */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    font-size: 1.5rem !important;
    font-weight: 800;
    color: #ffae2b !important;
    margin-bottom: 20px;
}
.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
    color: #9ca3af !important;
    font-size: 1rem;
    font-weight: 400;
}

/* Variation table */
.woocommerce div.product .variations_form .variations { width: 100%; }
.woocommerce div.product .variations td,
.woocommerce div.product .variations th {
    padding: 8px 0;
    vertical-align: middle;
}
.woocommerce div.product .variations th.label { font-weight: 700; color: #032b31; }
.woocommerce div.product table.variations select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #032b31;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s;
    -webkit-appearance: auto;
}
.woocommerce div.product table.variations select:focus { border-color: #032b31; outline: none; }

/* Quantity */
.woocommerce .quantity input.qty {
    width: 70px;
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #032b31;
    text-align: center;
}

/* Add to Cart button */
.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce .single-product button.single_add_to_cart_button,
.woocommerce a.button.single_add_to_cart_button {
    background: #032b31 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 14px 36px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    font-family: var(--font-body, 'Nunito', sans-serif) !important;
    cursor: pointer !important;
    transition: background 0.3s, transform 0.2s !important;
    letter-spacing: 0.02em;
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover {
    background: #ffae2b !important;
    color: #032b31 !important;
    transform: translateY(-2px);
}

/* SKU / Meta */
.woocommerce div.product .product_meta { font-size: 0.82rem; color: #6b7280; margin-top: 16px; }
.woocommerce div.product .product_meta a { color: #032b31; text-decoration: none; }
.woocommerce div.product .product_meta a:hover { color: #ffae2b; }

/* Product image gallery */
.woocommerce div.product div.images img {
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* Tabs (Description, Reviews etc.) */
.woocommerce div.product .woocommerce-tabs {
    grid-column: 1 / -1;
    margin-top: 20px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: flex;
    gap: 4px;
    padding: 0;
    margin: 0 0 -1px;
    border-bottom: 2px solid #e5e7eb;
    list-style: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
    border: none !important;
    background: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #6b7280;
    text-decoration: none;
    border-radius: 8px 8px 0 0;
    border: 2px solid transparent;
    border-bottom: none;
    transition: color 0.2s;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #032b31;
    border-color: #e5e7eb;
    border-bottom-color: #fff;
    background: #fff;
}
.woocommerce div.product .woocommerce-tabs .panel {
    padding: 28px;
    border: 2px solid #e5e7eb;
    border-top: none;
    border-radius: 0 12px 12px 12px;
    background: #fff;
}

/* Related products */
.woocommerce .related.products { grid-column: 1 / -1; }
.woocommerce .related h2,
.woocommerce .up-sells h2 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.5rem;
    font-weight: 800;
    color: #032b31;
    margin-bottom: 24px;
}

/* Override WooCommerce default float-based grid for related products */
.woocommerce .related.products ul.products,
.woocommerce .up-sells ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.woocommerce .related.products ul.products li.product,
.woocommerce .up-sells ul.products li.product {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Ensure inner card fills the li */
.woocommerce .related.products ul.products li.product > .claras-product-card-inner,
.woocommerce .related.products ul.products li.product > div,
.woocommerce .up-sells ul.products li.product > .claras-product-card-inner,
.woocommerce .up-sells ul.products li.product > div {
    height: 100%;
}

@media (max-width: 1024px) {
    .woocommerce .related.products ul.products,
    .woocommerce .up-sells ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .woocommerce .related.products ul.products,
    .woocommerce .up-sells ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }
}

/* Stock status */
.woocommerce div.product .stock.in-stock { color: #A1CE22; font-weight: 700; }
.woocommerce div.product .stock.out-of-stock { color: #ef4444; font-weight: 700; }

/* Responsive */
@media (max-width: 768px) {
    .woocommerce div.product {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px 16px;
    }
    .woocommerce div.product .product_title { font-size: 1.5rem; }
}



/* ===================== PRODUCT PAGE SPECIFIC ===================== */
.breadcrumb-section { padding: 15px 0; background: #f8fafc; border-bottom: 1px solid #edf2f7; }
.breadcrumb-section ol { display: flex; gap: 10px; list-style: none; padding: 0; margin: 0; font-size: 0.85rem; color: #64748b; font-family: var(--font-body, 'Nunito', sans-serif); }
.breadcrumb-section a { color: inherit; text-decoration: none; transition: color 0.3s; }
.breadcrumb-section a:hover { color: #A1CE22; }

.product-details-container { padding: 40px 0; max-width: 1400px; margin: 0 auto; }
.product-grid { display: grid; grid-template-columns: 35% 38% 25%; gap: 2%; align-items: start; }
.product-grid > * { min-width: 0; }

/* Gallery */
.product-gallery { position: sticky; top: 120px; display: flex; gap: 15px; align-self: start; max-height: calc(100vh - 140px); overflow: hidden; }
.thumbnails { display: flex; flex-direction: column; gap: 10px; width: 65px; flex-shrink: 0; }
.thumb { aspect-ratio: 1; border: 1px solid #eee; border-radius: 8px; overflow: hidden; cursor: pointer; padding: 4px; transition: border-color 0.3s; }
.thumb.active { border-color: #032b31; }
.thumb img { width: 100%; height: 100%; object-fit: contain; }
.main-image-container { flex: 1; background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 20px; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; overflow: hidden; cursor: zoom-in; position: relative; }
.main-image-container img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.15s ease-out; }

/* Info Column */
.product-info-col { padding: 0 15px; font-family: var(--font-body, 'Nunito', sans-serif); }
.product-title { font-family: var(--font-heading, 'Outfit', sans-serif); color: #032b31; font-size: 2.4rem; font-weight: 700; margin-bottom: 10px; line-height: 1.2; }
.rating-summary { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #eee; }
.stars { color: #ffa41c; font-size: 0.9rem; }
.review-count { color: #032b31; font-size: 0.85rem; font-weight: 600; }

.variant-selector { margin-bottom: 30px; }
.variant-label { font-size: 0.95rem; font-weight: 700; color: #032b31; margin-bottom: 12px; }
.variant-label span { color: #A1CE22; }
.size-boxes { display: flex; gap: 12px; flex-wrap: wrap; }
.size-box { border: 2px solid #eee; background: #fff; padding: 12px 20px; border-radius: 12px; cursor: pointer; min-width: 100px; text-align: center; transition: all 0.3s; }
.size-box.active { border-color: #032b31; background: #fdf8e3; }
.size-box h4 { margin: 0; font-size: 1rem; color: #032b31; }
.size-box p { margin: 2px 0 0; color: #6b7280; font-size: 0.8rem; }

.info-section { border-top: 1px solid #eee; padding-top: 25px; margin-top: 25px; }
.info-section h3 { font-family: var(--font-heading, 'Outfit', sans-serif); font-size: 1.3rem; color: #032b31; margin-bottom: 15px; }
.info-label { font-weight: 700; color: #032b31; margin-bottom: 5px; }
.info-content { color: #4b5563; line-height: 1.6; margin-bottom: 20px; font-size: 0.95rem; }

/* Buy Box */
.buy-box { border: 1px solid #eee; border-radius: 24px; padding: 30px; background: #fff; position: sticky; top: 120px; align-self: start; box-shadow: 0 10px 35px rgba(0,0,0,0.05); }
.buy-box-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 10px; }
.price-main { font-size: 1.55rem; font-weight: 800; color: #032b31; font-family: var(--font-heading, 'Outfit', sans-serif); line-height: 1.3; }
.price-old { font-size: 1.1rem; color: #94a3b8; text-decoration: line-through; }
.stock-status { color: #16a34a; font-size: 0.9rem; font-weight: 700; margin-bottom: 20px; }
.delivery-info { font-size: 0.9rem; color: #4b5563; margin-bottom: 25px; display: flex; gap: 10px; align-items: flex-start; }
.delivery-info i { color: #A1CE22; margin-top: 3px; }

.qty-selector { margin-bottom: 25px; }
.qty-label { font-size: 0.85rem; color: #64748b; margin-bottom: 8px; }
.qty-controls { display: flex; align-items: center; border: 1.5px solid #e2e8f0; border-radius: 12px; width: fit-content; overflow: hidden; }
.qty-btn { padding: 8px 15px; border: none; background: #f8fafc; cursor: pointer; color: #032b31; transition: background 0.2s; }
.qty-btn:hover { background: #f1f5f9; }
.qty-input { width: 50px; text-align: center; border: none; font-weight: 700; font-size: 1rem; color: #032b31; background: #fff; }

/* Related Section */
.related-section { padding: 80px 0; background: #fdfbfb; border-top: 1px solid #eee; }
.section-title { text-align: center; font-family: var(--font-heading, 'Outfit', sans-serif); color: #032b31; font-size: 2.2rem; margin-bottom: 50px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1400px; margin: 0 auto; padding: 0 20px; }

@media (max-width: 1024px) {
    .product-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .buy-box { position: static; grid-column: 1 / -1; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
}
.reviews-grid { display: grid; grid-template-columns: 300px 1fr; gap: 60px; }
@media (max-width: 768px) {
    .product-grid { grid-template-columns: 1fr; }
    .product-gallery { position: static; flex-direction: column-reverse; }
    .thumbnails { flex-direction: row; width: 100%; overflow-x: auto; padding-bottom: 10px; }
    .thumb { width: 60px; height: 60px; flex-shrink: 0; }
    .breadcrumb-section { margin-top: 0; }
    .reviews-grid { grid-template-columns: 1fr; gap: 40px; }
    .related-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
}
