:root {
    --color-primary: #e65c26;
    --color-text-main: #1c1c1c;
    --color-white: #ffffff;
    --color-text-body: #404040;
    --color-header-secondary-bg: #394149;
    --color-box-bg: #282725;
    --heading1-font-size: clamp(3rem, 1.932vw + 2.382rem, 4.7rem);
    --heading2-font-size: clamp(2.4rem, 1.563vw + 2.063rem, 3.9rem);
    --heading3-font-size: clamp(2rem, 1.25vw + 1.75rem, 3.3rem);
    --heading4-font-size: clamp(2rem, 1.042vw + 1.542rem, 2.7rem);
    --heading5-font-size: clamp(1.6rem, 0.833vw + 1.333rem, 1.9rem);
    --heading6-font-size: clamp(1.4rem, 0.694vw + 1.194rem, 1.6rem);
    --body-font-size: clamp(1.5rem, 0.833vw + 1.333rem, 1.6rem);
}

html {
    font-size: 62.5%;
}
@font-face {
    font-family: "Segoe UI", sans-serif;
    src: url("segoeuithis.ttf") format("truetype");
    src: url("segoeuithibd.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI";
}

html,
body {
    width: 100%;
    height: 100%;
}

.main-section {
    width: 100%;
}
.main-container {
    width: 100%;
    /* max-width: 1398px; */
    margin: 0 auto;
}
h1 {
    font-size: var(--heading1-font-size);
}
h2 {
    font-size: var(--heading2-font-size);
}
h3 {
    font-size: var(--heading3-font-size);
}
h4 {
    font-size: var(--heading4-font-size);
}
h5 {
    font-size: var(--heading5-font-size);
}
h6 {
    font-size: var(--heading6-font-size);
}
p,
li,
a,
button,
span {
    font-size: var(--body-font-size);
}

.top-header {
    padding: 16px 25px 0 25px;
}

.top-header__content-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    border-radius: 12px;
    background-color: var(--color-box-bg);
    color: var(--color-white);
}

.top-header__content-wrap p {
    text-align: center;
    padding: 0 12px;
}

.hero-main {
    padding-top: 16px;
    position: relative;
    margin-left: 25px;
    margin-right: 25px;
}

.hero-main__content-img__wrap {
    padding-bottom: 53%;
    height: 100%;
    width: 100%;
    position: relative;
}

.hero-main__content-img__wrap img {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
}
.hero-main__container {
    position: relative;
}

/* Your original CSS with modifications */

.main-header__container {
    width: 100%;
    max-width: 1173px;
    margin: 0 auto;
    margin-top: 16px;
    margin-bottom: 16px;
    padding: 16px 38px;
    border-radius: 12px;
}

.main-header__grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
}

.main-header__grid .main-header__logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-header__nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-header__nav .main-header__nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.main-header__nav .main-header__nav-list li {
    list-style: none;
}

.main-header__nav .main-header__nav-list li a {
    text-decoration: none;
    color: var(--color-text-main);
    line-height: 100%;
}

.main-header__nav .main-header__nav-list li a:hover {
    color: var(--color-primary);
}

.main-header__search-and__cart {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.4rem;
}

/* CSS-Only Hamburger Menu */
.hamburger-toggle {
    display: none;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--color-text-main, #333);
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

/* Hamburger Animation */
.hamburger-toggle:checked + .hamburger-menu span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-toggle:checked + .hamburger-menu span:nth-child(2) {
    opacity: 0;
}

.hamburger-toggle:checked + .hamburger-menu span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    transition: left 0.3s ease;
}

.hamburger-toggle:checked ~ .main-header .mobile-nav-overlay,
.hamburger-toggle:checked ~ .mobile-nav-overlay {
    left: 0;
}

/* Mobile Side Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100vh;
    background-color: var(--color-white, white);
    z-index: 9999;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

.hamburger-toggle:checked ~ .main-header .mobile-nav,
.hamburger-toggle:checked ~ .mobile-nav {
    left: 0;
}

/* Mobile Nav Header with Close Button */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 10px;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 24px;
    font-weight: bold;
    color: var(--color-text-main, #333);
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.3s ease;
}

.mobile-nav-close:hover {
    color: var(--color-primary, #007bff);
}

.mobile-nav .main-header__nav-list {
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
}

.mobile-nav .main-header__nav-list li {
    width: 100%;
}

.mobile-nav .main-header__nav-list li a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
    font-size: 16px;
    color: #000;
    text-decoration: none;
}

.mobile-nav .main-header__nav-list li a:hover {
    background-color: #f8f9fa;
}

/* Tablet Responsive */
@media screen and (max-width: 768px) {
    .main-header__container {
        padding: 12px 24px;
    }

    .main-header__grid {
        grid-template-columns: auto 1fr auto auto;
        gap: 12px;
    }

    .main-header__nav {
        display: none;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        order: -1;
    }

    .main-header__search-and__cart {
        gap: 1.8rem;
    }
}

/* Mobile Responsive */
@media screen and (max-width: 480px) {
    .main-header {
        margin-top: 8px;
    }

    .main-header__container {
        padding: 8px 16px;
        margin-bottom: 8px;
        border-radius: 8px;
    }

    .main-header__grid {
        gap: 8px;
    }

    .main-header__search-and__cart {
        gap: 1.2rem;
    }

    .mobile-nav {
        width: 60%;
        left: -60%;
    }
}

/* Extra Small Mobile */
@media screen and (max-width: 360px) {
    .main-header__container {
        padding: 6px 12px;
    }

    .mobile-nav {
        width: 70%;
        left: -70%;
    }
}

.hero-request__quote-main {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}
.hero-request__quote-container {
    max-width: 1173px;
    margin: 0 auto;
    padding-bottom: 73px;
}
.hero-request__quote-content__wrap {
    background-color: var(--color-white);
    max-width: 657px;
    padding: 40px 20px;
    border-radius: 8px;
}
.hero-request__quote-content__wrap h1 {
    line-height: 100%;
    font-weight: 700;
    padding-bottom: 16px;
}

.hero-request__quote-content__wrap p {
    line-height: 100%;
    padding-bottom: 32px;
}
.hero-request__quote-content__wrap .cta-button {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 12px 20px;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize;
}
.gate-section {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}
.gate-container {
    width: 100%;
    max-width: 1173px;
    margin: 0 auto;
}
.featured-collections {
    padding-top: 116px;
    padding-bottom: 30px;
}

.featured-collections {
    position: relative;
}
.featured-collections__container {
    position: relative;
}
.featured-collection__img-wrap {
    padding-bottom: 37%;
    height: 100%;
    width: 100%;
    position: relative;
}
.featured-collection__img-wrap img {
    height: 100%;
    width: 100%;
    position: absolute;
}
.featured-collections__heading {
    padding-bottom: 40px;
}

.featured-collections__grid-item {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}
.featured-collection__img-wrap {
    border-radius: 8px;
    overflow: hidden;
}
.featured-collections__img-content__wrap img {
    border-radius: 8px;
    object-fit: cover;
}

.featured-collections__img-content__wrap {
    position: relative;
}
.featured-collection__content {
    position: absolute;
    bottom: 0;
    padding: 24px 42px;
    background-color: var(--color-white);
    min-width: 60%;
}
.featured-collection__content h2 {
    font-weight: 700;
    line-height: 100%;
    padding-bottom: 8px;
    font-size: 2rem;
    color: var(--color-text-body);
}

.featured-collection__content a {
    border: none;
    padding: 4px 0;
    text-decoration: none;
    color: var(--color-text-body);
}
.featured-collections__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px 20px;
    position: relative;
}
.featured-collections__grid-item {
    position: relative;
}
.featured-collections__folding-gate__img-wrap {
    padding-bottom: 75%;
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 12px;
}
.featured-collections__folding-gate__img-wrap img {
    height: 100%;
    width: 100%;
    position: absolute;
    object-fit: cover;
    border-radius: 12px;
}
.about-section {
    padding-top: 60px;
    padding-left: 10px;
    padding-right: 10px;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
}

.about-grid-item-img-wrap {
    padding-bottom: 73%;
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 12px;
}
.about-grid-item-img-wrap img {
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 12px;
}

.about-grid-item {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background-color: #f7f5f4;
    padding: 32px 15px;
    border-radius: 12px;
}

.explore-product__section {
    padding-top: 116px;
    padding-left: 10px;
    padding-right: 10px;
}

.explore-product__explore-heading__and-viwall {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 48px;
}

.explore-product__explore-heading__and-viwall .view-all-link {
    color: #000;
}

.explore-product__product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 10px;
}

.explore-product__product-img__wrap {
    padding-bottom: 100%;
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 12px;
    background-color: lightslategrey;
}
.explore-product__product-img__wrap img {
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 8px;
}

.explore-product__product-content h5 {
    max-width: 100% !important;
    font-size: 16px;
    font-weight: 500;
    padding-top: 16px !important;
}

.swiper-button-next,
.swiper-button-prev {
    position: relative !important;
}

.swiper-button-prev {
    padding-right: 20px !important;
}

.explore-product__product-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.explore-product__product-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.explore-product__product-content .price {
    font-weight: 700;
}

.explore-product__products-arrow {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
    padding-top: 32px;
}

.testimonial-section {
    padding-top: 40px;
}

.testimonial-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
}

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

.testimonial-content__author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.testimonial-author__detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.testimonial-content {
    padding: 20px;
    border: 1px solid #e4e4e4;
    border-radius: 12px;

    img {
        width: 80px;
        height: auto;
    }
}
.testimonial-content p {
    padding-bottom: 24px;
}

.testimonial-author__detail h5 {
    font-weight: 400;
    line-height: 100%;
}

.testimonia-slide__arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
}
.testimonial-silde__arrow-line {
    width: 153px;
    height: 2px;
    background-color: #e4e4e4;
}

.testimonial-silde__arrow-line div {
    height: 2px;
    background-color: var(--color-header-secondary-bg);
    width: 32px;
}

.social-media-section {
    padding-top: 92px;
    padding-bottom: 21px;
}

.social-media__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.social-media__grid-item {
    font-weight: 400;
    line-height: 100%;
}

.social-media__grid-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 18px;
    background-color: #f7f5f4;
    border-radius: 12px;
}

.footer-section {
    background-color: #f7f5f4;
    padding-top: 73px;
    padding-bottom: 30px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.footer-grid__item1 .footer-grid__item-main__links {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.footer-grid__item-main__links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.footer-grid__item-main__links-list a {
    text-decoration: none;
    color: var(--color-text-body);
}

.footer-grid__item-main__links h5 {
    font-weight: 600;
}
.footer-grid__item3 .footer-grid__item-contact__info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
}

.footer-grid__item-contact__info h5 {
    font-weight: 500;
}

.footer-news__letter {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-news__letter-input {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-news__letter-input-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 10px;
}

.footer-news__letter-input-wrap input {
    font-size: 14px;
    border: none;
    outline: none;
    background-color: #f7f5f4;
}
.footer-contact__content-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

.footer-news__letter h5 {
    font-weight: 500;
}
.copyright-section {
    border-top: 1px solid #e4e4e4;
    padding-top: 24px;
    padding-bottom: 24px;
    background-color: #f7f5f4;
}
@media (max-width: 768px) {
    .hero-request__quote-container {
        padding-bottom: 20px;
    }
    .hero-main__content-img__wrap {
        padding-bottom: 73%;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .explore-product__product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .hero-main__content-img__wrap {
        padding-bottom: 105%;
    }
    .featured-collections__grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .featured-collection__img-wrap {
        padding-bottom: 75%;
    }

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

    .social-media__grid {
        grid-template-columns: repeat(1, 1fr);
    }

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

    .top-header {
        padding: 16px 10px 0 10px;
    }
    .hero-main {
        margin-left: 10px;
        margin-right: 10px;
    }

    .featured-collection__content {
        padding: 16px 20px;
    }
}
@media (max-width: 376px) {
    .hero-main__content-img__wrap {
        padding-bottom: 150%;
    }
    .explore-product__product-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

.footer__gap {
    height: 120px;
}
