/*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('Model1.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;
}
.confirmation-body {
    background: #000;
    color: #fff;
    font-family: Helvetica, Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 60px;
}

.confirmation-container {
    width: 90%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 0;
    text-align: center;
}

.conf-logo {
    height: 50px;
}

.conf-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.check-icon {
    width: 40px;
    height: 40px;
    stroke: #fff;
}

.conf-title {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 4px;
}

.conf-subtitle {
    font-size: 0.65rem;
    color: #555;
    letter-spacing: 2px;
}

.conf-section {
    width: 100%;
    border-top: 1px solid #111;
    padding-top: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.conf-label {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: #555;
    margin-bottom: 5px;
}

.conf-section p {
    font-size: 0.8rem;
    color: #ccc;
    line-height: 1.6;
}

.conf-total-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.conf-total {
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
}

.conf-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #111;
    font-size: 0.8rem;
    color: #ccc;
}

.conf-item-name {
    flex: 1;
}

.conf-item-detail {
    color: #555;
    font-size: 0.7rem;
    margin-top: 3px;
}

.conf-item-price {
    color: #fff;
    font-weight: 900;
}

.conf-notice {
    width: 100%;
    border-top: 1px solid #111;
    padding-top: 20px;
    font-size: 0.75rem;
    color: #555;
    line-height: 1.8;
    letter-spacing: 1px;
    text-align: center;
}

.conf-whatsapp-btn {
    width: 100%;
    padding: 18px;
    background: #fff;
    color: #000;
    border: none;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 3px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: inherit;
}

.conf-whatsapp-btn:hover {
    background: #ccc;
}

.conf-back-btn {
    color: #444;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.conf-back-btn:hover {
    color: #fff;
}


  padding: 14px 28px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  border: 1px solid #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Button invert hover interaction */
.gallery-link-btn:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px); /* Slight premium lift effect */
}

/* ==========================================================================
   LOOKBOOK BREAK BANNER (FIXED FOR FULL BREADTH + DOTS)
   ========================================================================== */

.lookbook-break {
  /* Forces the section to break out of a product grid and take full width */
  grid-column: 1 / -1; 
  width: 100%;
  
  height: 350px; /* Adjusted height for a perfect landscape banner strip */
  margin: 50px 0; 
  position: relative; /* Needed to anchor the dots at the bottom */
  background-color: #000;
}

/* The horizontal scrolling track */
.swipe-gallery {
  display: flex;
  overflow-x: auto;
  width: 100%;
  height: 100%;
  scroll-snap-type: x mandatory; 
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; 
}

.swipe-gallery::-webkit-scrollbar {
  display: none;
}

/* Individual slide */
.gallery-slide {
  flex: 0 0 100%; 
  width: 100%;
  height: 100%;
  scroll-snap-align: center; 
  position: relative;
}

/* The actual photo layout */
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  /* Adjust this if you want to shift the crop vertically (e.g., top, center, bottom) */
  object-position: center; 
}

/* Slide 3 Link Styling */
.last-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Subtle dimming so text is perfectly readable */
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-link-btn {
  background-color: #ffffff; 
  color: #000000;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  border: 1px solid #ffffff;
  transition: all 0.3s ease;
}

.gallery-link-btn:hover {
  background-color: #000000;
  color: #ffffff;
}

/* ==========================================================================
   CAROUSEL DOTS STYLING
   ========================================================================== */

.carousel-dots {
  position: absolute;
  bottom: 15px; /* Places dots near the bottom edge inside the banner */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4); /* Translucent white for inactive dots */
  transition: all 0.3s ease;
}

/* Highlighting the active slide dot */
.dot.active {
  background-color: #ffffff; /* Solid white for active page */
  width: 18px; /* Optional: elongated pill shape for modern active state */
  border-radius: 4px;
}

/* ==========================================================================
   STRESS-FREE SOLD OUT SYSTEM
   ========================================================================== */

/* 1. This handles the card when it sells out */
.product-card.sold-out {
  position: relative;
  pointer-events: none; /* Prevents people from clicking the product or button */
}

/* 2. Dims the product image perfectly */
.product-card.sold-out img {
  opacity: 0.5;
  filter: grayscale(40%);
  transition: all 0.3s ease;
}

/* 3. Creates the automated SOLD OUT overlay badge */
.product-card.sold-out::after {
  content: "SOLD OUT";
  position: absolute;
  top: 40%; /* Positions it right over the upper-middle of the card */
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000000;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid #ffffff;
  z-index: 10;
  white-space: nowrap;
}

/* 4. Style change for the button inside a sold-out card */
.product-card.sold-out button,
.product-card.sold-out .buy-btn {
  background-color: #222 !important;
  color: #555 !important;
  border-color: #222 !important;
  cursor: not-allowed;
}

.checkout-disclaimer {
  font-size: 10px;
  color: #a3a3a3; /* Clean, muted grey */
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 15px; /* Creates a clean gap before the "Full Name" box */
  line-weight: bold;
  line-height: 1.4;
}
