
/* Color Palette */
:root {
    --cream: #F2EDE3;
    --taupe: #7A6244;
    --olive: #4B5337;
    --navy: #1E2A38;
    --charcoal: #2F2F2F;
    --black: #121212;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--cream);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navigation & Header --- */
header {
    background: rgba(10, 10, 10, 0.98);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid rgba(122, 98, 68, 0.2);
    backdrop-filter: blur(10px);
}

nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 45px; width: auto; }

.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: 0.3s;
}
.nav-links a:hover { color: var(--taupe); }

.nav-actions { display: flex; align-items: center; gap: 15px; }

.contact-btn {
    border: 1px solid var(--taupe);
    color: var(--taupe);
    padding: 8px 18px;
    font-size: 0.7rem;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.3s;
}



/* --- Contact Button - Black Box Style --- */
.contact-btn {
    display: inline-block;
    background-color: #000000; 
    color: var(--taupe); 
    border: 1px solid var(--taupe);
    padding: 10px 22px;
    font-size: 0.75rem;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 4px 4px 0px var(--taupe);
}


.contact-btn:hover {
    background-color: var(--taupe);
    color: #000000;
    box-shadow: 0px 0px 0px var(--taupe); 
    transform: translate(2px, 2px);
}


/*mobile nav bar*/
/* --- Mobile Toggle (Hamburger) --- */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    margin-left: 15px;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #7A6244; 
    transition: 0.3s;
}

/* --- Fullscreen Mobile Overlay --- */
.mobile-overlay {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98); 
    backdrop-filter: blur(8px);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

.mobile-overlay.active {
    right: 0;
}

.mobile-links {
    list-style: none;
    text-align: center;
    padding: 0;
}

.mobile-links li {
    margin: 20px 0;
}

.mobile-links li a {
    font-family: 'Oswald', sans-serif; 
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: 0.3s;
}

.close-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: #7A6244;
    cursor: pointer;
}

/* --- Responsive Rules --- */
@media (max-width: 850px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-toggle {
        display: flex; 
    }
}


.menu-wrapper {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 100001;
    transition: all 0.3s ease;
}

.hamburger-menu {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.line {
    width: 100%;
    height: 3px;
    background-color: #7A6244; 
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2); 
}


.menu-wrapper.open .top {
    transform: translateY(8.5px) rotate(45deg);
}

.menu-wrapper.open .middle {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-wrapper.open .bottom {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Responsive Rule */
@media (max-width: 850px) {
    .menu-wrapper {
        display: block; 
    }
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),  center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 6rem;
    letter-spacing: 15px;
    
      color: var(--taupe);
}

.hero-content p {
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: white;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--olive);
    color: var(--cream);
    text-decoration: none;
    font-weight: bold;
    border-radius: 2px;
    transition: 0.3s ease;
}

/* --- Modern Hero Button --- */
.herobtn {
    display: inline-block;
    padding: 16px 45px;
    background-color: #000000; /* Solid Black Background */
    color: var(--taupe); 
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 4px; 
    text-transform: uppercase;
    border: 1px solid var(--taupe);
    border-radius: 0px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 6px 6px 0px var(--taupe); 
    z-index: 1;
}


.herobtn:hover {
    background-color: var(--taupe);
    color: #000000;
    box-shadow: 0px 0px 0px var(--taupe);
    transform: translate(4px, 4px); 
}


.herobtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.6s;
}

.herobtn:hover::before {
    left: 100%;
}

.btn:hover {
    background-color: var(--taupe);
}

/* --- Mobile Responsive (Hero Section Only) --- */
@media (max-width: 600px) {
  
    .hero-content h1 {
        font-size: 2.8rem; 
        letter-spacing: 5px; 
    }

  
    .hero-content p {
        font-size: 0.9rem;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

  
    .btn {
        padding: 10px 25px; 
        font-size: 0.8rem; 
        letter-spacing: 1px;
    }
}

/*features*/


.features-bar {
    background-color: #121212; 
    padding: 80px 0;          
    border-top: 1px solid var(--taupe);
    border-bottom: 1px solid var(--taupe);
    margin: 60px 0;
}

.feature-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;  
    align-items: center;      
    text-align: center;
    flex: 1;                 
    min-width: 250px;
}


.feature-icon i {
    font-size: 3.5rem;        
    color: var(--taupe);
    margin-bottom: 20px;      
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon i {
    transform: scale(1.1);    
}


.feature-text h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;       
    color: var(--taupe);
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 700;
}

.feature-text p {
    font-size: 0.9rem;     
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Mobile Responsive*/
@media (max-width: 768px) {
    .features-bar {
        padding: 60px 0;
    }
    
    .feature-wrapper {
        display: grid;
        grid-template-columns: 1fr; 
        gap: 50px;
    }

    .feature-icon i {
        font-size: 3rem;
    }

    .feature-text h4 {
        font-size: 1.2rem;
    }
}

/*vault ssection*/
.banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
    padding: 60px 20px;
}

.banner-item {
    position: relative;
    height: 550px; /* Banner height*/
    overflow: hidden;
    background-color: #1a1a1a;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image cover */
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* image hover */
.banner-item:hover img {
    transform: scale(1.1);
}

/*  */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* take the text under thge banner */
    align-items: center;
    padding-bottom: 40px;
    text-align: center;
}

.banner-tag {
    background-color: var(--cream);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.banner-overlay h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--cream);
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.banner-btn {
    padding: 12px 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--cream);
    color: var(--cream);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: 0.3s;
    backdrop-filter: blur(5px); /* button glass effect */
}


/* Container padding */
.vault-section {
    padding: 80px 20px;
}

.main-vault-title {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    letter-spacing: 8px;
    color: var(--taupe);
    margin-bottom: 30px;
    margin-top: 200px;
    text-transform: uppercase;
}


.banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px;
}

.banner-item {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: #1a1a1a;
    border: 1px solid rgba(122, 98, 68, 0.2);
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}


.banner-tag.warning {
    background-color: #7a2a2a; 
    color: white;
}

.banner-btn.coming-soon {
    opacity: 0.7;
    pointer-events: none; 
    border-style: dashed;
}

/* --- Mobile Responsive (768px and down) --- */
@media (max-width: 768px) {
    .main-vault-title {
        font-size: 2rem;
        letter-spacing: 4px;
        text-align: center;
        margin-bottom: 30px;
    }

    
    .banner-grid {
        display: grid !important; 
        grid-template-columns: 1fr !important; 
        gap: 20px; 
        width: 100%;
        padding: 0 15px; 
    }

    .banner-item {
        width: 100%;
        height: 350px;
        position: relative;
        overflow: hidden;
    }

    .banner-item img {
        width: 100%;
        height: 100%;
        object-fit: cover; 
    }

   
    .banner-overlay h3 {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
}

:root {
    --cream: #F2EDE3;
    --taupe: #7A6244;
    --olive: #4B5337;
    --charcoal: #2F2F2F;
    --black: #121212;
}


.main-footer {
    background-color: #0d0d0d;
    padding: 100px 0 20px;
    border-top: 1px solid var(--taupe);
    margin-top: 50px;
    color: var(--cream);
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.brand-statement-section {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

/* Newsletter Input */
.early-access-box {
    display: flex;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--taupe);
}

.early-access-box input {
    background: transparent;
    border: none;
    padding: 15px 0;
    color: var(--cream);
    width: 100%;
    outline: none;
    font-size: 0.9rem;
}

.join-btn {
    background: transparent;
    border: none;
    color: var(--taupe);
    font-weight: bold;
    cursor: pointer;
    padding: 0 20px;
    letter-spacing: 2px;
}

/* Icons and Brand Info */
.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.info-item i {
    color: var(--taupe);
}

.footer-info {
    flex: 0.8;
}

.footer-brand .footer-logo {
    font-size: 3rem;
    letter-spacing: 10px;
    font-family: 'Oswald', sans-serif;
    color: var(--cream);
}

.footer-links {
    display: flex;
    gap: 50px;
    margin: 30px 0;
}

.link-col a {
    display: block;
    color: var(--cream);
    text-decoration: none;
    margin-bottom: 8px;
    opacity: 0.6;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
    margin-top: 50px;
    font-size: 0.7rem;
}

/* --- THE ULTIMATE MOBILE FOOTER INTERFACE --- */
@media (max-width: 768px) {
    footer {
        padding: 50px 0 20px; 
        background: #050505; 
    }

    .footer-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 45px;
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }

    /* About Section */
    .footer-about p {
        font-size: 0.9rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.7);
        max-width: 300px;
        margin: 0 auto;
    }

    /* Newsletter Box - Premium Style */
    .footer-newsletter {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .early-access-box {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        background: #0a0a0a;
        border: 1px solid rgba(122, 98, 68, 0.4);
        margin-top: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .early-access-box input {
        width: 100%;
        padding: 18px;
        background: transparent;
        border: none !important;
        color: var(--cream);
        text-align: center;
        font-family: 'Oswald', sans-serif;
        font-size: 0.9rem;
        letter-spacing: 1px;
        outline: none;
    }

    .join-btn {
        width: 100%;
        padding: 15px !important;
        background: var(--taupe) !important;
        color: #000 !important;
        font-weight: 900 !important;
        text-transform: uppercase;
        letter-spacing: 3px;
        border: none !important;
        cursor: pointer;
        transition: 0.3s ease;
    }

    /* Social Icons - Focused Center */
    .footer-socials {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 10px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        background: rgba(122, 98, 68, 0.1);
        border: 1px solid rgba(122, 98, 68, 0.2);
    }

    /* Footer Links - Column Layout */
    .footer-links ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 0;
    }

    .footer-links a {
        font-size: 0.85rem;
        letter-spacing: 2px;
        color: var(--taupe);
        text-transform: uppercase;
    }

    /* Bottom Copyright */
    .footer-bottom {
        width: 100%;
        margin-top: 40px;
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 0.65rem;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, 0.3);
    }
}

/* Social Icons Modern Styling */
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05); /* Soft glass look */
    border: 1px solid rgba(122, 98, 68, 0.2); /* Taupe border */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 50%; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover Effects */
.social-icon:hover {
    background: var(--taupe);
    color: var(--black);
    transform: translateY(-5px) rotate(360deg); 
    border-color: var(--taupe);
}

/* WhatsApp specific hover color */
.social-icon.whatsapp:hover {
    background: #25D366; /* WhatsApp green */
    border-color: #25D366;
    color: white;
}


.early-access-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 5px 20px;
    border: 1px solid rgba(122, 98, 68, 0.3);
    border-radius: 5px;
    margin-bottom: 30px;
    transition: 0.3s;
}

.early-access-box:focus-within {
    border-color: var(--taupe);
    background: rgba(255, 255, 255, 0.07);
}

.early-access-box input {
    border: none !important; 
    background: transparent;
}

.join-btn {
    border-left: 1px solid rgba(122, 98, 68, 0.3) !important;
    margin-left: 10px;
}

/*about*/

.about-section {
    padding: 100px 20px;
    background-color: var(--black);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Image styling with a border effect */
.about-img-box {
    position: relative;
    border-left: 5px solid var(--taupe); 
}

.about-img-box img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(40%) contrast(110%); /* Bold look */
}

.img-overlay-text {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: var(--taupe);
    color: var(--black);
    font-family: 'Oswald', sans-serif;
    padding: 10px 20px;
    font-weight: bold;
    letter-spacing: 3px;
    transform: rotate(-90deg);
    transform-origin: bottom right;
}

/* Text Content styling */
.sub-title {
    color: var(--taupe);
    font-size: 0.9rem;
    letter-spacing: 5px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.main-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.about-p {
    color: var(--cream);
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.7;
    margin-bottom: 20px;
}

/* Stats styling */
.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 30px;
}

.stat-num {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--taupe);
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--cream);
    opacity: 0.5;
}

/* --- Responsive Layout --- */
@media (max-width: 1024px) {
    .about-wrapper {
        gap: 40px;
    }
    .main-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .about-wrapper {
        grid-template-columns: 1fr; 
        text-align: center;
    }
    
    .about-img-box {
        order: 2; 
        border-left: none;
        border-bottom: 5px solid var(--taupe);
        padding-left: 0;
        padding-bottom: 20px;
    }

    .about-img-box img {
        height: 400px;
    }

    .about-stats {
        justify-content: center;
    }

    .img-overlay-text {
        transform: rotate(0);
        bottom: -10px;
        right: 20px;
    }
}


/* --- Vault Section Fix --- */
.vault-section {
    width: 100%;
   
    padding: 40px 0; 
    background: transparent;
    position: relative;
    display: block;
  
    margin-top: 0 !important; 
    scroll-margin-top: 80px; 
    clear: both;
}

.vault-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}


.vault-header {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 0;
}

.main-vault-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 12px;
    color: var(--taupe);
    text-transform: uppercase;
    margin: 0 0 15px 0; 
}

.title-underline {
    width: 60px;
    height: 2px;
    background: var(--taupe, #7A6244);
    margin: 0 auto;
    opacity: 0.6;
}


.banner-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    width: 100%;
}

/* --- Banner Item & Image --- */
.banner-item {
    position: relative;
    height: 600px; /* Modern Vertical Style */
    overflow: hidden;
    background: #0a0a0a;
    border: 1px solid rgba(122, 98, 68, 0.1);
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1), filter 0.8s ease;
}

.banner-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

/* --- Overlay & Button --- */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 50px;
    text-align: center;
}

.tag-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.banner-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 14px;
    text-transform: uppercase;
    border-radius: 2px;
}

.tag-available {
    background-color: #ffffff; 
    color: #000000;
}

.tag-not-available {
    background-color: #b30000; /* Premium Red */
    color: #ffffff;
}

.banner-overlay h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.shop-now-btn {
    padding: 12px 35px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: 0.4s;
    background: transparent;
    backdrop-filter: blur(5px);
}

.shop-now-btn:hover {
    background: #fff;
    color: #000;
}

.shop-now-btn.disabled {
    border-color: #555;
    color: #555;
    pointer-events: none;
}

/* --- Responsive Fixes --- */
@media (max-width: 1100px) {
    .banner-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .vault-section { padding: 80px 0; }
    .banner-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .banner-item { height: 450px; }
    .main-vault-title { font-size: 2rem; letter-spacing: 6px; }
}


/* --- New Arrivals Section --- */
.arrivals-section {
    padding: 100px 0;
    width: 100%;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.arrivals-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    padding: 0 20px;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    letter-spacing: 8px;
    color: #fff;
}

.section-subtitle {
    color: var(--taupe);
    letter-spacing: 3px;
    font-size: 0.8rem;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    gap: 15px;
}

.control-btn {
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
}

.control-btn:hover {
    border-color: var(--taupe);
    color: var(--taupe);
}

/* Slider Mechanics */
.slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 0 20px;
}

.arrivals-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.arrival-card {
    min-width: calc(33.333% - 20px); /* Desktop 3 items */
    flex-shrink: 0;
}

/* Image & Hover Fix */
.arrival-img-box {
    position: relative;
    height: 480px; 
    width: 100%;
    overflow: hidden;
    background: #0a0a0a;
    display: block;
}

.arrival-img-box img {
    width: 100%;
    height: 100% !important;
    max-width: 350px; 
    object-fit: cover; 
    display: block;
    transition: transform 0.8s ease;
}

/* Hover Effect */
.arrival-card:hover .arrival-img-box img {
    transform: scale(1.05);
}

.arrival-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
    backdrop-filter: blur(3px);
}

.details-btn {
    padding: 12px 25px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: 0.4s;
}

.arrival-card:hover .arrival-overlay { opacity: 1; }
.arrival-card:hover .details-btn { transform: translateY(0); }
.arrival-card:hover .arrival-img-box img { transform: scale(1.05); }

/* Name & Price Always Visible */
.arrival-info {
    padding-top: 20px;
}

.arrival-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.arrival-info p {
    color: var(--taupe);
    font-size: 0.9rem;
    font-weight: 600;
}

/* --- Mobile Responsive --- */

@media (max-width: 768px) {
    .arrivals-track {
        gap: 30px;
    }

    .arrival-card {
      
        min-width: 100% !important; 
        flex-shrink: 0;
    }
}


@media (min-width: 1025px) {
    .arrival-card {
   
        min-width: calc(33.333% - 20px); 
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
  
    .slider-controls {
        display: none !important;
    }


    .arrivals-track {
        display: flex;
        flex-direction: column; 
        gap: 40px; 
        transform: none !important;
        transition: none !important;
    }

    .arrival-card {
        width: 100% !important;
        min-width: 100% !important;
    }

    .arrival-img-box {
        height: 450px; 
    }

  
    .slider-wrapper {
        overflow: visible !important;
    }

    .arrivals-header {
        text-align: center;
        justify-content: center;
        margin-bottom: 40px;
    }
}

.show-more-container {
    text-align: center;
    margin-top: 50px;
    display: none; 
}

.show-more-btn {
    padding: 12px 40px;
    background: transparent;
    border: 1px solid var(--taupe);
    color: var(--taupe);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 3px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.4s ease;
}

.show-more-btn:hover {
    background: var(--taupe);
    color: #fff;
}


@media (max-width: 768px) {
    .show-more-container {
        display: block;
    }


    .arrival-card:nth-child(n+4) {
        display: none; 
    }

    
    .arrivals-track.show-all .arrival-card {
        display: block !important;
    }
}


.arrivals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Button Styling */
.show-more-container {
    text-align: center;
    margin-top: 20px;
}

.show-more-btn {
    display: inline-block;
    padding: 14px 45px;
    background: transparent;
    border: 1px solid #7A6244; /* Taupe color */
    color: #7A6244;
    font-family: 'Oswald', sans-serif;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 0.85rem;
    transition: 0.4s ease;
}

.show-more-btn:hover {
    background: #7A6244;
    color: #fff;
    letter-spacing: 5px; 
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .arrivals-grid {
        grid-template-columns: 1fr; 
    }
}


.show-more-container {
    display: block !important;
    text-align: center;
    margin-top: 60px;
    width: 100%;
    clear: both;
}

.show-more-btn {
    display: inline-block !important; 
    padding: 14px 45px;
    background: transparent;
    border: 1px solid #7A6244; /* Taupe color */
    color: #7A6244;
    font-family: 'Oswald', sans-serif;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 0.85rem;
    transition: 0.4s ease;
    cursor: pointer;
}

.show-more-btn:hover {
    background: #7A6244;
    color: #fff;
    letter-spacing: 5px;
}

/*animations*/

/* --- Reveal Animation Base --- */
.reveal {
    position: relative;
    transform: translateY(50px); 
    opacity: 0;
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1); 
}


.reveal.active {
    transform: translateY(0);
    opacity: 1;
}


.reveal-left { transform: translateX(-50px); opacity: 0; transition: 1s ease; }
.reveal-left.active { transform: translateX(0); opacity: 1; }

.reveal-right { transform: translateX(50px); opacity: 0; transition: 1s ease; }
.reveal-right.active { transform: translateX(0); opacity: 1; }

/* --- Special Hover for Images --- */
.arrival-img-box img, .banner-item img {
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.arrival-card:hover .arrival-img-box img,
.banner-item:hover img {
    transform: scale(1.1) rotate(1deg); 
}

@media (max-width: 1024px) {
    .mobile-drawer {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 85%; 
        height: 100vh;
      
        background: rgba(10, 10, 10, 0.95); 
        backdrop-filter: blur(10px);
        z-index: 2000;
        display: flex;
        flex-direction: column;
        padding: 80px 40px;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(122, 98, 68, 0.2);
    }

    .mobile-drawer.active {
        right: 0;
    }

    .drawer-links {
        list-style: none;
        padding: 0;
        margin-top: 40px;
    }

    .drawer-links li {
        margin-bottom: 25px;
        opacity: 0;
        transform: translateX(20px);
        transition: 0.4s ease;
    }

    .mobile-drawer.active li {
        opacity: 1;
        transform: translateX(0);
    }

  
    .drawer-links li a {
        font-family: 'Oswald', sans-serif;
        font-size: 1.4rem; 
        color: #F2EDE3;
        text-decoration: none;
        letter-spacing: 3px;
        text-transform: uppercase;
        transition: 0.3s;
    }

    .drawer-links li a:hover {
        color: #7A6244;
        padding-left: 10px;
    }

  
    .close-btn {
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 2rem;
        color: #7A6244;
        cursor: pointer;
    }
}


@media (min-width: 1025px) {
    .mobile-toggle {
        display: none !important; 
    }

    .mobile-drawer {
        display: none !important; 
    }

    .menu-overlay {
        display: none !important; 
    }

    .nav-links {
        display: flex !important; 
    }
}


@media (max-width: 1024px) {
    .mobile-toggle {
        display: block; 
    }
    
    .nav-links {
        display: none;
    }
}
