/*Splash*/
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Clean, modern font */
}
.background-blur {
        position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* INPUT YOUR IMAGE PATH HERE */
    background: url('background-model.jpg') no-repeat center center/cover;
    filter: blur(25px) brightness(0.3); /* Moody, premium depth */
    z-index: -1;
    transform: scale(1.1); /* Prevents white edges from blur */
}

/* Splash Body - Centering everything */
.splash-body {
    background-color: #000; /* Deep black background */
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Container */
.splash-container {
    text-align: center;
    width: 90%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Welcome Message */
.welcome-msg {
    font-size: 1.2rem;
    letter-spacing: 3px;
    line-height: 1.6;
    text-transform: uppercase;
    font-weight: 300;
}

/* Main Logo Styling */
.main-logo {
    width: 270px; /* Adjust size based on your logo design */
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    transition: transform 0.5s ease;
}

.main-logo:hover {
    transform: scale(1.05); /* Subtle zoom on hover */
}

/* Shop Trigger Area */
.shop-trigger-area {
    margin-top: 1rem;
}

.drop-description {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: #888; /* Muted gray for secondary text */
}

/* Enter Button - The Call to Action */
.enter-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.enter-btn:hover {
    background-color: #fff;
    color: #000;
}

/* Splash Footer */
.splash-footer {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
}

.splash-text {
    font-size: 0.7rem;
    color: #555;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.splash-text:hover {
    color: #fff;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .main-logo {
        width: 180px;
    }
    .welcome-msg {
        font-size: 0.75rem;
    }
}





/*SHOP CODES*/
/* --- BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
body { background: #000; color: #fff; font-family: Helvetica, Arial, sans-serif; padding-bottom: 50px; }

/* --- NAV --- */
.shop-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: sticky;
    top: 0;
    background: rgba(0,0,0,0.9);
    z-index: 100;
    border-bottom: 1px solid #111;
}
.nav-logo { height: 40px; }
.cart-trigger { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.cart-icon { width: 22px; stroke: #fff; }

/* --- GRID --- */
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 15px; }
.product-card { cursor: pointer; }
.img-box { background: #111; aspect-ratio: 1/1; margin-bottom: 10px; }
.img-box img { width: 100%; height: 100%; object-fit: cover; }
.product-info h3 { font-size: 0.8rem; letter-spacing: 1px; }
.price { font-size: 0.7rem; opacity: 0.5; }
.product-controls { display: none; }
/* --- UPDATED COLOR SELECT (RING EFFECT) --- */
.color-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: none;
    margin: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* The Ring/Halo Effect */
.color-btn.active {
    box-shadow: 0 0 0 2px #000, 0 0 0 4px #fff; /* Black gap, then White ring */
}

/* --- PROFESSIONAL QUANTITY CONTROLS --- */
.qty-ctrl {
    display: flex;
    align-items: center;
    background: #111; /* Darker background for the control */
    border: 1px solid #222;
    border-radius: 4px;
    overflow: hidden;
    width: fit-content;
    margin: 10px auto;
}

.qty-btn {
    background: transparent;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: #222;
}

.qty-num {
    font-size: 0.9rem;
    font-weight: bold;
    min-width: 40px;
    text-align: center;
    border-left: 1px solid #222;
    border-right: 1px solid #222;
}




/* --- FOOTER SPACING FIX --- */
.footer-section p {
    font-size: 0.75rem;
    line-height: 1.8;
    color: #666; /* Slightly softer text */
}

/* Style for the email link in the footer */
.footer-link {
    color: #888; /* Makes it white */
    text-decoration: none; /* Removes the underline */
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.7; /* Gives a slight fade effect on hover */
    text-decoration: underline; /* Optional: adds underline only when hovering */
}

/* Social icons styling */
.social-links {
    display: flex;
    gap: 15px; /* Spacing between icons */
    margin-top: 15px;
}

.social-links a {
    color: #888; /* Dimmed color by default */
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #fff; /* Turns white on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

/* --- MODAL --- */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); display: none; align-items: center; justify-content: center; z-index: 2000; }
.modal-content { background: #000; border: 1px solid #222; padding: 25px; width: 90%; max-width: 400px; position: relative; text-align: center; }
.close-modal { position: absolute; top: 10px; right: 15px; font-size: 1.5rem; cursor: pointer; }
#modal-img { width: 100%; margin-bottom: 15px; }

.opt-btn { background: transparent; border: 1px solid #333; color: #fff; padding: 8px 12px; margin: 4px; font-size: 0.7rem; cursor: pointer; }
.opt-btn.active { background: #fff; color: #000; }
.color-btn { width: 25px; height: 25px; border-radius: 50%; display: inline-block; }
.color-btn.white { background: #fff; }
.color-btn.black { background: #000; border: 1px solid #333; }
.color-btn.grey { background: #808080; }
.color-btn.olive { background: #556b2f; }

.modal-qty-wrap { margin-top: 20px; padding-top: 15px; border-top: 1px solid #111; }
.confirm-add-btn { width: 100%; background: #fff; color: #000; border: none; padding: 15px; font-weight: 900; margin-top: 20px; cursor: pointer; }

/* --- NEW: FOOTER STYLING --- */
.shop-footer { padding: 60px 20px; border-top: 1px solid #111; background: #000; margin-top: 40px; }
.footer-section { margin-bottom: 40px; }
.footer-section h4 { font-size: 0.7rem; letter-spacing: 3px; color: #555; margin-bottom: 15px; }
.footer-section p { font-size: 0.8rem; line-height: 1.6; color: #888; max-width: 300px; }
.footer-bottom { border-top: 1px solid #111; padding-top: 20px; }
.footer-bottom p { font-size: 0.6rem; color: #444; letter-spacing: 1px; }

/* --- SIDEBAR --- */
.cart-sidebar { position: fixed; top: 0; right: -100%; width: 80%; max-width: 350px; height: 100%; background: #000; z-index: 3000; padding: 25px; transition: 0.4s; border-left: 1px solid #111; }
.cart-sidebar.open { right: 0; }
.cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); display: none; z-index: 2500; }
.cart-thumb { width: 50px; height: 50px; object-fit: cover; margin-right: 15px; }
.cart-item { display: flex; align-items: center; padding: 15px 0; border-bottom: 1px solid #111; }

/* Styling the "CONFIRM & PAY" button specifically */
/* --- STICKY CHECKOUT BAR --- */
.sticky-checkout {
    position: fixed; bottom: -100%; left: 0; width: 100%;
    background: #fff; color: #000; padding: 20px; z-index: 1000;
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.sticky-checkout.active { bottom: 0; }

/* --- CUSTOMER FORM --- */
#customer-info { 
    display: none; /* Controlled by JS */
    flex-direction: column; 
    margin-bottom: 20px; 
}

.form-title { font-size: 0.7rem; letter-spacing: 3px; margin-bottom: 12px; font-weight: 900; }

#customer-info input, #customer-info textarea {
    background: #f9f9f9; color: #000; border: 1px solid #ddd;
    padding: 14px; font-size: 0.85rem; border-radius: 0;
    width: 100%; outline: none; margin-bottom: -1px; /* Stacks them perfectly */
    font-family: inherit;
}

#customer-info input:focus, #customer-info textarea:focus {
    background: #fff; border-color: #000; z-index: 2; position: relative;
}

#customer-info textarea { height: 70px; resize: none; border-bottom: 1px solid #ddd; }

/* --- CHECKOUT FOOTER --- */
.checkout-footer { display: flex; flex-direction: column; gap: 15px; }
.total-info { display: flex; justify-content: space-between; align-items: center; }
.total-label { font-size: 0.6rem; letter-spacing: 2px; font-weight: bold; }
.total-price { font-size: 1.1rem; font-weight: 900; }

#main-checkout-btn {
    width: 100%; background: #000; color: #fff; border: none;
    padding: 20px; font-weight: 900; letter-spacing: 3px; 
    text-transform: uppercase; cursor: pointer;
}
/* Adding a dark grey hover effect */
#main-checkout-btn:hover {
    background-color: #333 !important; /* Dark grey for a subtle shift */
    transition: 0.3s ease;
}

/* Tactile feedback when the button is pressed */
#main-checkout-btn:active {
    background-color: #555 !important; /* Slightly lighter grey on click */
    transform: scale(0.98); /* Subtle "press" effect for mobile */
}

/* Container for the sidebar footer */
.sidebar-footer {
    padding: 20px;
    border-top: 1px solid #333; /* Dark divider line */
    background: #000;
}

/* Designing the Total line to match the image 1000037867.jpg */
.sidebar-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1px;
}

/* The "PROCEED TO CHECKOUT" button styling */
.checkout-trigger-btn {
    width: 100%;
    background-color: #fff !important; /* White button on black sidebar */
    color: #000 !important;
    padding: 18px;
    font-weight: 900;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    transition: 0.2s ease;
}


/* Transparent hover effect for the sidebar button */
.checkout-trigger-btn:hover {
    background-color: transparent !important;
    color: #fff !important; 
    border: 1px solid #fff !important; /* Keeps the button shape visible */
}

/* Tactile feedback for mobile users */
.checkout-trigger-btn:active {
    background-color: rgba(255, 255, 255, 0.1) !important;
    transform: scale(0.98);
}
/* --- HAMBURGER BUTTON --- */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    cursor: pointer;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s ease;
}

/* --- NAV SIDEBAR --- */
.nav-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    max-width: 320px;
    height: 100%;
    background: #000;
    z-index: 3000;
    padding: 30px 25px;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-right: 1px solid #111;
    display: flex;
    flex-direction: column;
}

.nav-sidebar.open {
    left: 0;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 2500;
}

.nav-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 25px;
    border-bottom: 1px solid #111;
}

.close-nav {
    font-size: 1.3rem;
    cursor: pointer;
    color: #fff;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.close-nav:hover {
    opacity: 1;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 3px;
    padding: 15px 0;
    border-bottom: 1px solid #111;
    transition: opacity 0.2s ease;
    display: block;
    font-family: Helvetica, Arial, sans-serif;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 3px;
    padding: 15px 0;
    border-bottom: 1px solid #111;
    transition: opacity 0.2s ease;
    display: block;
    font-family: Helvetica, Arial, sans-serif;
 }

.nav-link:hover {
    opacity: 0.5;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
