  body{
            margin:0;
            background:#050505;
            font-family: Arial, Helvetica, sans-serif;
        }

       body{
    margin:0;
    background:#050505;
    font-family: Arial, Helvetica, sans-serif;
}

/* NAVBAR */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
    background:#050505;
    position:relative;
}

.nav-left{
    display:flex;
    align-items:center;
    gap:40px;
}

.nav-links{
    display:flex;
    align-items:center;
}

.nav-links a{
    color:white;
    text-decoration:none;
    margin-right:25px;
    font-size:15px;
    transition:0.3s;
}

.nav-links a:hover{
    color:#d4af37;
}

.nav-right{
    display:flex;
    align-items:center;
    gap:30px;
}

.social-icons{
    display:flex;
    align-items:center;
    gap:18px;
}

.social-icons a{
    color:white;
    font-size:15px;
    transition:0.3s;
}

.social-icons a:hover{
    color:#d4af37;
}

.user-actions{
    display:flex;
    align-items:center;
    gap:20px;
}

.user-actions a{
    color:white;
    text-decoration:none;
    font-size:15px;
}

.cart-icon{
    display:flex;
    align-items:center;
    gap:5px;
}

.cart-count{
    font-size:13px;
    position:relative;
    top:-2px;
}

.admin-link:hover{
    color:#d4af37;
}

/* HAMBURGER */
.hamburger{
    display:none;
    color:white;
    font-size:24px;
    cursor:pointer;
}

/* MOBILE MENU */
.mobile-menu{
    display:none;
}

/* MOBILE RESPONSIVE */
@media screen and (max-width:768px){

    .navbar{
        padding:20px;
    }

    .nav-links,
    .nav-right{
        display:none;
    }

    .hamburger{
        display:block;
    }

    .mobile-menu{
        display:none;
        flex-direction:column;
        background:#111;
        width:100%;
        padding:20px;
    }

    .mobile-menu.active{
        display:flex;
    }

    .mobile-menu a{
        color:white;
        text-decoration:none;
        padding:15px 0;
        border-bottom:1px solid #222;
        font-size:15px;
    }

    .mobile-menu a:hover{
        color:#d4af37;
    }

    .mobile-socials{
        display:flex;
        gap:20px;
        margin-top:20px;
    }

    .mobile-socials a{
        border:none;
        padding:0;
        font-size:18px;
    }

}
        .admin-link:hover{
            color:#d4af37;
        }


/** 2 Columns */
/* General Setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0b0b0b;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #ffffff;
}

/* Section Layout */
.atelier-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.atelier-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Column Styling */
.atelier-image-col {
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.atelier-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right Column Typography & Spacing */
.atelier-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 40px;
}

.atelier-subheading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8c8c8c;
  margin-bottom: 24px;
}

.atelier-heading {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.atelier-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 480px;
}

/* Button Styling */
.atelier-btn {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid #333333;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.atelier-btn:hover {
  background-color: #ffffff;
  color: #0b0b0b;
  border-color: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
  .atelier-container {
    grid-template-columns: 1fr; /* Stack columns vertically */
    gap: 40px;
  }

  .atelier-image-col {
    height: 450px; /* Shorter image height on tablets */
  }

  .atelier-content-col {
    padding-right: 0;
  }

  .atelier-heading {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .atelier-image-col {
    height: 350px; /* Shorter image height on mobile */
  }
  
  .atelier-heading {
    font-size: 1.75rem;
  }
}

/* Center and reset the list container */
.gallery-list {
  display: flex;
  flex-direction: row;       /* Arrange items in a row */
  justify-content: center;   /* Center items horizontally */
  align-items: center;       /* Center items vertically */
  gap: 20px;                 /* Space between the columns */
  list-style: none;          /* Remove default bullet points */
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;         /* Prevents layout from getting too wide */
  width: 100%;
}

/* Ensure each list item shares equal space */
.gallery-list li {
  flex: 1;
  min-width: 0;             /* Fixes flexbox shrinking issues */
}

/* Container wrapper for the images */
.gcontainer {
  width: 100%;
  overflow: hidden;
}

/* Make images responsive inside their containers */
.pixu {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .gallery-list {
    flex-direction: column;  /* Stack items vertically on mobile */
    padding: 0 20px;         /* Add side padding on small screens */
    gap: 30px;               /* Increase spacing when stacked */
  }
  
  .gallery-list li {
    width: 100%;             /* Allow items to take full width */
  }
}

/* Card Container */
.product-card {
  background-color: #121212;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 400px; /* Adjust based on your grid setup */
}

.product-card:hover{
  border-style: solid;
  border-color:green;
  
}

/* Image Wrapper Box */
.product-image-container {
  width: 100%;
  /* Creates a modern vertical rectangle proportion (4:5 ratio) */
  aspect-ratio: 4 / 5; 
  overflow: hidden;
  background-color: #1a1a1a;
}

/* The Image itself */
.product-image {
  width: 100%;
  height: 100%;
  /* This prevents squishing/stretching entirely */
  object-fit: cover; 
  /* Centers the focus point of the photo */
  object-position: center; 
  display: block;
}

/* Info Box below image */
.product-info {
  padding: 16px;
  color: #ffffff;
}

.product-category {
  font-size: 0.75rem;
  color: #888888;
  display: block;
  margin-bottom: 4px;
}

.product-title {
  font-size: 1rem;
  font-weight: 500;
}

/* Mobile Tweak if needed */
@media (max-width: 480px) {
  .product-image-container {
    /* Slightly squares up the image on small screens if it feels too tall */
    aspect-ratio: 1 / 1; 
  }
}

/* Styling layout settings for the responsive luxury footer component */
.fashion-footer {
    width: 100%;
    background-color: #0b0c10; /* Dark luxurious layout background */
    border-top: 1px solid #2d3748;
    padding: 50px 40px 20px 40px;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Centered Top Brand Logo Wrapper block */
.footer-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-logo-wrap img {
    filter: drop-shadow(0 4px 10px rgba(246, 205, 70, 0.2));
}

/* Flex framework grid distribution for the main link groupings */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Individual Content Column layouts rules */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Left Brand Metadata Custom Typography Configurations */
.footer-title-logo {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.brand-desc {
    color: #a0aec0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Golden Yellow WhatsApp Button Enhancements */
.whatsapp-btn {
    align-self: flex-start; /* Keeps the button locked tightly to text width sizing bounds */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #f6cd46; /* Theme accent yellow standard parameter */
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 22px;
    border-radius: 30px; /* Smooth rounded pill curve looks */
    box-shadow: 0 4px 15px rgba(246, 205, 70, 0.25);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #e0ba3c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 205, 70, 0.4);
}

/* Vertical list anchors interaction animations links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
    color: #f6cd46;
    padding-left: 5px; /* Subtle responsive micro-slide effect on mouse over */
}

/* Contact Locations Flexbox Grid Panel layouts blocks */
.location-container {
    max-width: 1200px;
    margin: 30px auto;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.location-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #a0aec0;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 320px;
}

.location-icon {
    color: #f6cd46;
    font-size: 1.1rem;
    margin-top: 3px;
}

/* Bottom Copy Ribbon layout specifications */
.footer-copyright-bar {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #718096;
    font-size: 0.85rem;
}

/* Unified Contact Links Configuration (Phone & Email) */
.footer-contact-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 12px; /* Uniform stacked spacing layout */
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s ease;
}

.footer-contact-link:hover {
    color: #f6cd46; /* Theme accent yellow hover transition */
}

.contact-icon-accent {
    color: #f6cd46;
    font-size: 0.95rem;
    width: 16px; /* Enforces equal alignment tracking between phone and mail shapes */
    text-align: center;
}

/* Extends space between the last contact method and the WhatsApp button button pill */
.footer-contact-link:last-of-type {
    margin-bottom: 25px;
}

.loc-tel {
    font-size: 0.85rem;
    color: #718096;
    display: inline-block;
    margin-top: 4px;
}

/* ==========================================================================
   FOOTER RESPONSIVE MEDIA WRAP BREAKPOINTS
   ========================================================================== */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr; /* Conversions to 2-column matrix blocks on small screens */
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .fashion-footer {
        padding: 40px 20px 20px 20px;
    }
    .footer-container {
        grid-template-columns: 1fr; /* Complete clean stacked single columns arrays on phones */
    }
    .location-container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .location-card {
        max-width: 100%;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
}


/* --- Fixed Live Chat Widget Styles --- */
.chat-trigger-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #000000;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: transform 0.2s ease;
}

.chat-trigger-btn:hover {
  transform: scale(1.05);
}

.chat-window {
  position: fixed;
  bottom: 105px;
  right: 30px;
  width: 320px;
  height: 400px;
  background-color: #161616;
  border: 1px solid #262626;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Active State via JavaScript */
.chat-window.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.chat-header {
  background-color: #222222;
  padding: 15px;
  border-top-left-radius: 11px;
  border-top-right-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-user-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #4cd964;
  border-radius: 50%;
}

.chat-close-btn {
  background: none;
  border: none;
  color: #8c8c8c;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.chat-close-btn:hover {
  color: #ffffff;
}

.chat-body {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
}

.chat-bubble {
  background-color: #262626;
  padding: 10px 14px;
  border-radius: 14px;
  border-top-left-radius: 2px;
  font-size: 0.85rem;
  line-height: 1.4;
  max-width: 85%;
}

.chat-footer {
  padding: 12px;
  border-top: 1px solid #262626;
  display: flex;
  gap: 8px;
}

.chat-footer input {
  flex: 1;
  background-color: #222222;
  border: 1px solid #333333;
  border-radius: 20px;
  padding: 8px 14px;
  color: #ffffff;
  font-size: 0.85rem;
  outline: none;
}

.chat-footer input::placeholder {
  color: #666666;
}

.chat-send-btn {
  background-color: #ffcc00;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #000000;
}

/* --- Responsive Media Queries --- */
@media (max-width: 968px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .brand-col {
    order: -1; /* Keeps brand details on top */
  }
  .chat-window {
    width: calc(100% - 40px);
    right: 20px;
    left: 20px;
  }
  .chat-trigger-btn {
    bottom: 20px;
    right: 20px;
  }
}

/* Align user-sent message blocks to the right side */
.chat-bubble.user-msg {
  background-color: #ffcc00;
  color: #000000;
  margin-left: auto;
  border-top-left-radius: 14px;
  border-top-right-radius: 2px;
}

/* Base adjustment for all app bubbles */
.chat-bubble {
  margin-bottom: 12px;
  word-wrap: break-word;
}


 /* --- CHAT APPLICATION INTERFACE --- */
        .chat-section {
            max-width: 600px;
            margin: 40px auto;
            background: #121212;
            border-radius: 8px;
            border: 1px solid #222;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 500px;
        }
        .chat-header {
            background: #1a1a1a;
            padding: 15px 20px;
            border-bottom: 1px solid #222;
            font-size: 1.1rem;
            letter-spacing: 1px;
            color: #d4af37;
            font-weight: bold;
        }
        .chat-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .message {
            background: #1a1a1a;
            padding: 12px 16px;
            border-radius: 8px;
            max-width: 85%;
            align-self: flex-start;
            border: 1px solid #252525;
            line-height: 1.4;
            animation: fadeIn 0.2s ease-in-out;
        }
        .chat-form {
            display: flex;
            padding: 15px;
            background: #1a1a1a;
            border-top: 1px solid #222;
            gap: 10px;
        }
        .chat-input {
            flex: 1;
            background: #0b0b0b;
            border: 1px solid #333;
            color: white;
            padding: 12px 16px;
            border-radius: 4px;
            outline: none;
            font-size: 0.95rem;
        }
      .chat-textbox {
            flex: 1;
            background: #0b0b0b;
            border: 1px solid #333;
            color: white;
            padding: 12px 16px;
            border-radius: 4px;
            outline: none;
            font-size: 0.95rem;
        }
        .chat-input:focus {
            border-color: #d4af37;
        }
        .chat-submit-btn {
            background: #d4af37;
            color: #050505;
            border: none;
            padding: 0 24px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: 0.2s;
        }
        .chat-submit-btn:hover {
            background: #ffffff;
        }
  .post-btn {
            background: #d4af37;
            color: #050505;
            border: none;
            padding: 0 24px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: 0.2s;
        }
  .post-btn:hover {
            background: #ffffff;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(5px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- RESPONSIVE MOBILE TWEAKS --- */
        @media screen and (max-width: 768px) {
            .navbar { padding: 20px; }
            .nav-links, .nav-right { display: none; }
            .chat-section { margin: 20px; height: 450px; }
        }

/* Enable smooth scrolling across the entire webpage */
html {
    scroll-behavior: smooth;
}

/* Floating Button Base Style */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: -60px; /* Hidden off-screen by default */
    background-color: #d4af37; /* Matches your luxury gold color */
    color: #050505;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    
    /* Smooth CSS Transition Effects */
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
}

/* This class will be added by JavaScript when scrolling down */
.back-to-top.show {
    right: 30px; /* Slides into view */
    opacity: 1;  /* Fades in */
}

/* Interactive Hover Effects */
.back-to-top:hover {
    background-color: #ffffff;
    color: #050505;
    transform: translateY(-5px); /* Bounces up slightly on hover */
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Universal wrapper class */
#zoom-box {
    overflow: hidden;
    display: inline-block; /* Or block, depending on your structure */
    width: 100%;
}

/* Base image state */
#zoom-box img {
    transition: transform 0.6s ease-in-out;
    width: 100%;
    display: block;
}

/* Hover Zoom-In state */
#zoom-box:hover img {
    transform: scale(1.08); /* Finer, elegant 8% zoom */
}