 * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
padding: 0 20px;
}

/* Sticky Header */
.main-header {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}
.logo span { color: #ff4757; }

/* Navigation Menu */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
    white-space: nowrap;
}

.nav-menu a:hover { color: #ff4757; }

.sale-link { color: #ff4757 !important; }

.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-icons a { text-decoration: none; color: #333; }
.header-icons i { font-size: 18px; color: #333; cursor: pointer; }

.cart-icon { position: relative; text-decoration: none; }

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff4757;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50%;
}

/* ── Hamburger Button (hidden on desktop) ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 19px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    margin-left: 16px;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}
/* Animate to X when open */
.hamburger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ── Mobile / Tablet breakpoints ── */
@media (max-width: 900px) {
    /* Let the header container wrap properly */
    .main-header .container {
        flex-wrap: wrap;
        position: relative;
    }

    /* Show hamburger */
    .hamburger { display: flex; }

    /* Hide icons on very small screens to save space — show cart only */
    .header-icons a:not(.cart-icon) { display: none; }

    /* Full-width slide-down mobile menu */
    .nav-menu {
        display: none;
        width: 100%;
        order: 3;             /* Pushes below logo + icons row */
        background: #fff;
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        border-top: 1px solid #eee;
    }
    .nav-menu.open { display: block; }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }

    .nav-menu ul li a {
        display: block;
        padding: 13px 24px;
        border-bottom: 1px solid #f1f1f1;
        font-size: 15px;
    }
    .nav-menu ul li:last-child a { border-bottom: none; }
}

@media (max-width: 480px) {
    .logo { font-size: 18px; }
}


.hero {
background-image: url('x.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content:center; /* Center horizontally */
    align-items: right;     /* Center vertically */
    position: relative;
    color: white;
    font-family: sans-serif;
 padding: 60px 0;
 
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 2;
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff4757;
    font-weight: 700;
    font-size: 14px;
}

.hero-content h1 {
    font-size: clamp(40px, 5vw, 64px); /* Fluid typography */
    color: #2d3436;
    margin: 20px 0;
    line-height: 1.1;
}

.hero-content p {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 30px;
    max-width: 500px;
}

/* Buttons */
.hero-btns {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-primary {
    background: #2d3436;
    color: white;
}

.btn-primary:hover { background: #000; }

.btn-secondary {
    border: 2px solid #2d3436;
    color: #2d3436;
}

.btn-secondary:hover { background: #2d3436; color: white; }

/* Image Styling */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-btns {
        justify-content: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image img {
        box-shadow: 10px 10px 0px #ff4757;
    }
}



/*add cart*/
.cart-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2d3436;
    color: white;
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 10001;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.item-info { display: flex; align-items: center; gap: 10px; }
 




/*category*/
.category-carousel { padding: 80px 0; background: #fff; }
.section-title { font-size: 22px; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; }

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
}

.category-track {
    display: flex;
    gap: 25px;              /* was 150px — way too wide on mobile */
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch; /* smooth momentum scroll on iOS */
    cursor: grab;
}
.category-track:active { cursor: grabbing; }

.category-track::-webkit-scrollbar { display: none; /* Hide for Chrome/Safari */ }

.category-item {
    flex: 0 0 auto;
    width: 120px;
    text-align: center;
    cursor: pointer;
}

.category-img {
    width: 110px;
    height: 110px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    border: 0px solid #f1f1f1;
    transition: 0.3s;
}

@media (max-width: 480px) {
    .category-item { width: 90px; }
    .category-img  { width: 80px; height: 80px; }
    .category-item p { font-size: 12px; }
}

.category-img img { width: 100%; height: 100%; object-fit: cover; }

.category-item:hover .category-img { border-color: #2d3436; transform: scale(1.05); }

.category-item p { font-weight: 600; font-size: 14px; color: #333; }






/*banner*/
.sale-banner {
    background: linear-gradient(135deg, #b00000 0%, #b00000 100%); /* Vibrant gradient */
    color: white;
    padding: 40px 0;
    overflow: hidden;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.banner-content {
    flex: 1;
    text-align: center;
}

.sale-tag {
    background: #2d3436;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.banner-content h2 {
    font-size: clamp(32px, 5vw, 48px); /* Fluid size for responsiveness */
    margin: 0 0 15px;
}

.banner-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.banner-cta {
    display: inline-block;
    background: #fff;
    color: #ff4757;
    text-decoration: none;
    padding: 12px 30px;
    font-weight: 800;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.banner-cta:hover {
    background: #f1f1f1;
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
    .banner-container {
        flex-direction: column;
        text-align: center;
    }
    .banner-content { order: 1; }
    .banner-image { display: none; } /* Hides image on mobile for speed */
    .banner-content h2 { font-size: 36px; }
}




.checkout-section { padding: 60px 0; background: #f8f9fa; }
.checkout-container { display: grid; grid-template-columns: 1fr 350px; gap: 40px; align-items: start; }

/* Form Styling */
.checkout-forms { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.checkout-forms h2 { font-size: 20px; margin-bottom: 20px; color: #2d3436; }

.form-group { margin-bottom: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }

input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

/* Payment Toggle */
.payment-methods { display: flex; gap: 15px; }
.radio-card {
    flex: 1;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
}
.radio-card input { width: auto; margin-right: 10px; }

/* Order Summary */
.order-summary {
    background: white;
    padding: 25px;
    border-radius: 8px;
    position: sticky;
    top: 100px; /* Aligns with header */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.summary-item { display: flex; justify-content: space-between; margin-bottom: 10px; color: #636e72; }
.summary-total { display: flex; justify-content: space-between; font-size: 20px; font-weight: bold; color: #2d3436; }
.free { color: #27ae60; font-weight: bold; }

.btn-checkout {
    width: 100%;
    background: #2d3436;
    color: white;
    border: none;
    padding: 18px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
}

.btn-checkout:hover { background: #000; }

@media (max-width: 992px) {
    .checkout-container { grid-template-columns: 1fr; }
    .order-summary { position: static; order: -1; } /* Summary first on mobile */
}




/*grid*/
.featured-products { padding: 40px 0; background: #fff; }

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  place-items: center;
    gap: 25px;

}

.shop-item {
    text-align: center;
    cursor: pointer;
}

.image-container {
    position: relative;
    aspect-ratio: 4 / 5; /* Elegant vertical ratio for fashion */
    background: #f0f0f0;
    overflow: hidden;
    margin-bottom: 30px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.shop-item:hover .overlay { opacity: 1; }
.shop-item:hover img { transform: scale(1.05); }

.view-btn {
    padding: 12px 25px;
    background: #fff;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Typography */
.brand { font-size: 12px; text-transform: uppercase; color: #888; margin-bottom: 5px; }
.item-details h3 { font-size: 18px; color: #222; margin-bottom: 8px; }
.price { font-weight: 700; color: #ff4757; }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .grid-3-col { grid-template-columns: repeat(2, 1fr); } /* 2 columns for tablets */
}

@media (max-width: 600px) {
    .grid-3-col { grid-template-columns: repeat(2, 1fr); } /* 2 column for phones */
}






.testimonial-catalogue { padding: 80px 0; background: #fff; }
.section-subtitle { text-align: center; color: #888; margin-top: -20px; margin-bottom: 40px; }

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

.catalogue-item {
    background: #fdfdfd;
    border: 1px solid #eee;
    overflow: hidden;
    transition: 0.3s;
}

.user-photo {
    position: relative;
    aspect-ratio: 1 / 1.2; /* Taller for fashion shots */
    overflow: hidden;
}

.user-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* Shop the Look Button on Hover */
.shop-tag {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(50px);
    background: white;
    color: #222;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    opacity: 0;
    transition: 0.3s;
}

.catalogue-item:hover .shop-tag { opacity: 1; transform: translateX(-50%) translateY(0); }
.catalogue-item:hover img { transform: scale(1.1); filter: brightness(0.9); }

.user-feedback { padding: 20px; text-align: center; }
.user-feedback p { font-size: 14px; line-height: 1.6; color: #444; margin-bottom: 10px; font-style: italic; }
.user-handle { font-weight: bold; color: #2d3436; font-size: 13px; }

@media (max-width: 992px) {
    .catalogue-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .catalogue-grid {grid-template-columns: repeat(2, 1fr);}
}



/*product*/
.grid-2 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; padding: 40px 20px; }

/* Gallery */
.main-view img { width: 100%; border-radius: 8px; background: #f5f5f5; }
.thumb-list { display: flex; gap: 10px; margin-top: 15px; }
.thumb-list img { width: 80px; height: 100px; object-fit: cover; cursor: pointer; border: 2px solid transparent; opacity: 0.6; }
.thumb-list img.active { border-color: #333; opacity: 1; }

/* Purchase UI */
.purchase-row { display: flex; gap: 20px; margin-top: 30px; }
.qty-control { display: flex; border: 1px solid #ddd; border-radius: 4px; }
.qty-control button { width: 45px; border: none; background: #fff; cursor: pointer; font-size: 18px; }
.qty-control input { width: 50px; border: none; text-align: center; font-weight: bold; }

.add-to-cart { flex: 1; background: #2d3436; color: #fff; border: none; padding: 15px; font-weight: bold; cursor: pointer; }
.add-to-cart:hover { background: #000; }

@media (max-width: 768px) { .grid-2 { grid-template-columns: 1fr; } }



.about-us { padding: 40px 0; background: #fff; }
.about-container { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
}

.about-image { position: relative; }
.about-image img { 
    width: 100%; 
    border-radius: 4px; 
    box-shadow: 30px 30px 0px #f8f9fa; /* Elegant offset background */
}

.since-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #2d3436;
    color: white;
    padding: 15px 25px;
    font-weight: bold;
    letter-spacing: 1px;
}

.tagline { color: #ff4757; font-weight: 700; text-transform: uppercase; font-size: 13px; }
.about-content h2 { font-size: 36px; margin: 60px 0; line-height: 1.2; color: #2d3436; }
.about-content p { color: #636e72; line-height: 1.8; margin-bottom: 60px; font-size: 16px; }

/* Values List */
.values-grid { display: grid; gap: 15px; margin-bottom: 35px; }
.value-item { display: flex; align-items: center; gap: 12px; font-weight: 600; color: #2d3436; }
.value-item i { color: #27ae60; font-size: 18px; }

.about-link { 
    text-decoration: none; 
    color: #2d3436; 
    font-weight: 700; 
    border-bottom: 2px solid #ff4757; 
    padding-bottom: 5px;
    transition: 0.3s;
}
.about-link:hover { color: #ff4757; }

/* Mobile View */
@media (max-width: 992px) {
    .about-container { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .about-image img { box-shadow: none; }
    .value-item { justify-content: center; }
}
 

.confirm-wrap {
            max-width: 560px;
            margin: 70px auto;
            text-align: center;
            padding: 0 20px;
        }
        .confirm-icon {
            font-size: 4rem;
            color: #27ae60;
            margin-bottom: 16px;
        }
        .confirm-wrap h1 {
            font-size: 2rem;
            margin-bottom: 10px;
        }
        .confirm-wrap p {
            color: #555;
            margin-bottom: 6px;
        }
        .order-box {
            background: #f4f4f4;
            border-radius: 8px;
            padding: 20px 30px;
            display: inline-block;
            margin: 24px auto;
            font-size: 1.05rem;
        }
        .order-box strong {
            display: block;
            font-size: .85rem;
            color: #888;
            text-transform: uppercase;
            letter-spacing: .05em;
            margin-bottom: 6px;
        }
        .order-number {
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: .08em;
            color: #2d3436;
        }
        .confirm-actions {
            margin-top: 30px;
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-primary {
            padding: 12px 28px;
            background: #2d3436;
            color: #fff;
            text-decoration: none;
            border-radius: 4px;
            font-size: .95rem;
            transition: background .2s;
        }
        .btn-primary:hover { background: #636e72; }
        .btn-outline {
            padding: 12px 28px;
            border: 2px solid #2d3436;
            color: #2d3436;
            text-decoration: none;
            border-radius: 4px;
            font-size: .95rem;
            transition: all .2s;
        }
        .btn-outline:hover { background: #2d3436; color: #fff; }
        .cart-count { background: #e74c3c; color: #fff; border-radius: 50%; padding: 2px 6px; font-size: .75rem; margin-left: 3px; }
        .no-order-msg { color: #c0392b; font-size: .9rem; margin-top: 8px; }


.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 0 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: #a4a4a4;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    color: #a4a4a4;
    text-decoration: none;
    transition: 0.3s;
}
.footer-col ul li a:hover { color: #ff4757; padding-left: 5px; }

/* Newsletter Form */
.footer-form {
    display: flex;
    gap: 10px;
}
.footer-form input {
    background: #2a2a2a;
    border: 1px solid #333;
    padding: 12px;
    color: white;
    flex: 1;
}
.footer-form button {
    background: #ff4757;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 600;
}

/* Social Icons */
.social-links { display: flex; gap: 15px; }
.social-links a {
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}
.social-links a:hover { color: #ff4757; }

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #333;
    padding: 25px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.payment-icons { font-size: 24px; color: #a4a4a4; display: flex; gap: 15px; }

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-form { flex-direction: column; }
    .social-links { justify-content: center; }
}

