@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');


/* =========================
   GLOBAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #ffffff;
    color: #222222;
}

a {
    text-decoration: none;
}



/* =========================
   HEADER
========================= */

.main-header {
    width: 100%;
    background: #ffffff;
    position: relative;
    z-index: 1000;
}


/* TOP HEADER */

.top-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #f1f1f1;
}

.header-container {
    width: 92%;
    max-width: 1500px;
    min-height: 100px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}



/* =========================
   LOGO
========================= */

.logo-box {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.main-logo {
    width: 145px;
    height: auto;
    object-fit: contain;
    transition: 0.3s ease;
}

.logo-box:hover .main-logo {
    transform: scale(1.03);
}



/* =========================
   SEARCH
========================= */

.search-wrapper {
    position: relative;

    flex: 1;
    max-width: 780px;

    height: 54px;

    display: flex;
    align-items: center;

    background: #f7f7f7;

    border: 1px solid #e7e7e7;

    border-radius: 12px;

    transition: all 0.3s ease;
}

.search-wrapper:focus-within {
    background: #ffffff;

    border-color: #d7b55b;

    box-shadow:
        0 0 0 3px rgba(215, 181, 91, 0.12),
        0 8px 30px rgba(0, 0, 0, 0.06);
}

.search-left-icon {
    margin-left: 20px;

    font-size: 17px;

    color: #999999;
}

.search-wrapper input {
    width: 100%;
    height: 100%;

    border: none;
    outline: none;

    background: transparent;

    padding: 0 16px;

    font-family: inherit;
    font-size: 15px;

    color: #222222;
}

.search-wrapper input::placeholder {
    color: #a5a5a5;
}

.search-btn {
    width: 44px;
    height: 44px;

    margin-right: 5px;

    border: none;

    border-radius: 9px;

    background: #d5ad48;

    color: white;

    cursor: pointer;

    transition: 0.3s;
}

.search-btn:hover {
    background: #bd9638;
    transform: translateX(2px);
}



/* =========================
   ACCOUNT
========================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.account-btn {
    min-width: 135px;
    height: 54px;

    padding: 0 18px;

    border: 1px solid #dfdfdf;

    background: white;

    border-radius: 10px;

    display: flex;
    align-items: center;

    gap: 11px;

    cursor: pointer;

    transition: all 0.3s ease;
}

.account-btn:hover {
    border-color: #d5ad48;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.07);
}

.account-icon {
    width: 34px;
    height: 34px;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #faf5e8;

    color: #bc9131;
}

.account-text {
    display: flex;
    flex-direction: column;

    text-align: left;

    line-height: 1.1;
}

.account-text small {
    font-size: 11px;
    color: #999999;
}

.account-text strong {
    font-size: 14px;

    margin-top: 4px;

    color: #222222;

    font-weight: 600;
}



/* =========================
   NAVIGATION
========================= */

.main-navigation {
    width: 100%;

    height: 68px;

    background: #171717;

    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.nav-container {
    width: 92%;
    max-width: 1500px;

    height: 100%;

    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 4px;

    list-style: none;
}

.nav-menu > li {
    position: relative;
    height: 100%;
}

.nav-link {
    height: 100%;

    padding: 0 22px;

    display: flex;
    align-items: center;

    position: relative;

    color: #c9c9c9;

    font-size: 15px;
    font-weight: 500;

    transition: 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 50%;

    width: 0;
    height: 3px;

    background: #d5ad48;

    transform: translateX(-50%);

    border-radius: 5px 5px 0 0;

    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 45%;
}

.nav-arrow {
    font-size: 9px;
    margin-left: 7px;
}



/* =========================
   DROPDOWN
========================= */

.nav-dropdown {
    width: 220px;

    position: absolute;

    left: 0;
    top: calc(100% + 12px);

    background: #ffffff;

    padding: 10px;

    border-radius: 12px;

    box-shadow:
        0 18px 45px rgba(0,0,0,0.13);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: all 0.25s ease;
}

.nav-dropdown::before {
    content: "";

    width: 100%;
    height: 20px;

    position: absolute;

    top: -18px;
    left: 0;
}

.nav-menu li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.nav-dropdown a {
    width: 100%;

    padding: 12px 14px;

    border-radius: 8px;

    display: flex;
    align-items: center;

    gap: 12px;

    color: #444444;

    font-size: 14px;

    transition: 0.25s;
}

.nav-dropdown a i {
    width: 20px;

    color: #c29a3c;
}

.nav-dropdown a:hover {
    background: #faf6eb;

    color: #aa8128;

    transform: translateX(3px);
}



/* =========================
   NAV RIGHT
========================= */

.nav-right {
    color: #dadada;

    font-size: 14px;
}

.nav-right span {
    display: flex;
    align-items: center;

    gap: 9px;
}

.nav-right i {
    color: #d5ad48;
}



/* =========================
   MOBILE BUTTON
========================= */

.mobile-menu-btn {
    width: 48px;
    height: 48px;

    display: none;

    border: none;

    background: #171717;

    color: white;

    border-radius: 10px;

    font-size: 19px;

    cursor: pointer;
}



/* =========================
   MOBILE NAV
========================= */

.mobile-navigation {
    display: none;

    width: 100%;

    background: #ffffff;

    padding: 20px;

    border-top: 1px solid #eeeeee;

    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.mobile-navigation > a,
.mobile-dropdown-btn {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 12px;

    border: none;

    border-bottom: 1px solid #eeeeee;

    background: transparent;

    color: #333333;

    font-family: inherit;
    font-size: 15px;

    text-align: left;

    cursor: pointer;
}

.mobile-navigation > a:hover,
.mobile-active {
    color: #b78d2f !important;
}

.mobile-dropdown {
    display: none;

    padding-left: 20px;

    background: #fafafa;
}

.mobile-dropdown a {
    display: block;

    padding: 12px;

    color: #666666;

    font-size: 14px;
}



/* MOBILE SEARCH */

.mobile-search {
    height: 48px;

    display: none;
    align-items: center;

    padding: 0 15px;

    margin-bottom: 12px;

    border: 1px solid #e3e3e3;

    border-radius: 9px;

    background: #f8f8f8;
}

.mobile-search i {
    color: #999999;
}

.mobile-search input {
    width: 100%;

    border: none;
    outline: none;

    background: transparent;

    padding-left: 12px;

    font-family: inherit;
}



/* =========================
   DEMO SECTION
========================= */

.demo-section {
    min-height: 500px;

    padding: 100px 5%;

    text-align: center;

    background: #f8f8f8;
}

.demo-section h1 {
    font-size: 50px;
    font-weight: 700;
}

.demo-section p {
    margin-top: 15px;
    color: #777;
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .header-container {
        gap: 25px;
    }

    .nav-link {
        padding: 0 14px;
    }

    .nav-right {
        display: none;
    }

}



@media (max-width: 850px) {

    .header-container {
        width: 92%;
        min-height: 80px;

        gap: 15px;
    }

    .main-logo {
        width: 115px;
    }

    .search-wrapper {
        display: none;
    }

    .account-btn {
        min-width: auto;
        width: 48px;

        padding: 0;

        justify-content: center;
    }

    .account-icon {
        background: transparent;
    }

    .account-text {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .main-navigation {
        display: none;
    }

    .mobile-search {
        display: flex;
    }

}



@media (max-width: 500px) {

    .header-container {
        min-height: 74px;
    }

    .main-logo {
        width: 105px;
    }

    .account-btn,
    .mobile-menu-btn {
        width: 44px;
        height: 44px;
    }

}

/* Main Part Section 1 */

/* ============================================
   FEATURED PRODUCTS
============================================ */

.featured-products-section {
    width: 100%;
    padding: 90px 0;
    background: #fafafa;
}

.products-container {
    width: 92%;
    max-width: 1500px;
    margin: auto;
}



/* ============================================
   SECTION HEADER
============================================ */

.products-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 42px;
}

.section-small-title {
    display: inline-block;

    margin-bottom: 9px;

    font-size: 13px;
    font-weight: 700;

    color: #b88b2a;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}

.products-section-header h2 {
    font-size: 36px;
    line-height: 1.2;

    font-weight: 700;

    color: #1c1c1c;

    margin-bottom: 10px;
}

.products-section-header p {
    font-size: 15px;

    color: #777;

    max-width: 600px;

    line-height: 1.7;
}



/* ============================================
   VIEW ALL BUTTON
============================================ */

.view-all-btn {
    min-width: 165px;

    height: 50px;

    padding: 0 20px;

    border: 1px solid #dddddd;

    border-radius: 10px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 12px;

    background: white;

    color: #333;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.view-all-btn i {
    color: #b88b2a;

    transition: transform 0.3s ease;
}

.view-all-btn:hover {
    border-color: #cba64f;

    box-shadow: 0 10px 30px rgba(0,0,0,0.07);

    transform: translateY(-2px);
}

.view-all-btn:hover i {
    transform: translateX(4px);
}



/* ============================================
   PRODUCT GRID
============================================ */

.product-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 24px;
}



/* ============================================
   PRODUCT CARD
============================================ */

.product-card {
    min-width: 0;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #ececec;

    border-radius: 16px;

    transition: all 0.35s ease;

    position: relative;
}

.product-card:hover {
    transform: translateY(-7px);

    border-color: #e4d5ae;

    box-shadow:
        0 20px 45px rgba(0,0,0,0.09);
}



/* ============================================
   PRODUCT IMAGE
============================================ */

.product-image-box {
    width: 100%;

    height: 280px;

    position: relative;

    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;

    background:
        linear-gradient(
            145deg,
            #fbfbfb,
            #f4f4f4
        );
}

.product-image-box img {
    width: 82%;
    height: 82%;

    object-fit: contain;

    transition: transform 0.45s ease;
}

.product-card:hover .product-image-box img {
    transform: scale(1.07);
}



/* ============================================
   BADGE
============================================ */

.product-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 4;

    padding: 7px 11px;

    border-radius: 30px;

    background: #1d1d1d;

    color: #ffffff;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.2px;
}



/* ============================================
   WISHLIST
============================================ */

.wishlist-btn {
    width: 38px;
    height: 38px;

    position: absolute;

    top: 13px;
    right: 13px;

    z-index: 4;

    border: none;

    border-radius: 50%;

    background: rgba(255,255,255,0.95);

    color: #555;

    font-size: 15px;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;

    box-shadow: 0 4px 15px rgba(0,0,0,0.07);

    transition: 0.3s ease;
}

.wishlist-btn:hover {
    color: #ffffff;

    background: #c59c3e;

    transform: scale(1.08);
}



/* ============================================
   PRODUCT ACTIONS
============================================ */

.product-actions {
    width: calc(100% - 24px);

    position: absolute;

    left: 12px;
    bottom: 12px;

    display: flex;

    gap: 8px;

    opacity: 0;

    transform: translateY(20px);

    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;

    transform: translateY(0);
}

.quick-view-btn {
    width: 44px;
    min-width: 44px;

    height: 44px;

    border: none;

    border-radius: 9px;

    background: white;

    color: #222;

    font-size: 15px;

    cursor: pointer;

    box-shadow: 0 5px 15px rgba(0,0,0,0.10);

    transition: 0.25s;
}

.quick-view-btn:hover {
    background: #181818;

    color: white;
}

.add-cart-btn {
    flex: 1;

    height: 44px;

    border: none;

    border-radius: 9px;

    background: #c39a3c;

    color: white;

    font-family: inherit;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 8px;

    transition: 0.25s;
}

.add-cart-btn:hover {
    background: #ad852b;
}



/* ============================================
   PRODUCT INFORMATION
============================================ */

.product-info {
    padding: 20px;
}

.product-category {
    display: block;

    margin-bottom: 7px;

    font-size: 11px;

    color: #a27b27;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}

.product-info h3 {
    height: 46px;

    overflow: hidden;

    margin-bottom: 10px;

    color: #252525;

    font-size: 16px;

    font-weight: 600;

    line-height: 1.45;

    transition: color 0.25s;
}

.product-card:hover .product-info h3 {
    color: #ac822a;
}



/* ============================================
   RATING
============================================ */

.product-rating {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 16px;
}

.stars {
    display: flex;

    gap: 2px;
}

.stars i {
    font-size: 12px;

    color: #f3b51b;
}

.product-rating span {
    color: #999;

    font-size: 12px;
}



/* ============================================
   PRICE
============================================ */

.product-price {
    display: flex;

    align-items: center;

    gap: 10px;
}

.current-price {
    color: #181818;

    font-size: 19px;

    font-weight: 700;
}

.old-price {
    color: #9c9c9c;

    font-size: 14px;

    text-decoration: line-through;
}



/* ============================================
   BOTTOM BUTTON
============================================ */

.products-bottom-btn {
    display: none;

    justify-content: center;

    margin-top: 35px;
}

.view-all-bottom {
    height: 50px;

    padding: 0 24px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;

    border-radius: 9px;

    background: #171717;

    color: white;

    font-size: 14px;
    font-weight: 600;
}



/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 1350px) {

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}


@media (max-width: 1050px) {

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 780px) {

    .featured-products-section {
        padding: 65px 0;
    }

    .products-section-header {
        align-items: flex-start;
    }

    .products-section-header h2 {
        font-size: 30px;
    }

    .view-all-btn {
        display: none;
    }

    .products-bottom-btn {
        display: flex;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 15px;
    }

    .product-image-box {
        height: 230px;
    }

}


@media (max-width: 520px) {

    .products-container {
        width: 94%;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 10px;
    }

    .product-image-box {
        height: 180px;
    }

    .product-info {
        padding: 14px;
    }

    .product-info h3 {
        height: 40px;

        font-size: 13px;
    }

    .product-category {
        font-size: 9px;
    }

    .product-rating span {
        display: none;
    }

    .stars i {
        font-size: 9px;
    }

    .current-price {
        font-size: 16px;
    }

    .old-price {
        font-size: 11px;
    }

    .product-badge {
        top: 8px;
        left: 8px;

        font-size: 8px;

        padding: 5px 7px;
    }

    .wishlist-btn {
        width: 31px;
        height: 31px;

        top: 7px;
        right: 7px;

        font-size: 12px;
    }

    .product-actions {
        display: none;
    }

}


/* ============================================
   VIEW MORE PRODUCTS BUTTON
============================================ */

.view-more-products-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 50px;
}

.view-more-products-btn {
    min-width: 210px;
    height: 54px;

    padding: 0 26px;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    gap: 12px;

    background: #171717;
    color: #ffffff;

    border: 1px solid #171717;
    border-radius: 10px;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 0.2px;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.10);

    transition: all 0.3s ease;
}

.view-more-products-btn i {
    font-size: 13px;

    color: #d5ad48;

    transition: transform 0.3s ease;
}

.view-more-products-btn:hover {
    background: #ffffff;
    color: #171717;

    border-color: #d5ad48;

    transform: translateY(-3px);

    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.12);
}

.view-more-products-btn:hover i {
    transform: translateX(5px);
}


/* MOBILE */

@media (max-width: 600px) {

    .view-more-products-wrapper {
        margin-top: 35px;
    }

    .view-more-products-btn {
        min-width: 190px;
        height: 50px;

        font-size: 13px;
    }

}


/* Section 2 Start */

/* ============================================
   MARKETPLACE LOGO SECTION
============================================ */

.marketplace-section {
    width: 100%;
    padding: 75px 0 80px;
    background: #ffffff;
}

.marketplace-container {
    width: 92%;
    max-width: 1500px;
    margin: auto;
}


/* ============================================
   HEADING
============================================ */

.marketplace-heading-row {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 22px;

    margin-bottom: 60px;
}

.marketplace-heading-row h2 {
    flex-shrink: 0;

    font-size: 30px;
    font-weight: 700;

    color: #222222;
}

.marketplace-heading-line {
    width: 100%;
    height: 1px;

    background: #e5e5e5;
}


/* ============================================
   LOGOS
============================================ */

.marketplace-logos {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-around;

    gap: 60px;

    padding: 20px 30px 50px;
}


/* ============================================
   LOGO LINK
============================================ */

.marketplace-logo-link {
    flex: 1;

    max-width: 220px;

    min-height: 90px;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;

    transition: all 0.3s ease;
}


/* UNDERLINE */

.marketplace-logo-link::after {
    content: "";

    position: absolute;

    bottom: -16px;
    left: 50%;

    width: 0;
    height: 2px;

    transform: translateX(-50%);

    background: #c59c3e;

    transition: width 0.3s ease;
}


/* IMAGE */

.marketplace-logo-link img {
    width: auto;

    max-width: 165px;
    max-height: 65px;

    object-fit: contain;

    transition:
        transform 0.3s ease,
        filter 0.3s ease,
        opacity 0.3s ease;
}


/* AMAZON SPECIFIC */

.marketplace-logo-link .amazon-logo {
    max-width: 155px;
}


/* HOVER */

.marketplace-logo-link:hover img {
    transform: scale(1.08);
}

.marketplace-logo-link:hover::after {
    width: 55px;
}


/* ============================================
   BOTTOM LINE
============================================ */

.marketplace-logos {
    border-bottom: 1px solid #eeeeee;
}


/* ============================================
   TABLET
============================================ */

@media (max-width: 900px) {

    .marketplace-logos {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 50px 30px;
    }

    .marketplace-logo-link {
        max-width: none;
    }

}


/* ============================================
   MOBILE
============================================ */

@media (max-width: 550px) {

    .marketplace-section {
        padding: 55px 0 60px;
    }

    .marketplace-heading-row {
        margin-bottom: 35px;
    }

    .marketplace-heading-row h2 {
        font-size: 24px;
    }

    .marketplace-logos {
        grid-template-columns: repeat(2, 1fr);

        gap: 35px 15px;

        padding: 10px 10px 35px;
    }

    .marketplace-logo-link {
        min-height: 70px;
    }

    .marketplace-logo-link img {
        max-width: 110px;
        max-height: 48px;
    }

    .marketplace-logo-link .amazon-logo {
        max-width: 105px;
    }

}


/* Footer Start */
/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    width: 100%;
    background: #171717;
    color: #ffffff;

    padding: 75px 0 0;
}

.footer-container {
    width: 92%;
    max-width: 1500px;

    margin: auto;
}


/* =====================================================
   TOP FOOTER
===================================================== */

.footer-top {
    display: grid;

    grid-template-columns: 1.5fr 0.8fr 0.9fr 1.4fr;

    gap: 60px;

    padding-bottom: 55px;
}


/* BRAND */

.footer-brand {
    max-width: 390px;
}

.footer-logo-link {
    display: inline-block;

    margin-bottom: 24px;
}

.footer-logo {
    width: 145px;
    height: auto;

    background: #ffffff;

    padding: 7px 10px;

    border-radius: 8px;

    object-fit: contain;
}

.footer-brand p {
    color: #bdbdbd;

    font-size: 14px;
    line-height: 1.8;
}


/* SOCIAL */

.footer-socials {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-top: 25px;
}

.footer-socials a {
    width: 40px;
    height: 40px;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid #353535;

    border-radius: 50%;

    color: #ffffff;

    font-size: 14px;

    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: #c59c3e;

    border-color: #c59c3e;

    color: #ffffff;

    transform: translateY(-3px);
}


/* =====================================================
   FOOTER COLUMNS
===================================================== */

.footer-column h3,
.footer-contact h3 {
    position: relative;

    margin-bottom: 25px;

    padding-bottom: 13px;

    font-size: 17px;
    font-weight: 650;

    color: #ffffff;
}

.footer-column h3::after,
.footer-contact h3::after {
    content: "";

    width: 35px;
    height: 2px;

    position: absolute;

    left: 0;
    bottom: 0;

    background: #c59c3e;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    display: inline-block;

    color: #bcbcbc;

    font-size: 14px;

    transition: all 0.25s ease;
}

.footer-column ul li a:hover {
    color: #d6af52;

    transform: translateX(4px);
}


/* =====================================================
   CONTACT / NEWSLETTER
===================================================== */

.footer-contact-text {
    margin-bottom: 20px;

    color: #bdbdbd;

    font-size: 14px;
    line-height: 1.7;
}

.footer-newsletter {
    display: flex;

    gap: 8px;

    margin-bottom: 23px;
}

.newsletter-input-box {
    height: 48px;

    flex: 1;

    display: flex;
    align-items: center;

    padding: 0 15px;

    border: 1px solid #373737;

    border-radius: 8px;

    background: #222222;

    transition: 0.3s;
}

.newsletter-input-box:focus-within {
    border-color: #c59c3e;
}

.newsletter-input-box i {
    margin-right: 9px;

    color: #8f8f8f;

    font-size: 13px;
}

.newsletter-input-box input {
    width: 100%;

    border: none;
    outline: none;

    background: transparent;

    color: #ffffff;

    font-family: inherit;

    font-size: 13px;
}

.newsletter-input-box input::placeholder {
    color: #777777;
}

.footer-newsletter button {
    height: 48px;

    padding: 0 18px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 8px;

    border: none;

    border-radius: 8px;

    background: #c59c3e;

    color: #ffffff;

    font-family: inherit;
    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background: #ae8428;

    transform: translateY(-2px);
}

.footer-newsletter button i {
    font-size: 10px;
}


/* SUPPORT */

.footer-support {
    display: flex;
    flex-direction: column;

    gap: 11px;
}

.footer-support a {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #bdbdbd;

    font-size: 13px;

    transition: color 0.25s;
}

.footer-support a i {
    width: 15px;

    color: #c59c3e;
}

.footer-support a:hover {
    color: #ffffff;
}


/* =====================================================
   TRUST STRIP
===================================================== */

.footer-trust {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #303030;
    border-bottom: 1px solid #303030;
}

.footer-trust-item {
    min-height: 105px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 22px 25px;

    position: relative;
}

.footer-trust-item:not(:last-child)::after {
    content: "";

    width: 1px;
    height: 45px;

    position: absolute;

    right: 0;
    top: 50%;

    transform: translateY(-50%);

    background: #303030;
}

.footer-trust-item > i {
    font-size: 25px;

    color: #c59c3e;
}

.footer-trust-item div {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.footer-trust-item strong {
    color: #ffffff;

    font-size: 13px;
    font-weight: 600;
}

.footer-trust-item span {
    color: #888888;

    font-size: 11px;
}


/* =====================================================
   BOTTOM FOOTER
===================================================== */

.footer-bottom {
    min-height: 75px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.footer-bottom p {
    color: #8f8f8f;

    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;

    gap: 13px;
}

.footer-bottom-links a {
    color: #8f8f8f;

    font-size: 12px;

    transition: color 0.25s;
}

.footer-bottom-links a:hover {
    color: #c59c3e;
}

.footer-bottom-links span {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: #555555;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .footer-top {
        grid-template-columns: repeat(2, 1fr);

        gap: 45px;
    }

}


@media (max-width: 800px) {

    .footer-trust {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-trust-item:nth-child(2)::after {
        display: none;
    }

    .footer-bottom {
        padding: 22px 0;

        flex-direction: column;
        justify-content: center;

        text-align: center;
    }

}


@media (max-width: 600px) {

    .site-footer {
        padding-top: 55px;
    }

    .footer-top {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-newsletter {
        flex-direction: column;
    }

    .footer-newsletter button {
        width: 100%;
    }

    .footer-trust {
        grid-template-columns: 1fr;
    }

    .footer-trust-item:not(:last-child)::after {
        width: 100%;
        height: 1px;

        top: auto;
        bottom: 0;
        left: 0;

        transform: none;
    }

    .footer-bottom-links {
        flex-wrap: wrap;

        justify-content: center;
    }

}