:root {
    --bg: #ffffff;
    --text: #000000;
    --accent: #d00000;
    --accent-dark: #a00000;
    --gray-light: #f5f5f5;
    --gray-mid: #e0e0e0;
    --gray-dark: #333333;
    --white: #ffffff;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Poppins', sans-serif;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
    --border-radius: 6px;
    --header-height: 70px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent; }
ul { list-style: none; }
img { max-width: 100%; display: block; height: auto; }
button { cursor: pointer; border: none; background: none; font-family: inherit; -webkit-tap-highlight-color: transparent; }

/* LOADING SCREEN */
.loading-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #ffffff; display: flex; align-items: center; justify-content: center;
    z-index: 10000; transition: opacity 0.5s ease, visibility 0.5s ease; opacity: 1; visibility: visible;
}
.loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-glow {
    position: absolute; width: 160px; height: 160px; border-radius: 50%;
    background: radial-gradient(circle, rgba(208, 0, 0, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
    animation: pulseGlow 1.8s infinite ease-in-out;
}
@keyframes pulseGlow {
    0%, 100% { transform: scale(0.75); opacity: 0.4; }
    50% { transform: scale(1.15); opacity: 0.15; }
}
.loading-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.loading-image { width: 104px; height: auto; animation: fadeInScale 0.8s ease; }
.loading-fallback svg { animation: fadeInScale 0.8s ease; width: 104px; height: auto; }
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.75); }
    to { opacity: 1; transform: scale(1); }
}
.loading-bar-container { width: 130px; height: 3px; background: #f0f0f0; border-radius: 10px; overflow: hidden; }
.loading-bar { height: 100%; width: 0%; background: var(--accent); border-radius: 10px; animation: loadingBar 1s ease-in-out forwards; }
@keyframes loadingBar { 0% { width: 0%; } 100% { width: 100%; } }

/* HEADER */
.header {
    position: sticky; top: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    z-index: 1000; border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    height: var(--header-height); display: flex; align-items: center;
    transition: background 0.3s;
}
.nav-container {
    max-width: 1400px; width: 100%; margin: 0 auto; padding: 0 1.5rem;
    display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.nav-left { display: flex; align-items: center; flex-shrink: 0; }
.logo-link {
    display: flex; align-items: center; gap: 0.45rem; font-weight: 800;
    font-size: 1.3rem; font-family: var(--font-heading); letter-spacing: 1.5px;
    color: var(--text); white-space: nowrap;
}
.logo-img,
.footer-logo-img { width: 50px; height: 50px; object-fit: contain; flex-shrink: 0; }
.logo-fallback,
.footer-logo-fallback { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.brand-name { font-size: 1.2rem; letter-spacing: 2px; }
.nav-center .nav-links {
    display: flex; gap: 2.2rem; font-weight: 600; font-size: 0.9rem;
    text-transform: uppercase; letter-spacing: 1.5px;
}
.nav-link { position: relative; padding: 0.4rem 0; transition: color 0.3s; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s; }
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.cart-btn { position: relative; display: flex; align-items: center; color: var(--text); transition: color 0.3s; padding: 0.4rem; }
.cart-btn:hover { color: var(--accent); }
.cart-count {
    position: absolute; top: -3px; right: -8px;
    background: var(--accent); color: white; font-size: 0.65rem; font-weight: 700;
    width: 17px; height: 17px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-family: var(--font-body); line-height: 1;
}
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 0.4rem; }
.hamburger span { width: 23px; height: 2px; background: var(--text); transition: var(--transition); display: block; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-nav {
    position: fixed; top: var(--header-height); left: 0; width: 100%;
    background: white; border-bottom: 1px solid #f0f0f0; padding: 1rem 0;
    transform: translateY(-100%); opacity: 0; transition: transform 0.35s ease, opacity 0.3s ease;
    z-index: 999; pointer-events: none; box-shadow: var(--shadow-sm);
}
.mobile-nav.active { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; }
.mobile-nav-link { padding: 0.4rem; transition: color 0.3s; }
.mobile-nav-link:hover { color: var(--accent); }

/* CART DRAWER */
.cart-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); z-index: 2000; opacity: 0; visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
}
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-drawer {
    position: fixed; top: 0; right: 0; width: 400px; max-width: 92vw; height: 100%;
    background: white; z-index: 2001; box-shadow: -4px 0 28px rgba(0, 0, 0, 0.1);
    transform: translateX(100%); transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex; flex-direction: column;
}
.cart-drawer.active { transform: translateX(0); }
.cart-drawer-header {
    padding: 1.2rem 1.4rem; border-bottom: 1px solid #f0f0f0;
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-heading); letter-spacing: 1.5px; font-size: 1.2rem;
}
.cart-close { padding: 0.4rem; color: var(--text); transition: color 0.3s; }
.cart-close:hover { color: var(--accent); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 1.2rem 1.4rem; -webkit-overflow-scrolling: touch; }
.cart-empty {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    height: 100%; color: #888; gap: 0.8rem; text-align: center;
}
.cart-empty p { font-weight: 600; font-size: 1rem; color: #444; }
.cart-empty span { font-size: 0.85rem; color: #999; }
.cart-item { display: flex; gap: 0.9rem; padding: 1rem 0; border-bottom: 1px solid #f0f0f0; align-items: center; }
.cart-item-img { width: 64px; height: 64px; object-fit: cover; border-radius: 4px; background: #f9f9f9; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-title { font-weight: 600; font-size: 0.85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { color: #555; font-size: 0.8rem; }
.cart-item-actions { display: flex; align-items: center; gap: 0.4rem; margin-top: 0.25rem; }
.qty-btn {
    width: 26px; height: 26px; border: 1px solid #ddd; background: white;
    font-weight: 600; display: flex; align-items: center; justify-content: center;
    border-radius: 3px; transition: all 0.2s; font-size: 0.85rem;
}
.qty-btn:hover { background: #f0f0f0; }
.remove-btn {
    color: var(--accent); font-size: 0.75rem; margin-left: auto; text-decoration: underline;
    cursor: pointer; background: none; border: none; font-weight: 500;
}
.cart-drawer-footer { padding: 1.2rem 1.4rem; border-top: 1px solid #f0f0f0; background: #fafafa; }
.cart-total-row { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.05rem; }
.cart-shipping-note { font-size: 0.75rem; color: #777; margin: 0.4rem 0 0.9rem; }
.checkout-btn {
    width: 100%; padding: 0.85rem; background: var(--accent); color: white;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    border: none; border-radius: 4px; transition: background 0.3s; font-size: 0.9rem;
}
.checkout-btn:hover { background: var(--accent-dark); }

/* HERO */
.hero {
    position: relative; min-height: 82vh; display: flex; align-items: center;
    justify-content: center; text-align: center; padding: 3rem 1.5rem; overflow: hidden;
}
.hero-bg-accent {
    position: absolute; top: -80px; right: -120px; width: 420px; height: 420px;
    border-radius: 50%; background: radial-gradient(circle, rgba(208, 0, 0, 0.055) 0%, transparent 70%);
    z-index: 0; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 850px; }
.hero-badge {
    display: inline-block; background: var(--accent); color: white;
    padding: 0.4rem 1.3rem; font-size: 0.8rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1.2rem;
    font-family: var(--font-body);
}
.hero-title {
    font-family: var(--font-heading); font-size: clamp(3rem, 9vw, 6.5rem);
    line-height: 0.88; letter-spacing: 3px; margin-bottom: 1.2rem;
}
.hero-title-outline { color: transparent; -webkit-text-stroke: 2px var(--accent); }
.hero-subtitle {
    font-size: 1rem; color: #444; max-width: 600px; margin: 0 auto 2rem;
    font-weight: 400; line-height: 1.6; display: flex; flex-direction: column; gap: 0.3rem;
}
.hero-subtitle span { display: block; }
.hero-buttons { display: flex; gap: 0.9rem; flex-wrap: wrap; justify-content: center; }
.btn {
    padding: 0.8rem 1.9rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; font-size: 0.85rem; transition: var(--transition);
    display: inline-block; border-radius: 4px; font-family: var(--font-body);
    cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: white; border: 2px solid var(--accent); }
.btn-primary:hover { background: transparent; color: var(--accent); }
.btn-outline { background: transparent; color: var(--text); border: 2px solid var(--text); }
.btn-outline:hover { background: var(--text); color: white; }

.animate-fade-in { opacity: 0; transform: translateY(28px); animation: fadeInUp 0.75s forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

/* MARQUEE */
.marquee-section { background: var(--text); color: white; padding: 0.35rem 0; overflow: hidden; white-space: nowrap; position: relative; }
.marquee-track { display: flex; width: max-content; animation: marquee 22s linear infinite; will-change: transform; }
.marquee-content { display: flex; gap: 1.6rem; align-items: center; padding-right: 1.6rem; flex-shrink: 0; }
.marquee-item { font-weight: 700; font-size: 0.85rem; letter-spacing: 2px; font-family: var(--font-body); display: inline-block; }
.highlight-red { color: var(--accent); }
.marquee-separator { font-size: 0.6rem; color: #555; display: inline-block; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* COUNTDOWN */
.countdown-section { padding: 1.4rem 1.5rem; text-align: center; background: #fafafa; }
.countdown-heading { font-family: var(--font-heading); font-size: clamp(1.6rem, 4vw, 2.2rem); letter-spacing: 3px; margin-bottom: 1rem; }
.countdown-timer { display: flex; justify-content: center; gap: 0.8rem; flex-wrap: wrap; align-items: center; }
.countdown-block { background: white; padding: 0.8rem 0.9rem; border-radius: var(--border-radius); box-shadow: var(--shadow-sm); min-width: 72px; border: 1px solid #f0f0f0; }
.countdown-number { font-family: var(--font-heading); font-size: 2.2rem; display: block; color: var(--accent); line-height: 1; letter-spacing: 1px; }
.countdown-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; color: #555; margin-top: 2px; display: block; }
.countdown-colon { font-size: 1.6rem; font-weight: 700; color: var(--accent); line-height: 1; }
.countdown-subtext { margin-top: 0.8rem; color: #777; font-size: 0.85rem; }

/* COLLECTION (now Shop) */
.collection-section { padding: 1.8rem 1.5rem 3.5rem; max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 2.2rem; }
.section-tag { color: var(--accent); font-weight: 700; letter-spacing: 3px; font-size: 0.8rem; text-transform: uppercase; }
.section-title { font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 3.2rem); letter-spacing: 2px; margin: 0.3rem 0; }
.section-subtitle { color: #555; max-width: 460px; margin: 0 auto; font-size: 0.9rem; }
.product-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; }
.product-card { background: white; border: 1px solid #f0f0f0; border-radius: var(--border-radius); overflow: hidden; transition: var(--transition); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.product-image-container { overflow: hidden; position: relative; background: #f5f5f5; aspect-ratio: 3/4; width: 100%; }
.product-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; display: block; }
.product-card:hover .product-image { transform: scale(1.06); }
.product-info { padding: 0.9rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.product-title { font-weight: 700; font-size: 0.9rem; line-height: 1.2; }
.product-price { font-weight: 600; color: var(--accent); font-size: 0.95rem; }
.size-options { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.size-btn { border: 1px solid #ddd; padding: 0.3rem 0.55rem; font-size: 0.7rem; font-weight: 600; border-radius: 3px; background: white; transition: all 0.2s; line-height: 1; }
.size-btn.selected, .size-btn:hover { background: var(--text); color: white; border-color: var(--text); }
.add-to-cart-btn { width: 100%; padding: 0.6rem; background: var(--accent); color: white; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-radius: 4px; transition: background 0.3s; font-size: 0.75rem; margin-top: auto; }
.add-to-cart-btn:hover { background: var(--accent-dark); }

/* INFO */
.info-section { background: white; padding: 3.5rem 1.5rem; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; }
.info-container { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; text-align: center; }
.info-card h3 { font-family: var(--font-heading); font-size: 1.6rem; letter-spacing: 1px; margin: 0.7rem 0 0.4rem; }
.info-card p { color: #555; font-size: 0.9rem; line-height: 1.5; }

/* NEWSLETTER */
.newsletter-section { background: var(--text); color: white; padding: 2.2rem 1.5rem; text-align: center; }
.newsletter-heading { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 2.8rem); letter-spacing: 3px; }
.newsletter-subheading { color: #ccc; max-width: 460px; margin: 0.6rem auto 1.4rem; font-size: 0.9rem; }
.newsletter-form { max-width: 480px; margin: 0 auto; }
.newsletter-input-group { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.newsletter-input-group input { flex: 1; min-width: 180px; padding: 0.8rem 1rem; border: none; font-family: inherit; border-radius: 4px; font-size: 0.9rem; }
.newsletter-btn { background: var(--accent); border: 2px solid var(--accent); white-space: nowrap; }
.newsletter-disclaimer { font-size: 0.75rem; color: #888; margin-top: 0.7rem; }
.newsletter-success { margin-top: 1rem; color: white; font-weight: 600; }

/* FOOTER */
.footer { background: #111; color: #ccc; padding: 2.2rem 1.5rem 1.2rem; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; align-items: start; }
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col.footer-col-brand { display: flex; flex-direction: column; gap: 0.4rem; align-items: flex-start; }
.footer-logo-img,
.footer-logo-fallback { width: 50px; height: 50px; object-fit: contain; }
.footer-brand-name { font-family: var(--font-heading); font-size: 1.6rem; letter-spacing: 2px; color: white; line-height: 1; display: block; }
.footer-tagline { font-size: 0.8rem; color: #888; letter-spacing: 1px; display: block; }
.footer-heading { color: white; font-family: var(--font-heading); letter-spacing: 1.5px; font-size: 1.2rem; margin-bottom: 0.6rem; }
.footer-care-item { font-size: 0.9rem; color: #bbb; margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.6rem; }
.footer-care-item a { color: #ddd; transition: color 0.3s; }
.footer-care-item a:hover { color: var(--accent); }
.footer-links { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links a { color: #aaa; transition: color 0.3s; font-size: 0.85rem; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { text-align: center; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid #222; font-size: 0.8rem; color: #777; max-width: 1200px; margin-left: auto; margin-right: auto; }
.footer-icon { width: 18px; height: 18px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; }

/* TOAST */
.toast {
    position: fixed; bottom: 1.5rem; left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--text); color: white; padding: 0.7rem 1.8rem;
    border-radius: 50px; font-weight: 600; z-index: 3000;
    transition: transform 0.4s ease; box-shadow: var(--shadow-md);
    white-space: nowrap; font-size: 0.85rem; pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .nav-center { display: none; }
    .hamburger { display: flex; }
    .hero-title { font-size: clamp(2.5rem, 8vw, 4.5rem); }
}
@media (max-width: 768px) {
    .hero { min-height: 65vh; padding: 2rem 1rem; }
    .cart-drawer { width: 100%; max-width: 100%; }
    .hero-badge { font-size: 0.7rem; padding: 0.3rem 1rem; letter-spacing: 2px; }
    .hero-subtitle { font-size: 0.9rem; }
    .btn { padding: 0.7rem 1.4rem; font-size: 0.78rem; letter-spacing: 1.5px; }
    .marquee-item { font-size: 0.72rem; letter-spacing: 1.5px; }
    .countdown-section { padding: 1rem 1rem; display: flex; align-items: center; justify-content: center; }
    .countdown-container { width: 100%; }
    .countdown-heading { font-size: 1.4rem; margin-bottom: 0.7rem; letter-spacing: 2px; }
    .countdown-block { min-width: 58px; padding: 0.6rem 0.5rem; }
    .countdown-number { font-size: 1.7rem; }
    .countdown-colon { font-size: 1.2rem; }
    .countdown-label { font-size: 0.65rem; }
    .countdown-timer { gap: 0.4rem; }
    .info-section { padding: 2.2rem 1rem; }
    .info-container { gap: 1.4rem; }
    .info-card h3 { font-size: 1.3rem; }
    .info-card p { font-size: 0.82rem; }
    .newsletter-section { padding: 1.6rem 1rem; }
    .newsletter-input-group { flex-direction: column; align-items: stretch; }
    .newsletter-input-group input { min-width: auto; }
    .newsletter-btn { width: 100%; text-align: center; }
    .footer { padding: 1.6rem 1rem 1rem; }
    .footer-container { grid-template-columns: 1fr; gap: 1.5rem; text-align: left; }
    .footer-col { align-items: flex-start; text-align: left; }
    .footer-heading { margin-bottom: 0.4rem; }
    .footer-care-item { font-size: 0.85rem; justify-content: flex-start; }
    .footer-bottom { text-align: center; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
    .collection-section { padding: 1.2rem 0.8rem 2.5rem; }
    .section-header { margin-bottom: 1.4rem; }
}
@media (max-width: 400px) {
    .product-grid { gap: 0.5rem; }
    .product-info { padding: 0.6rem; }
    .product-title { font-size: 0.78rem; }
    .product-price { font-size: 0.82rem; }
    .add-to-cart-btn { font-size: 0.7rem; padding: 0.5rem; }
    .size-btn { padding: 0.25rem 0.4rem; font-size: 0.65rem; }
}

/* ---- WooCommerce mini-cart overrides (added for real cart integration) ---- */
.cart-drawer .widget_shopping_cart_content {
    height:100%;
    display:flex;
    flex-direction:column;
}
.cart-drawer .woocommerce-mini-cart__empty-message {
    text-align:center;
    color:#888;
}
.cart-drawer .woocommerce-mini-cart-item {
    display:flex;
    gap:0.9rem;
    padding:1rem 0;
    border-bottom:1px solid #f0f0f0;
    align-items:center;
}
.cart-drawer .woocommerce-mini-cart-item img {
    width:64px;
    height:64px;
    object-fit:cover;
    border-radius:4px;
    background:#f9f9f9;
    flex-shrink:0;
}
.cart-drawer .woocommerce-mini-cart-item .mini-cart-item-details {
    flex:1;
    min-width:0;
}
.cart-drawer .mini-cart-item-title {
    font-weight:600;
    font-size:0.85rem;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.cart-drawer .mini-cart-item-quantity {
    font-size:0.8rem;
    color:#555;
}
.cart-drawer .mini-cart-item-remove {
    color:var(--accent);
    font-size:0.75rem;
    text-decoration:underline;
    cursor:pointer;
    background:none;
    border:none;
    font-weight:500;
}
.cart-drawer .woocommerce-mini-cart__total {
    font-weight:700;
    font-size:1.05rem;
    display:flex;
    justify-content:space-between;
    margin-bottom:0.4rem;
}
.cart-drawer .woocommerce-mini-cart__buttons {
    display:flex;
    flex-direction:column;
    gap:0.5rem;
}
.cart-drawer .woocommerce-mini-cart__buttons .button {
    width:100%;
    padding:0.85rem;
    background:var(--accent);
    color:white;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1.5px;
    border:none;
    border-radius:4px;
    transition:background 0.3s;
    font-size:0.9rem;
    text-align:center;
    display:inline-block;
}
.cart-drawer .woocommerce-mini-cart__buttons .button:hover {
    background:var(--accent-dark);
}
/* Single product layout */
.product-detail-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}
.product-image-gallery {
    flex: 1;
    min-width: 300px;
}
.product-summary {
    flex: 1;
    min-width: 300px;
}
.product_title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.product-price-large {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
}
/* WooCommerce form elements styling */
.product-summary .variations_form,
.product-summary .cart {
    margin-top: 1rem;
}
.product-summary .variations select {
    padding: 0.6rem;
    border: 1px solid #ddd;
    font-family: inherit;
    border-radius: 4px;
    margin-bottom: 0.8rem;
}
.product-summary .single_add_to_cart_button {
    background: var(--accent);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s;
}
.product-summary .single_add_to_cart_button:hover {
    background: var(--accent-dark);
}
@media (max-width: 768px) {
    .product-detail-container {
        flex-direction: column;
        gap: 2rem;
    }

/* ========== SINGLE PRODUCT LAYOUT (Shopify-style) ========== */
.single-product-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}
.single-product-gallery {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
}
.single-product-summary {
    flex: 1;
    min-width: 300px;
}
.product_title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    color: var(--text);
}
.single-product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
}
.single-product-sizes {
    margin: 1.5rem 0;
}
.size-label {
    font-weight: 600;
    margin-right: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}
.single-product-summary .size-options {
    display: inline-flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.single-product-summary .size-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border: 2px solid #ddd;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}
.single-product-summary .size-btn.selected,
.single-product-summary .size-btn:hover {
    background: var(--text);
    color: white;
    border-color: var(--text);
}

/* Quantity and Add to Cart button */
.single-product-summary .cart {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.8rem;
    flex-wrap: wrap;
}
.single-product-summary .quantity .qty {
    width: 60px;
    padding: 0.6rem;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}
.single-product-summary .single_add_to_cart_button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.85rem 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}
.single-product-summary .single_add_to_cart_button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}
/* Loading / added animation for add to cart button */
.add-to-cart-btn.loading,
.single_add_to_cart_button.loading {
    pointer-events: none;
    opacity: 0.7;
}
.add-to-cart-btn.added,
.single_add_to_cart_button.added {
    background: #4caf50 !important;
    border-color: #4caf50 !important;
    color: white;
}
.add-to-cart-btn.added::after,
.single_add_to_cart_button.added::after {
    content: " ✓";
}

/* Cart icon bounce animation */
@keyframes cartBounce {
    0% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(0.95); }
    75% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.cart-bounce {
    animation: cartBounce 0.4s ease;
}

/* Single product tabs */
.single-product-tabs {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}
.single-product-tabs .woocommerce-tabs ul.tabs {
    list-style: none;
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid #f0f0f0;
    padding: 0;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.single-product-tabs .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 0.8rem 1.2rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}
.single-product-tabs .woocommerce-tabs ul.tabs li.active a {
    border-bottom-color: var(--accent);
    color: var(--accent);
}

/* Responsive single product */
@media (max-width: 768px) {
    .single-product-layout {
        flex-direction: column;
        gap: 1.5rem;
    }
    .single-product-gallery {
        max-width: 100%;
    }
    .product_title {
        font-size: 2rem;
    }
    .single-product-price {
        font-size: 1.4rem;
    }
    .single-product-summary .cart {
        flex-direction: column;
        align-items: flex-start;
    }
    .single-product-summary .single_add_to_cart_button {
        width: 100%;
        text-align: center;
    }
}
/* ========== PREMIUM SHOP PAGE ========== */
.shop-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000000 100%);
    color: white;
    padding: 4rem 1.5rem;
    overflow: hidden;
}
.shop-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(208,0,0,0.08) 0%, transparent 70%);
}
.shop-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.shop-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 10vw, 6rem);
    letter-spacing: 5px;
    margin-bottom: 1rem;
    color: white;
    line-height: 1;
}
.shop-hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    font-weight: 300;
}
.shop-hero-btn {
    background: var(--accent);
    border: 2px solid var(--accent);
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
}
.shop-hero-features {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    font-size: 0.8rem;
    color: #aaa;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Toolbar */
.shop-toolbar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.shop-search {
    flex: 1;
    min-width: 200px;
    position: relative;
}
.shop-search input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.9rem;
    background: white;
    transition: border-color 0.3s;
}
.shop-search input:focus {
    border-color: var(--accent);
    outline: none;
}
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #eee;
    box-shadow: var(--shadow-md);
    border-radius: 0 0 4px 4px;
    z-index: 100;
    display: none;
    max-height: 320px;
    overflow-y: auto;
}
.search-results-dropdown.active {
    display: block;
}
.search-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
    color: inherit;
    text-decoration: none;
}
.search-item:hover {
    background: #fafafa;
}
.search-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 2px;
}
.search-item-title {
    font-weight: 600;
    font-size: 0.9rem;
}
.search-item-price {
    font-size: 0.8rem;
    color: var(--accent);
}
.shop-sorting select {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.9rem;
    background: white;
    cursor: pointer;
}
.filter-toggle {
    display: none;
    align-items: center;
    gap: 0.3rem;
    background: var(--text);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
}

/* Layout: Sidebar + Grid */
.shop-layout {
    display: flex;
    gap: 2rem;
}
.shop-sidebar {
    width: 260px;
    flex-shrink: 0;
}
.shop-products {
    flex: 1;
    min-width: 0;
}

/* Premium Card */
.premium-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}
.premium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.premium-card .product-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}
.premium-card .hover-image {
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.premium-card:hover .hover-image {
    opacity: 1;
}
.premium-card:hover .primary-image {
    opacity: 0;
}
.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}
.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
    z-index: 2;
}
.premium-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}
.action-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: background 0.2s;
    color: var(--text);
}
.action-btn:hover {
    background: var(--accent);
    color: white;
}
.product-info {
    padding: 1rem;
}
.product-title {
    margin-bottom: 0.3rem;
}
.product-title a {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
    transition: color 0.2s;
}
.product-title a:hover {
    color: var(--accent);
}
.product-price {
    margin: 0.4rem 0;
    font-size: 0.95rem;
}
.quick-add-btn {
    width: 100%;
    padding: 0.7rem;
    background: var(--text);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    margin-top: 0.8rem;
    cursor: pointer;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s;
}
.premium-card:hover .quick-add-btn {
    transform: translateY(0);
    opacity: 1;
}
.quick-add-btn:hover {
    background: var(--accent);
}

/* Trust Section */
.trust-section {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 1.5rem;
    background: #fafafa;
    flex-wrap: wrap;
    text-align: center;
}
.trust-item {
    max-width: 200px;
}
.trust-item .trust-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}
.trust-item h4 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
    color: var(--text);
}
.trust-item p {
    font-size: 0.8rem;
    color: #777;
}

/* Mobile Sidebar */
@media (max-width: 768px) {
    .filter-toggle {
        display: flex;
    }
    .shop-sidebar {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background: white;
        z-index: 3000;
        transition: left 0.3s;
        padding: 2rem 1.5rem;
        overflow-y: auto;
        box-shadow: 2px 0 20px rgba(0,0,0,0.1);
    }
    .shop-sidebar.active {
        left: 0;
    }
    .shop-layout {
        position: relative;
    }
    .sidebar-backdrop {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.3);
        z-index: 2999;
        display: none;
    }
    .sidebar-backdrop.active {
        display: block;
    }
}
}