/* --- CSS: MODERN MINIMALIST DESIGN --- */
:root {
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --black: #000000;
    --gray-dark: #333333;
    --gray-muted: #888888;
    --gray-light: #e5e5e5;
    --bg-body: #ffffff;
    --bg-card: #f9f9f9;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--black);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Welcome Modal */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); z-index: 3000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.4s ease; padding: 20px;
}
.modal-overlay.show { opacity: 1; visibility: visible; }
.modal-content {
    background: white; padding: 40px; border-radius: 16px;
    text-align: center; max-width: 450px; width: 100%;
    position: relative; transform: translateY(-30px);
    transition: all 0.4s ease; box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.modal-overlay.show .modal-content { transform: translateY(0); }
.close-modal {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none; font-size: 28px;
    cursor: pointer; color: var(--gray-muted); line-height: 1;
}
.modal-title { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.modal-text { font-size: 15px; color: var(--gray-dark); margin-bottom: 24px; line-height: 1.5; }

/* Top Navbar with Search & Menu */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background-color: var(--bg-body);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #fafafa;
    flex-wrap: wrap;
}

.logo {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: var(--black);
    flex-shrink: 0;
}

/* Google-style Search Box */
.search-container {
    flex-grow: 1;
    max-width: 600px;
    margin: 0 24px;
}

.search-box {
    display: flex;
    align-items: center;
    background: #f1f3f4;
    border-radius: 24px;
    padding: 12px 20px;
    border: 1px solid transparent;
    transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.search-box:focus-within {
    background: #ffffff;
    box-shadow: 0 1px 6px rgba(32,33,36,.28);
    border-color: #dfe1e5;
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    margin-left: 12px;
    font-size: 15px;
    color: var(--black);
    font-family: var(--font-main);
}

.search-box input::placeholder { color: #80868b; }

/* Header Right Area */
.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
}

/* Top Navigation Menu */
.top-nav { display: flex; gap: 24px; }
.top-nav a { text-decoration: none; color: var(--gray-dark); font-weight: 600; font-size: 15px; transition: color 0.2s; }
.top-nav a:hover { color: var(--black); }


/* --- MOBILE ADAPTATION FOR HEADER --- */
@media (max-width: 768px) {
    header { padding: 12px 16px; }
    .logo { flex-grow: 1; }
    .header-right { gap: 16px; }
    .top-nav { display: none; }
    .search-container {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin: 16px 0 0 0;
    }
}

/* Hero Slider */
.hero-slider { position: relative; width: 100%; height: 60vh; min-height: 400px; overflow: hidden; background-color: var(--black); }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.8s ease-in-out; display: flex; align-items: center; justify-content: center; z-index: 1; }
.slide.active { opacity: 1; z-index: 2; }
.slide-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.slide-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: -1; }
.slide-content { text-align: center; color: white; padding: 20px; max-width: 800px; }
.slide-content .hero-tags { font-size: 13px; font-weight: 700; letter-spacing: 2px; margin-bottom: 16px; text-transform: uppercase; color: #f0f0f0;}
.slide-content .hero-brand { font-size: 48px; font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.slide-content .hero-desc { font-size: 18px; line-height: 1.5; font-weight: 400; color: #e0e0e0;}

.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.2); color: white; border: none; border-radius: 50%; width: 44px; height: 44px; font-size: 18px; cursor: pointer; z-index: 10; transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.slider-btn:hover { background: rgba(255,255,255,0.4); }
.prev-btn { left: 24px; }
.next-btn { right: 24px; }

/* Category Horizontal Scroll */
.category-wrapper { max-width: 1000px; margin: 0 auto 40px; padding: 0 24px; }
.category-scroll { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 16px; scrollbar-width: none; }
.category-scroll::-webkit-scrollbar { display: none; }
.scroll-item { background-color: var(--bg-card); border: 1px solid var(--gray-light); padding: 10px 20px; border-radius: 30px; font-size: 14px; font-weight: 600; white-space: nowrap; cursor: pointer; transition: all 0.2s; }
.scroll-item:hover { background-color: var(--black); color: white; border-color: var(--black); }
.search-item { display: flex; align-items: center; gap: 6px; background-color: white; }
.swipe-indicator { font-size: 12px; color: var(--gray-muted); margin-top: -8px; margin-bottom: 40px; font-weight: 500; }

/* Main Container */
.container { max-width: 1000px; margin: 0 auto 80px; padding: 0 24px; }
.section-header { margin-bottom: 30px; }
.section-subtitle { font-size: 12px; font-weight: 700; color: var(--gray-muted); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; display: block; }
.title-row { display: flex; justify-content: space-between; align-items: baseline; }
.section-title { font-size: 32px; font-weight: 800; letter-spacing: -0.5px; }
.view-all { font-size: 14px; color: var(--gray-muted); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.view-all:hover { color: var(--black); }

/* Product Grid */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 600px) { .product-grid { grid-template-columns: 1fr; gap: 32px; } }

/* Product Card */
.product-card { background-color: #ffffff; border-radius: 16px; border: 1px solid #f2f2f2; display: flex; flex-direction: column; overflow: hidden; transition: transform 0.3s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.image-wrapper { position: relative; width: 100%; aspect-ratio: 1; background-color: #f5f5f5; }
.image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.badge-soldout { position: absolute; top: 16px; left: 16px; background-color: rgba(0, 0, 0, 0.8); color: white; padding: 6px 12px; font-size: 11px; font-weight: 700; border-radius: 20px; letter-spacing: 0.5px; }

.product-info { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.unisex-tag { display: inline-block; font-size: 11px; font-weight: 800; color: #111; background-color: #f0f0f0; padding: 4px 10px; border-radius: 4px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; width: fit-content;}
.product-name { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--black); }
.product-price { font-size: 14px; color: var(--gray-dark); font-weight: 600; margin-bottom: 16px; }

/* Sizes & Static Buttons */
.sizes { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; min-height: 28px; }
.size-pill { background-color: var(--bg-card); color: var(--black); padding: 6px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; cursor: pointer; border: 1px solid transparent; transition: all 0.2s; }
.size-pill.disabled { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }
.btn-soldout { width: 100%; padding: 14px; border: none; border-radius: 10px; font-size: 14px; font-weight: 700; letter-spacing: 0.5px; margin-top: auto; background-color: #e0e0e0; color: #999999; cursor: not-allowed; }

/* Contact CTA Section */
.cta-section { background-color: var(--bg-card); border-radius: 16px; padding: 40px 24px; text-align: center; max-width: 1000px; margin: 0 auto 60px; border: 1px solid #f2f2f2; }
.cta-section h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.cta-section p { font-size: 15px; color: var(--gray-dark); margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.5; }
.btn-sms { display: inline-block; background-color: var(--black); color: white; padding: 14px 28px; border-radius: 30px; text-decoration: none; font-weight: 700; font-size: 14px; transition: background-color 0.2s; }
.btn-sms:hover { background-color: var(--gray-dark); }

/* Expanded Footer */
.footer-expanded { border-top: 1px solid var(--gray-light); padding: 60px 24px 40px; background-color: var(--bg-body); }
.footer-content { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 30px; }
.footer-brand h2 { font-size: 24px; font-weight: 800; letter-spacing: 1px; margin-bottom: 8px; }
.footer-brand p { font-size: 14px; color: var(--gray-muted); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--black); text-decoration: none; font-size: 14px; font-weight: 600; }
.footer-links a:hover { text-decoration: underline; }
.footer-bottom { margin-top: 40px; border-top: 1px solid #f0f0f0; padding-top: 24px; font-size: 12px; color: var(--gray-muted); display: flex; flex-direction: column; gap: 10px; }
.footer-bottom a { color: var(--black); font-weight: 700; text-decoration: none; }
.disclaimer { font-size: 11px; color: #aaaaaa; margin-top: 10px; line-height: 1.4; }

/* --- FLOATING SMS BUTTON --- */
.floating-sms-btn { position: fixed; bottom: 24px; right: 24px; background-color: var(--black); color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.3); z-index: 900; transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease; }
.floating-sms-btn:hover { transform: translateY(-5px); background-color: var(--gray-dark); box-shadow: 0 8px 16px rgba(0,0,0,0.4); }
.floating-sms-btn svg { width: 28px; height: 28px; }
@media (max-width: 768px) { .floating-sms-btn { bottom: 20px; right: 20px; width: 55px; height: 55px; } .floating-sms-btn svg { width: 24px; height: 24px; } }

/* --- SHOPIFY IFRAME FIX --- */
.product-info div[id^="product-component"] {
    width: 100% !important;
    max-width: 100% !important;
}
.product-info iframe {
    width: 100% !important;
    max-width: 100% !important;
}