* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #0f1209;
    color: white;
    overflow-x: hidden;
}

/* ===================== */
/* CONTAINER */
/* ===================== */

.container {
    width: 85%;
    margin: auto;
}

/* ===================== */
/* HEADER */
/* ===================== */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.35);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrapper {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 100px;
}

.nav-menu ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;
}

.nav-menu a:hover {
    opacity: .7;
}

.nav-actions {
    display: flex;
    gap: 25px;
}

.nav-actions a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

/* ===================== */
/* MOBILE MENU */
/* ===================== */

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
}

/* Sidebar */

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #111;
    z-index: 2000;
    transition: .4s ease;
    padding: 30px;
    display: flex;
    flex-direction: column;
    box-shadow:
        -20px 0 50px rgba(0, 0, 0, .4),
        0 0 100px rgba(255, 255, 255, .03);
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.sidebar-header img {
    height: 70px;
}

.close-sidebar {
    background: transparent;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 25px;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.mobile-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-actions a {
    color: #ddd;
    text-decoration: none;
    font-size: 15px;
}

/* Overlay */

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 1500;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===================== */
/* HERO SECTION */
/* ===================== */

.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background */
.hero-bg {
    position: absolute;
    inset: 0;
    background-image:

        url("images/bannner\ anant\ commerce.png");
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    will-change: transform;
}


.hero-wrapper {
    position: relative;
    z-index: 5;

}

/* LEFT */

.hero-left {
    max-width: 650px;
}

.hero-mini-text {
    font-size: 28px;
    display: inline-block;
    margin-bottom: 25px;
    font-style: italic;
    opacity: .9;
}

.hero-left h1 {
    font-size: 92px;
    line-height: .95;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: -4px;
}

.hero-left p {
    font-size: 21px;
    line-height: 1.7;
    max-width: 620px;
    opacity: .88;
    margin-bottom: 35px;
}

.hero-btn {
    padding: 20px 34px;
    border-radius: 14px;
    border: none;
    background: white;
    color: black;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition:
        background .4s ease,
        color .4s ease,
        box-shadow .4s ease;

    position: relative;
    z-index: 20;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    will-change: transform;
}

.hero-left,
.hero-btn,
.hero-wrapper {
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.hero-btn:hover {
    background: #dff5c8;

    box-shadow:
        0 10px 30px rgba(181, 255, 121, .25);
}

/* CENTER */

.hero-product {
    display: flex;
    justify-content: center;
}

.hero-product img {
    width: 370px;
    object-fit: contain;
    filter:
        drop-shadow(0 30px 60px rgba(0, 0, 0, .55));
}








/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media(max-width: 1500px) {

    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }

    .hero-left {
        margin: auto;
    }

    .hero-product {
        margin: 40px 0;
    }

    .hero-right {
        justify-content: center;
    }


}

@media(max-width:768px) {

    .hero-left h1 {
        font-size: 58px;
    }

    .hero-product img {
        width: 260px;
    }

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .container {
        width: 92%;
    }

    .hero-wrapper {
        padding-top: 0px;
    }

    .logo img {
        height: 80px;
    }

}

@media(max-width:448px) {

    .hero-left h1 {
        font-size: 48px;
    }

    .hero-left span {
        font-size: 18px;
    }

    .hero-left p {
        font-size: 18px;
        line-height: 1.2;
        max-width: 620px;
        opacity: .88;
        margin-bottom: 35px;
    }
}



/* ========================= */
/* STATS SECTION */
/* ========================= */

.stats-section {
    background: #f4f4f1;
    color: #111;

    padding: 140px 0;
    position: relative;
}

/* TOP */

.stats-top {
    display: flex;
    align-items: center;
    gap: 35px;

    margin-bottom: 110px;
}

.stats-top h2 {
    font-size: 72px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: -3px;
    color: #b9630c;
}

.stats-top .line {
    width: 100%;
    height: 1px;

    background: rgba(0, 0, 0, .2);
}


.products-section-top {
    display: flex;
    align-items: center;
    gap: 35px;

}

.products-section-top h2 {
    font-size: 72px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: -3px;

    white-space: nowrap;
    color: #b9630c;
}

.products-section-top .line {
    width: 100%;
    height: 1px;

    background: rgba(0, 0, 0, .2);
}

/* GRID */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 90px;
}

/* ITEM */

.stats-item {
    position: relative;
}

.stats-number {
    font-size: 34px;
    font-weight: 700;

    letter-spacing: -2px;

    margin-bottom: 35px;

    display: flex;
    align-items: center;
    gap: 18px;

    line-height: 1;
}

.stats-number i {
    font-size: 26px;
}

.stats-item h3 {
    font-size: 18px;
    font-weight: 700;

    line-height: 1.25;

    margin-bottom: 30px;
}

.stats-item p {
    font-size: 18px;

    line-height: 1.2;

    color: rgba(0, 0, 0, .5);

    font-weight: 400;
}

/* HOVER */

.stats-item::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -25px;

    width: 0%;
    height: 2px;

    background: #111;

    transition: .6s ease;
}

.stats-item:hover::after {
    width: 100%;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width: 1200px) {

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .stats-top {
        margin-bottom: 80px;
    }

}

@media(max-width: 768px) {

    .stats-section {
        padding: 90px 0;
    }

    .stats-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .stats-top h2 {
        font-size: 42px;
        text-align: center;
    }

    .stats-number {
        font-size: 42px;
    }

    .stats-number i {
        font-size: 30px;
    }

    .stats-item h3 {
        font-size: 20px;
    }

    .stats-item p {
        font-size: 17px;
    }

    .products-section-top h2 {
        font-size: 42px;

    }


}

@media(max-width: 448px) {

    .stats-section {
        padding: 90px 0;
    }

    .stats-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .stats-top h2 {
        font-size: 36px;
        letter-spacing: 0.8px;
    }

    .stats-number {
        font-size: 42px;
    }

    .stats-number i {
        font-size: 30px;
    }

    .stats-item h3 {
        font-size: 20px;
    }

    .stats-item p {
        font-size: 17px;
    }

    .products-section-top h2 {
        font-size: 36px;
        letter-spacing: 0.8px;

    }

}


/* ========================= */
/* PRODUCTS SECTION */
/* ========================= */

.products-section {
    position: relative;
    background: #f4f4f1;

    /* height: 320vh; */
}

.products-sticky {
    position: sticky;
    top: 0;

    height: 100vh;

    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* TOP */

.products-top {
    margin-bottom: 60px;
}


/* TRACK */

.products-track-wrapper {
    /* overflow: hidden; */
    width: 100%;
    padding: 60px 0;
}

.products-track {
    display: flex;
    gap: 30px;

    width: max-content;

    padding-left: 4vw;
    padding-right: 10vw;

    will-change: transform;
    /* transform: translateX(0); */
}

/* CARD */

.product-card {
    width: 430px;

    background: #efefef;

    border-radius: 0px;

    overflow: hidden;

    flex-shrink: 0;

    transition: .4s ease;

    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image-wrap {

    height: 430px;

    background: #e8e8e8;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 40px;

    overflow: hidden;
}



/* IMAGE WRAPPER EFFECT */




/* IMAGE */

.product-image {
    width: 75%;
    height: auto;

    object-fit: contain;

    transition: 0.7s ease;
}

.product-card:hover .product-image {
    transform: scale(1.06);
}

/* OVERLAY */

.product-info {

    background: #f5f5f5;

    padding: 28px 24px 26px;
}


/* CONTENT */

.product-info h3 {

    font-size: 20px;

    font-weight: 500;

    color: #1d1d1d;

    margin-bottom: 18px;

    line-height: 1.3;
}

.product-info h4 {

    font-size: 20px;

    font-weight: 700;

    color: #111;

    margin-bottom: 24px;
}

.product-colors {

    display: flex;

    align-items: center;

    gap: 12px;
}

.color {

    width: 34px;
    height: 34px;

    border-radius: 50%;

    cursor: pointer;

    position: relative;

    transition: .3s ease;
}

.color:hover {
    transform: scale(1.08);
}

.color.black {
    background: #000;
}

.color.brown {
    background: #a86134;
}

.color.red {
    background: #8d1d1d;
}

/* ACTIVE RING */

.color.active::after {

    content: "";

    position: absolute;

    inset: -4px;

    border: 2px solid #000;

    border-radius: 50%;
}

.product-colors {

    display: flex;

    align-items: center;

    gap: 12px;
}

.color {

    width: 34px;
    height: 34px;

    border-radius: 50%;

    cursor: pointer;

    position: relative;

    transition: .3s ease;
}

.color:hover {
    transform: scale(1.08);
}

.color.black {
    background: #000;
}

.color.brown {
    background: #a86134;
}

.color.red {
    background: #8d1d1d;
}

/* ACTIVE RING */

.color.active::after {

    content: "";

    position: absolute;

    inset: -4px;

    border: 2px solid #000;

    border-radius: 50%;
}



/* PROGRESS */

.progress-wrapper {
    width: 92%;

    height: 4px;

    background: rgba(0, 0, 0, .08);

    margin: 50px auto 0;

    border-radius: 999px;

    overflow: hidden;
}

.progress-bar {
    width: 20%;
    height: 100%;

    background: #111;

    border-radius: 999px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width: 1200px) {

    .product-card {
        width: 500px;
        height: 650px;
    }

    .product-content h3 {
        font-size: 46px;
    }

}

@media(max-width:768px) {

    .products-track {
        gap: 20px;
    }

    .product-card {
        width: 85vw;
    }

    .product-image-wrap {
        height: 360px;
        padding: 30px;
    }

    .product-info {
        padding: 22px 20px;
    }

    .product-info h3 {
        font-size: 18px;
    }

    .product-info h4 {
        font-size: 18px;
    }

    .color {
        width: 30px;
        height: 30px;
    }

}





/* ========================= */
/* CATEGORY FILTER SECTION */
/* ========================= */

.category-section {
    background: #f4f4f1;
    padding: 60px 0;
}

.category-top {
    text-align: center;
    margin-bottom: 70px;
}

.category-top h2 {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -3px;
    color: #111;
    margin-bottom: 40px;
}

/* TABS */

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 14px 34px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .15);

    background: transparent;
    color: #111;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition: .35s ease;
}

.tab-btn:hover {
    background: #111;
    color: white;
}

.tab-btn.active {
    background: #111;
    color: white;
    border-color: #111;
}

/* PRODUCTS GRID */
/* ========================= */
/* MODERN ECOMMERCE CARD */
/* ========================= */

.category-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    position: relative;

    transition: .45s;
    cursor: pointer;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .05);

}

.category-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .15);

}

/* IMAGE */

.category-image {

    height: 320px;

    background: #f7f7f7;

    position: relative;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {

    width: 78%;
    height: 78%;
    object-fit: contain;

    transition: .8s cubic-bezier(.19, 1, .22, 1);

}

.category-card:hover img {

    transform:
        scale(1.08)
}

/* TOP ICONS */

.card-actions {

    position: absolute;

    top: 18px;
    right: 18px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    z-index: 20;
}

.card-actions button {

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: white;

    cursor: pointer;

    box-shadow:
        0 10px 20px rgba(0, 0, 0, .1);

    transition: .4s;
}

.card-actions button:hover {

    transform: scale(1.1);

    background: black;
    color: white;

}

/* BADGE */

.product-badge {

    position: absolute;

    left: 18px;
    top: 18px;

    padding: 8px 15px;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;
}

.badge-blue {
    background: #dce8ff;
    color: #3766d6;
}

.badge-green {
    background: #e6f5d8;
    color: #b9630c;
}

/* CONTENT */

.card-content {

    padding: 25px;
}

.card-title {

    font-size: 18px;
    font-weight: 700;
    color: #111;

    margin-bottom: 10px;
}

/* RATING */

.product-rating {

    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 14px;
}

.product-rating i {

    color: #ffb800;
    font-size: 14px;
}

.product-rating span {

    font-size: 14px;
    color: #777;
}

/* PRICE */

.price-row {

    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 20px;
}

.new-price {

    font-size: 26px;
    font-weight: 700;
    color: #111;
}

.old-price {

    font-size: 18px;
    text-decoration: line-through;
    color: #999;
}

/* BUTTON */

.add-cart {

    width: 100%;

    padding: 16px;

    border: none;

    border-radius: 16px;

    background: #b9630c;
    color: white;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition: .4s;
}

.add-cart:hover {

    background: #131313;
    color: rgb(255, 255, 255);

    transform: translateY(-3px);
}


/* RESPONSIVE */

@media(max-width:1200px) {

    .category-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }



}

@media(max-width:768px) {

    /* .category-products {
        grid-template-columns: 1fr;
    } */

    .category-top h2 {
        font-size: 42px;
        font-weight: 700;
        letter-spacing: 0.8px;
        color: #111;
        margin-bottom: 40px;
    }

    .category-section {
        padding: 40px 0;
    }

    .category-top {
        margin-bottom: 40px;
    }

    .category-top h2 {
        font-size: 34px;
        letter-spacing: 0;
        margin-bottom: 25px;
    }

    .category-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .category-card {
        border-radius: 18px;
    }

    .category-image {
        height: 180px;
    }

    .card-content {
        padding: 14px;
    }

    .card-title {
        font-size: 14px;
        margin-bottom: 8px;

        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-rating {
        margin-bottom: 10px;
        gap: 4px;
    }

    .product-rating i {
        font-size: 11px;
    }

    .product-rating span {
        font-size: 11px;
    }

    .new-price {
        font-size: 18px;
    }

    .old-price {
        font-size: 13px;
    }

    .price-row {
        margin-bottom: 12px;
        gap: 6px;
    }

    .add-cart {
        padding: 10px;
        font-size: 12px;
        border-radius: 10px;
    }

    .card-actions {
        top: 10px;
        right: 10px;
        gap: 6px;
    }

    .card-actions button {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .product-badge {
        top: 10px;
        left: 10px;
        padding: 5px 10px;
        font-size: 10px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .category-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .category-image {
        height: 140px;
    }

    .category-image img {
        width: 85%;
        height: 85%;
    }

    .card-content {
        padding: 10px;
    }

    .card-title {
        font-size: 12px;
        line-height: 1.3;
    }

    .product-rating {
        display: none;
    }

    .new-price {
        font-size: 15px;
    }

    .old-price {
        font-size: 11px;
    }

    .add-cart {
        font-size: 11px;
        padding: 8px;
    }

    .card-actions button {
        width: 28px;
        height: 28px;
    }

    .product-badge {
        font-size: 9px;
        padding: 4px 8px;
    }
}



/* ========================= */
/* TESTIMONIALS SECTION */
/* ========================= */

.testimonials-section {
    background: #f4f4f1;
    padding: 80px 0;
    overflow: hidden;
}

/* TOP */

.testimonials-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    margin-bottom: 70px;
}

.testimonials-heading {
    display: flex;
    align-items: center;
    gap: 35px;
    width: 100%;
}

.testimonials-heading h2 {
    font-size: 68px;
    line-height: 1;
    /* letter-spacing: -3px; */
    color: #b9630c;
    font-weight: 700;

}

.testimonials-line {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, .18);
}

.testimonials-rating {
    min-width: 240px;
    text-align: right;
}

.stars {
    font-size: 22px;
    color: #f5a623;
    margin-bottom: 10px;
}

.stars span {
    color: rgba(0, 0, 0, .5);
    font-size: 16px;
}

.testimonials-rating p {
    font-size: 17px;
    color: #111;
    font-weight: 600;
}

/* MARQUEE */

.testimonial-marquee {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

/* FADE EFFECT */

.testimonial-marquee::before,
.testimonial-marquee::after {
    content: "";

    position: absolute;
    top: 0;

    width: 220px;
    height: 100%;

    z-index: 10;
}

.testimonial-marquee::before {
    left: 0;

    background:
        linear-gradient(to right,
            #f4f4f1 0%,
            rgba(244, 244, 241, 0) 100%);
}

.testimonial-marquee::after {
    right: 0;

    background:
        linear-gradient(to left,
            #f4f4f1 0%,
            rgba(244, 244, 241, 0) 100%);
}

/* TRACK */

.testimonial-track {
    display: flex;
    gap: 28px;
    width: max-content;
}

/* CARD */

.testimonial-card {
    width: 560px;
    min-height: 320px;

    background: #ececea;

    border-radius: 28px;

    padding: 20px;

    flex-shrink: 0;

    position: relative;

    transition: .5s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

/* QUOTE */

.quote-icon {
    font-size: 92px;
    line-height: 1;
    color: #111;
    font-weight: 700;
}

/* TITLE */

.testimonial-title {
    font-size: 18px;
    line-height: 1.15;
    font-weight: 700;

    color: #111;

    margin-bottom: 24px;

    letter-spacing: -1px;

    text-transform: uppercase;
}

/* TEXT */

.testimonial-text {
    font-size: 16px;
    line-height: 1.2;

    color: rgba(0, 0, 0, .48);

    margin-bottom: 36px;
}

/* USER */

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-user img {
    width: 42px;
    height: 42px;

    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user span {
    font-size: 18px;
    color: #111;
    font-weight: 600;
}

/* ANIMATION */

.left-track {
    animation: marqueeLeft 45s linear infinite;
}

.right-track {
    animation: marqueeRight 45s linear infinite;
}

@keyframes marqueeLeft {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

@keyframes marqueeRight {

    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }

}

/* RESPONSIVE */

@media(max-width: 768px) {

    .testimonials-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        justify-content: center;
        align-items: center;

    }

    .testimonials-heading {
        flex-direction: column;
        align-items: center;
    }

    .testimonials-heading h2 {
        font-size: 36px;
        text-align: center;
    }

    .testimonials-rating {
        min-width: 240px;
        text-align: center;
    }


    .testimonial-card {
        width: 90vw;
        padding: 30px;
    }

    .testimonial-title {
        font-size: 24px;
    }

    .testimonial-text {
        font-size: 17px;
    }


    .testimonial-marquee::before,
    .testimonial-marquee::after {
        content: "";

        position: absolute;
        top: 0;

        width: 20px;
        height: 100%;

        z-index: 10;
    }


}


/* ========================= */
/* FAQ SECTION */
/* ========================= */

.faq-section {
    background: #0f1209;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-top {
    text-align: center;
    margin-bottom: 80px;
}

.faq-top span {
    color: #b9630c;
    letter-spacing: 3px;
    font-size: 18px;
    font-weight: 600;
}

.faq-top h2 {
    font-size: 72px;
    margin: 20px 0;
    letter-spacing: -4px;
}

.faq-top p {
    max-width: 700px;
    margin: auto;
    opacity: .7;
    line-height: 1.8;
}

.faq-wrapper {
    max-width: 1000px;
    margin: auto;
}

.faq-item {

    margin-bottom: 20px;

    background:
        rgba(255, 255, 255, .03);

    backdrop-filter: blur(20px);

    border-radius: 24px;

    border: 1px solid #f48d253a;

    overflow: hidden;

    transition: .5s;
}

.faq-item:hover {

    transform: translateY(-5px);

    border-color:
        #b9630c;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, .4);

}

.faq-question {

    padding: 10px 15px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer;
}

.faq-question h3 {

    font-size: 20px;
    font-weight: 600;
}

.faq-icon {

    min-width: 40px;
    height: 40px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        #b9620c25;

    transition: .5s;
}

.faq-answer {

    max-height: 0;

    overflow: hidden;

    padding: 0 35px;

    line-height: 1.9;

    opacity: .75;

    transition:
        all .6s ease;
}

.faq-item.active .faq-answer {

    max-height: 200px;

    padding:
        0 35px 35px;
}

.faq-item.active .faq-icon {

    transform: rotate(45deg);

    background: #b9630c;
    color: black;
}


/* responsive */

@media(max-width:768px) {

    .faq-top h2 {
        font-size: 42px;
    }

    .faq-question h3 {
        font-size: 18px;
    }

}



/* ====================== */
/* MODERN FOOTER */
/* ====================== */

.footer {
    background: linear-gradient(135deg,
            #16120d 0%,
            #24170d 50%,
            #b9630c 100%);

    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;

    border-top: 1px solid rgba(255, 255, 255, .08);
}

/* glow */

.footer::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    background:
        radial-gradient(rgba(199, 255, 158, .15),
            transparent 70%);

    top: -250px;
    right: -200px;

    filter: blur(60px);

}

/* TOP */

.footer-top {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1.3fr;

    gap: 60px;

    padding-bottom: 70px;

    border-bottom:
        1px solid rgba(255, 255, 255, .08);

}

/* BRAND */

.footer-brand .logofooter {
    height: 200px;

}

.footer-brand p {

    opacity: .65;

    line-height: 1.8;

    max-width: 350px;

    margin-bottom: 30px;

}

/* SOCIAL */

.social-icons {

    display: flex;
    gap: 15px;

}

.social-icons a {

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: white;

    text-decoration: none;

    background:
        rgba(255, 255, 255, .05);

    border:
        1px solid rgba(255, 255, 255, .08);

    transition: .4s;

}

.social-icons a:hover {

    transform:
        translateY(-6px);

    background: #f58413;

    color: black;

}

/* LINKS */

.footer-links h3 {

    margin-bottom: 25px;

    font-size: 20px;

}

.footer-links a {

    display: block;

    margin-bottom: 14px;

    text-decoration: none;

    color: rgba(255, 255, 255, .6);

    transition: .4s;

}

.footer-links a:hover {

    color: #e87d13;

    padding-left: 8px;

}

/* NEWSLETTER */

.newsletter-box {

    margin-top: 20px;

    display: flex;

    background:
        rgba(255, 255, 255, .04);

    border-radius: 18px;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, .08);

}

.newsletter-box input {

    width: 100%;


    background: #fff;

    border: none;

    outline: none;

    padding: 18px;

    color: white;

    font-size: 15px;

}

.newsletter-box button {

    width: 65px;

    border: none;

    cursor: pointer;

    background: #b9630c;

    font-size: 18px;

    transition: .4s;

}

.newsletter-box button:hover {

    background: white;

}

/* BOTTOM */

.footer-bottom {

    padding-top: 35px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.footer-bottom p {

    opacity: .55;

}

.payment-icons {

    display: flex;

    gap: 20px;

    font-size: 34px;

    opacity: .75;

}

/* RESPONSIVE */

@media(max-width:992px) {

    .footer-top {

        grid-template-columns:
            1fr 1fr;

    }

}

@media(max-width:768px) {

    .footer-top {

        grid-template-columns:
            1fr;

    }

    .footer-bottom {

        flex-direction: column;
        gap: 25px;

        text-align: center;

    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-brand p {
        text-align: center;
    }

}