/* HERO */
.hero {
    position: relative;
    height: 620px;
    background: var(--black);
    overflow: hidden;
    /* display: flex;
    align-items: center; */
}
.hero img {
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .25) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 640px;
}

.hero-tag {
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-tag::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-size: 52px;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 em {
    color: var(--gold);
    font-style: italic;
}

.hero-sub {
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 36px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.hero-badge {
    position: absolute;
    right: 80px;
    bottom: 48px;
    z-index: 2;
    background: rgba(201, 168, 76, .12);
    border: 1px solid var(--gold);
    padding: 20px 28px;
    text-align: center;
}

.hero-badge-num {
    font-size: 32px;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-badge-label {
    font-family: 'Arial', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
}

/* CATEGORIES */
.categories {
    background: var(--beige);
    padding: 80px 48px;
}

.categories-header {
    text-align: center;
    margin-bottom: 56px;
}

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

.cat-card {
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s;
}

.cat-card:hover {
    transform: translateY(-4px);
}

.cat-img {
    height: 220px;
}

.cat-img img {
    width: 100%;
    height: 100%;
}

.cat-body {
    padding: 24px 28px 28px;
}

.cat-title {
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 8px;
}

.cat-desc {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.cat-link {
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.cat-link::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--gold);
    transition: width .3s;
}

.cat-card:hover .cat-link::after {
    width: 36px;
}

/* FEATURED CATEGORIES */
.feat-cats {
    padding: 64px 48px;
    background: #fff;
}

.feat-cats-header {
    text-align: center;
    margin-bottom: 44px;
}

.feat-cats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

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

.fc-item:hover .fc-circle {
    border-color: var(--gold);
}

.fc-item:hover .fc-label {
    color: var(--gold);
}

.fc-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 14px;
    border: 1.5px solid transparent;
    transition: border-color .3s;
}

.fc-circle img {
    width: 100%;
    height: 100%;
}

.fc-label {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--black);
    transition: color .3s;
}

/* PRODUCTS */
.products {
    padding: 80px 48px;
    background: var(--beige);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    cursor: pointer;
    background: #fff;
}

.product-card:hover .product-img-inner {
    transform: scale(1.04);
}

.product-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.product-img-inner {
    width: 100%;
    height: 100%;
    transition: transform .5s;
}

.product-badge-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: #fff;
    font-family: 'Arial', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    z-index: 1;
}

.wish-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    background: rgba(255, 255, 255, .92);
    border: none;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.product-info {
    padding: 16px 16px 18px;
}

.product-name {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 4px;
}

.product-sub {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.product-price {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.product-price .original {
    font-size: 13px;
    color: #bbb;
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 6px;
}

.btn-cart-add {
    width: 100%;
    background: var(--black);
    color: #fff;
    border: none;
    padding: 11px;
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .3s;
}

.btn-cart-add:hover {
    background: var(--gold);
}

/* WHY */
.why {
    background: var(--black);
    padding: 80px 48px;
    color: #fff;
}

.why-header {
    text-align: center;
    margin-bottom: 56px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.why-item {
    text-align: center;
}

.why-icon {
    width: 60px;
    height: 60px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-title {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
}

.why-desc {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.65;
}

/* BESTSELLERS */
.bestsellers {
    background: var(--beige);
    padding: 80px 48px;
}

.bestsellers-header {
    text-align: center;
    margin-bottom: 48px;
}

.bs-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 20px;
}

.bs-main {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.bs-main:hover .bs-main-img {
    transform: scale(1.04);
}

.bs-main-img {
    height: 480px;
    transition: transform .5s;
}

.bs-main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 28px;
    background: linear-gradient(to top, rgba(0, 0, 0, .78) 0%, transparent 100%);
    color: #fff;
}

.bs-tag {
    font-family: 'Arial', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.bs-name {
    font-size: 22px;
    margin-bottom: 4px;
}

.bs-price {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    color: var(--gold);
    font-weight: 600;
}

.bs-small-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.bs-small {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.bs-small:hover .bs-small-img {
    transform: scale(1.04);
}

.bs-small-img {
    height: 100%;
    min-height: 230px;
    transition: transform .5s;
}

.bs-small-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, .72) 0%, transparent 100%);
    color: #fff;
}

/* TESTIMONIALS */
.testimonials {
    background: #fff;
    padding: 80px 48px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 56px;
}

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

.testi-card {
    background: var(--beige);
    padding: 32px 28px;
}

.testi-quote {
    font-size: 48px;
    color: var(--gold);
    line-height: .5;
    margin-bottom: 20px;
}

.testi-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: .5px solid var(--beige-dark);
    padding-top: 18px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    flex-shrink: 0;
}

.testi-name {
    font-size: 15px;
    color: var(--black);
}

.testi-loc {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
}

.stars {
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 14px;
}

/* OFFER */
.offer-banner {
    background: var(--gold);
    padding: 64px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.offer-tag {
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .6);
    margin-bottom: 10px;
}

.offer-headline {
    font-size: 38px;
    color: #fff;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 8px;
}

.offer-sub {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
}

.offer-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.offer-countdown {
    display: flex;
    gap: 16px;
}

.countdown-item {
    text-align: center;
}

.countdown-num {
    font-size: 30px;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.countdown-label {
    font-family: 'Arial', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
}

.btn-offer {
    background: var(--black);
    color: #fff;
    border: none;
    padding: 15px 38px;
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 600;
}

.btn-offer:hover {
    opacity: .85;
}

/* =========================================
   RESPONSIVE DESIGN (LANDING PAGE)
   ========================================= */

/* Laptops & Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero-content {
        padding: 0 40px;
    }
    .hero-badge {
        right: 40px;
        padding: 16px 20px;
    }
    .hero h1 {
        font-size: 40px;
    }

    .categories, .feat-cats, .products, .why, .bestsellers, .testimonials, .offer-banner {
        padding: 60px 40px;
    }

    .feat-cats-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bs-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bs-main {
        grid-column: span 2;
    }
    .bs-main-img {
        height: 380px;
    }
    
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile & Small Tablets (max-width: 767px) */
@media (max-width: 767px) {
    .hero {
        height: auto;
        min-height: 500px;
        padding-top: 60px;
        padding-bottom: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .hero-content {
        padding: 0 24px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero-sub {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }
    .hero-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 40px 24px 0;
        width: calc(100% - 48px);
    }

    .section-title {
        font-size: 26px;
    }

    .categories, .feat-cats, .products, .why, .bestsellers, .testimonials, .offer-banner {
        padding: 48px 20px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    /* Make featured categories horizontally scrollable instead of wrapping to save vertical space */
    .feat-cats-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 16px;
        -webkit-overflow-scrolling: touch;
    }
    .fc-item {
        flex: 0 0 120px;
        scroll-snap-align: start;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
    .product-img {
        height: 280px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .bs-grid {
        grid-template-columns: 1fr;
    }
    .bs-main {
        grid-column: span 1;
    }
    .bs-main-img {
        height: 320px;
    }
    .bs-small-grid {
        grid-template-rows: auto;
        grid-template-columns: 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .offer-banner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .offer-right {
        flex-direction: column;
        width: 100%;
        gap: 24px;
    }
    .offer-countdown {
        justify-content: center;
    }
    .btn-offer {
        width: 100%;
    }
}
