/* ALO YOGA PREMIUM STYLE REPLICA V4 */
:root {
    --bg-color: #FFFFFF; /* High contrast clean white */
    --text-color: #111111;
    --text-muted: #666666;
    --black: #000000;
    --white: #FFFFFF;
    --border-color: #E2E2E2;
    --glass-bg: rgba(255, 255, 255, 0.95);
    
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    font-size: 15px; 
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    padding-top: 90px;
}

/* NAVBAR */
.navbar {
    position: fixed; top: 0; width: 100%; height: 90px;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 4%; background: var(--glass-bg);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a {
    text-decoration: none; color: var(--text-muted); font-size: 0.95rem; 
    font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; 
    transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--black); }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.search-container { display: flex; align-items: center; border-bottom: 1px solid var(--black); padding-bottom: 5px; }
.search-container i { font-size: 1.8rem; }
.search-container input { border: none; background: transparent; outline: none; font-family: var(--font-body); padding-left: 10px; width: 140px; transition: width 0.3s; }
.search-container input:focus { width: 200px; }

.cart-btn { background: none; border: none; cursor: pointer; font-size: 2rem; position: relative; color: var(--black); }
.cart-count { position: absolute; top: -5px; right: -10px; background: #FFB6C1; color: var(--black); font-size: 0.75rem; font-weight: 700; height: 20px; width: 20px; border-radius: 50%; display: flex; justify-content: center; align-items: center; }

/* HERO SECTION WITH VIDEO */
.hero {
    position: relative; height: 70vh; 
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 0 20px; overflow: hidden;
    background: #f4f0ec; /* Fallback */
}
.hero-bg-video {
    position: absolute; top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover; z-index: 0;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255,255,255, 0.65); /* 65% opacity translucent overlay */
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2;
}
.hero-content h1 { font-family: var(--font-heading); font-size: 4rem; font-weight: 700; letter-spacing: -1px; margin-bottom: 10px; color: var(--black); text-transform: uppercase; }
.hero-content p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 30px; }

.btn-primary {
    display: inline-block; background: var(--black); color: var(--white);
    padding: 16px 40px; text-decoration: none; text-transform: uppercase;
    font-size: 0.95rem; font-weight: 600; letter-spacing: 1px; transition: background 0.3s; border-radius: 2px;
}
.btn-primary:hover { background: #333; }

/* MAIN LAYOUT (ALO STYLE) */
.container { padding: 40px 4%; }
.store-layout { display: flex; gap: 60px; align-items: flex-start; }

/* SIDEBAR FILTERS */
.filters-sidebar { width: 240px; position: sticky; top: 120px; }
.filter-title { font-size: 0.9rem; text-transform: uppercase; font-weight: 700; margin-bottom: 20px; border-bottom: 1px solid var(--black); padding-bottom: 10px; letter-spacing: 1px; }
.filter-list { list-style: none; }
.filter-list li { margin-bottom: 15px; }
.filter-list a { text-decoration: none; color: var(--text-color); font-size: 0.95rem; font-weight: 400; transition: color 0.3s; }
.filter-list a:hover { text-decoration: underline; color: var(--black); }

.filter-checkboxes label { display: block; margin-bottom: 12px; font-size: 0.95rem; color: var(--text-color); cursor: pointer; display: flex; align-items: center; gap: 8px;}
.filter-checkboxes input[type="checkbox"] { width: 16px; height: 16px; border: 1px solid var(--black); }

/* STORE GRID */
.store-grid { flex: 1; }
.store-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 40px; }
.page-title { font-size: 2rem; font-weight: 600; text-transform: uppercase; letter-spacing: -0.5px; margin: 0; }
.sort-dropdown { font-size: 0.95rem; color: var(--text-muted); font-weight: 500; cursor: pointer; display: flex; align-items: center; gap: 5px; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px 20px; }

.product-card { cursor: pointer; text-align: left; }
.product-image { width: 100%; aspect-ratio: 4/5; object-fit: cover; background: #f9f9f9; margin-bottom: 15px; transition: opacity 0.3s; }
.product-card:hover .product-image { opacity: 0.85; }

.product-info h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.product-info p { font-size: 0.95rem; color: var(--text-color); font-weight: 400;}

.color-options { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 10px; }
.color-dot { width: 16px; height: 16px; border-radius: 50%; border: 1px solid #ddd; background: #eee; }
.color-text { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; }

/* WHATSAPP FLOAT */
.whatsapp-assistant {
    position: fixed; bottom: 30px; right: 30px;
    background: var(--white); color: var(--black);
    padding: 15px 25px; border-radius: 30px;
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 4000; transition: transform 0.3s;
    border: 1px solid var(--border-color);
}
.whatsapp-assistant:hover { transform: translateY(-5px); box-shadow: 0 15px 50px rgba(0,0,0,0.2); }
.whatsapp-assistant i { font-size: 2rem; color: #25D366; }
.whatsapp-assistant span { font-size: 0.95rem; font-weight: 600; }

/* SLIDING CART */
.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: all 0.3s ease; }
.cart-panel { position: fixed; top: 0; right: -500px; width: 450px; max-width: 100%; height: 100%; background: var(--white); z-index: 2001; display: flex; flex-direction: column; box-shadow: -10px 0 40px rgba(0,0,0,0.1); transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.cart-panel.open { right: 0; }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 25px 30px; border-bottom: 1px solid var(--border-color); }
.cart-header h2 { font-size: 1.2rem; font-weight: 700; letter-spacing: 1px; }
.cart-header button { background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 30px; }
.cart-item { display: flex; gap: 20px; margin-bottom: 30px; }
.cart-item img { width: 90px; height: 110px; object-fit: cover; border-radius: 2px; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; margin-bottom: 5px; }
.cart-item-info p { font-size: 0.85rem; color: var(--text-muted); }
.remove-item { background: none; border: none; text-decoration: underline; color: #111; font-size: 0.8rem; cursor: pointer; margin-top: 10px; font-weight: 500; text-transform: uppercase; }
.cart-footer { padding: 30px; border-top: 1px solid var(--border-color); }
.cart-total { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 600; margin-bottom: 25px; }
.btn-checkout { width: 100%; background: var(--black); color: var(--white); border: none; padding: 20px; font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: 0.3s; border-radius: 2px; }
.btn-checkout:not(:disabled):hover { background: #333; }

/* PRODUCT 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; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-content { background: var(--white); position: relative; max-height: 95vh; overflow-y: auto; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.glass-modal { width: 1100px; max-width: 95%; }
.checkout-glass { width: 600px; max-width: 95%; padding: 40px; }
.modal-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 1.8rem; cursor: pointer; z-index: 10; }

.modal-split { display: flex; flex-wrap: wrap; }
.modal-image { flex: 1.5; min-width: 350px; display: flex; justify-content: center; align-items: center; background: #fafafa; }
.modal-image img { width: 100%; height: 80vh; object-fit: cover; }

.modal-thumbs { flex: 0.3; display: flex; flex-direction: column; gap: 10px; padding: 20px 0 20px 20px; background: var(--white); max-height: 80vh; overflow-y: auto;}
.thumb-img { width: 80px; height: 100px; object-fit: cover; cursor: pointer; border: 2px solid transparent; transition: border 0.3s; }
.thumb-img:hover { border-color: #ddd; }
.thumb-img.active { border-color: var(--black); }

.modal-info { flex: 1; min-width: 350px; padding: 50px; display: flex; flex-direction: column; justify-content: center; background: var(--white); }
.modal-info h2 { font-size: 1.8rem; font-weight: 700; text-transform: uppercase; margin-bottom: 15px; letter-spacing: -0.5px; }
.modal-price { font-size: 1.2rem; font-weight: 500; margin-bottom: 30px; }

.modal-colors-block { margin-bottom: 30px; }
.modal-colors-block p { font-weight: 600; font-size: 0.85rem; text-transform: uppercase; margin-bottom: 12px; }

.size-label { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; margin-bottom: 12px;}
.size-options { display: flex; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.size-btn { border: 1px solid var(--border-color); background: var(--white); padding: 12px 20px; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.2s; min-width: 60px; font-family: 'Inter'; }
.size-btn:hover { border-color: var(--black); }
.size-btn.selected { background: var(--black); color: var(--white); border-color: var(--black); }

.btn-add-cart { background: var(--black); color: var(--white); border: none; padding: 20px; font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; margin-bottom: 30px; transition: 0.3s; width: 100%; border-radius: 2px; }
.btn-add-cart:disabled { background: #dcdcdc; color: #777; cursor: not-allowed; }
.btn-add-cart:not(:disabled):hover { background: #333; }

.product-details-text p { font-size: 0.9rem; color: var(--text-color); margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; font-weight: 400;}
.product-details-text i { font-size: 1.2rem; margin-top: 2px; }

/* CHECKOUT AND LUXURY BANK CARDS */
.checkout-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 15px; text-transform: uppercase; }
.payment-card { border: 1px solid var(--border-color); padding: 20px; border-radius: 4px; display: flex; align-items: center; gap: 20px; cursor: pointer; transition: all 0.2s; background: var(--white); margin-bottom:15px; }
.payment-card i { font-size: 2rem; }
.payment-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.payment-card.active-payment:hover, .payment-card.selected-payment { border-color: var(--black); background: #fafafa; }

.bank-info-container { background: #F8F8F8; border: 1px solid #EDEDED; padding: 25px; border-radius: 6px; margin: 25px 0; }
.bank-info-container h4 { margin: 0 0 20px 0; font-size: 1.1rem; border-bottom: 1px solid #DDDDDD; padding-bottom: 10px; color: var(--black); }
.bank-info-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; font-size: 0.95rem;}
.bank-info-row span.lbl { color: var(--text-muted); font-weight: 500; font-size: 0.9rem;}
.bank-info-row span.val { color: var(--black); font-family: monospace; font-size: 1.15rem; font-weight: 700; background: #fff; padding: 5px 10px; border-radius: 4px; border: 1px solid #eee;}

.instruction { font-size: 0.9rem; color: #555; text-align: center; margin-bottom: 15px; line-height: 1.4;}

.btn-whatsapp { width: 100%; background: #25D366; color: white; border: none; padding: 18px; font-size: 1rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 12px; border-radius: 4px; text-transform: uppercase; letter-spacing: 1px; transition: 0.2s; }
.btn-whatsapp:hover { background: #1ebd5a; }

/* FOOTER */
.footer { background: var(--white); padding: 80px 4%; border-top: 1px solid var(--border-color); margin-top: 100px; }
.footer-content { display: flex; justify-content: space-between; align-items: flex-start; }
.footer .links a { text-decoration: none; color: var(--black); font-size: 0.9rem; font-weight: 600; transition: color 0.2s; display: flex; align-items: center; gap: 8px; }

@media (max-width: 1024px) { 
    .store-layout { flex-direction: column; gap: 30px; } 
    .filters-sidebar { width: 100%; position: static; display: flex; flex-direction: column; gap: 20px; } 
    .filter-list { display: flex; flex-wrap: wrap; gap: 15px; }
    .grid { grid-template-columns: repeat(3, 1fr); } 
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .grid { grid-template-columns: repeat(2, 1fr); gap: 20px 10px; width: 100%; }
    .hero-content h1 { font-size: 2.2rem; }
    .store-header { flex-direction: column; align-items: flex-start; gap: 15px; width: 100%; }
    .page-title { font-size: 1.5rem; line-height: 1.2; }
    .filters-sidebar { width: 100%; display: block; border-bottom: 2px solid #eee; padding-bottom: 20px; margin-bottom: 20px; }
    
    /* Modern Horizontal Scrolling Pills for Mobile */
    .filter-list { 
        display: flex; flex-wrap: nowrap; gap: 10px; 
        overflow-x: auto; padding-bottom: 5px; 
        -webkit-overflow-scrolling: touch; scrollbar-width: none;
    }
    .filter-list::-webkit-scrollbar { display: none; }
    .filter-list a { 
        background: #f4f4f4; padding: 8px 18px; border-radius: 20px; 
        font-size: 0.85rem; white-space: nowrap; border: 1px solid #ddd; 
    }
    .filter-list a.active, .filter-list a:hover { 
        background: var(--black); color: var(--white); border-color: var(--black); 
    }
    
    .filter-checkboxes { display: flex; flex-wrap: wrap; gap: 15px; }
    .filter-checkboxes label { margin-bottom: 0; }
    .filter-title { margin-bottom: 12px; margin-top: 20px !important; font-size: 0.85rem; }
    .modal-split { flex-direction: column; }
    .modal-thumbs { display: none; }
    .modal-image { min-height: 350px; }
    .container { padding: 20px 15px; width: 100%; }
    .store-layout { gap: 20px; }
    
    /* Minimalist WhatsApp Button */
    .whatsapp-assistant {
        padding: 14px;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-assistant span {
        display: none;
    }
    .whatsapp-assistant i {
        font-size: 2.2rem;
    }
}
