@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --yellow: #e6c42f;
    --white: #fff;
    --line: rgba(255, 255, 255, .25);
    --black: #151515;
    --black-light: #1d1d1d;
    --off-white: #f8f8f8;
    --yellow-dark: #dcb900;
    --gray-dark: #333333;
    --gray: #666666;
    --gray-light: #999999;
    --border: #dddddd;
    --section-bg: #eeeeee;
    --beige: #eee4d4;
    --container: 1600px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans", sans-serif;
    color: var(--white);
}


a {
    color: inherit;
    text-decoration: none;
}

.overflow-hidden {
    overflow: hidden;
}

.img {
    width: 100%;
}

.login {
    border: 1px solid #ccc;
    padding: 11px 36px;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 20;
    height: 90px;
    border-bottom: 1px solid var(--line);
    background: rgba(45, 45, 45, .18);
    transition: background .3s ease, backdrop-filter .3s ease;
}

.site-header.scrolled {
    background: rgba(25, 25, 25, .86);
    backdrop-filter: blur(8px);
}

.header-inner {
    height: 90px;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 25px;
    font-weight: 700;
    border-right: 1px solid var(--line);
    padding-right: 19px;
}

.brand-mark {
    width: 28px;
    height: 28px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 50%;
}

.brand-mark span {
    position: absolute;
    display: block;
    width: 9px;
    height: 33px;
    background: var(--yellow);
    transform: rotate(42deg);
    border-radius: 3px;
}

.brand-mark span:first-child {
    left: 5px;
    top: -4px;
}

.brand-mark span:last-child {
    right: 5px;
    bottom: -4px;
}

.desktop-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    padding-left: 25px;
}

.desktop-nav>a,
.icon-btn {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    text-transform: uppercase;
}

.desktop-nav>a,
.icon-btn1 {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    text-transform: uppercase;
}

.desktop-nav a {
    transition: color .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--yellow);
}

.nav-dropdown {
    position: relative;
    height: 90px;
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    border: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 12px 0;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
    color: var(--yellow);
}

.arrow {
    display: inline-block;
    margin-left: 7px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    vertical-align: middle;
    transition: transform .2s ease;
}

.nav-dropdown.open .arrow,
.mobile-dropdown.open .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 67px;
    left: 50%;
    min-width: 190px;
    padding: 8px 0;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 50;
}

.nav-dropdown.open .dropdown-menu,
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    color: #222 !important;
    font-size: 16px;
    font-weight: 600;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #c4a500 !important;
}

.locations {
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, .75);
}

.pin {
    font-size: 16px;
    margin-left: 7px;
    position: relative;
}

.pin::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    left: 3.5px;
    top: 3.5px;
}

.icon-btn {
    position: relative;
    height: 90px;
    width: 58px;
    display: grid;
    place-items: center;
    border: 0;
    border-left: 1px solid var(--line);
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.icon-btn svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.icon-btn1 {
    position: relative;
    height: 90px;
    width: 30px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.icon-btn1 svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.bag {
    width: 55px;
    border-left: 1px solid #bebebeba;
}

.cart-count {
    position: absolute;
    top: 29px;
    right: 11px;
    min-width: 15px;
    height: 15px;
    padding: 0 3px;
    display: grid;
    place-items: center;
    background: var(--yellow);
    color: #222;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
}


.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    background: #222;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.03);
    transition:
        opacity 0.8s ease,
        transform 1.2s ease,
        visibility 0.8s ease;

    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-slide:nth-child(1) {
    background-image: url("../uploads/hero.jpg");
}

.hero-slide:nth-child(2) {
    background-image: url("../uploads/hero2.jpg");
}

.hero-slide:nth-child(3) {
    background-image: url("../uploads/hero3.jpg");
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.35) 45%,
            rgba(0, 0, 0, 0.05) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
}

.eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-content h1 {
    margin: 0 0 25px;
    font-size: clamp(48px, 6vw, 86px);
    line-height: 0.98;
    font-weight: 500;
    letter-spacing: -2px;
}

.hero-content p {
    margin: 0 0 35px;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 15px 25px;

    background: #fff;
    color: #111;

    text-decoration: none;
    font-size: 14px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.btn-primary span {
    font-size: 22px;
    line-height: 1;
}

.btn-primary:hover {
    background: #111;
    color: #fff;
}

.hero-arrow {
    position: absolute;
    z-index: 5;

    top: 50%;
    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.15);
    color: #fff;

    font-size: 32px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    transition: all 0.3s ease;
}

.hero-arrow:hover {
    background: #fff;
    color: #111;
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

.hero-dots {
    position: absolute;
    z-index: 5;

    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-dot {
    width: 35px;
    height: 3px;

    padding: 0;
    border: 0;

    background: rgba(255, 255, 255, 0.45);

    cursor: pointer;
    transition: all 0.4s ease;
}

.hero-dot.active {
    width: 60px;
    background: #fff;
}

@media (max-width: 767px) {

    .hero-slider {
        height: 650px;
    }

    .hero-content {
        padding: 50px 25px;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 52px;
        line-height: 1;
        letter-spacing: -1px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .desktop-break {
        display: none;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 26px;
    }

    .hero-prev {
        left: 15px;
    }

    .hero-next {
        right: 15px;
    }

    .hero-dots {
        bottom: 25px;
    }

    .hero-dot {
        width: 25px;
    }

    .hero-dot.active {
        width: 45px;
    }
}

.btn {
    min-width: 150px;
    height: 56px;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: all .25s ease;
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary:hover {
    background: var(--yellow);
    color: #111;
}

.btn-primary span {
    font-size: 26px;
    line-height: 0;
    margin-left: 8px;
    transform: translateY(-1px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .03);
}

.btn-outline:hover {
    background: #fff;
    color: #111;
}

.menu-toggle,
.mobile-menu {
    display: none;
}


.icon-main {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 24px 0;
    background: #000;
    overflow: hidden;
}

.icon-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../uploads/dot-overlay.png) repeat;
    opacity: 0.11;
    z-index: 0;
}

.icon-flex {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1600px;
}

.icon-box {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.icon-box h2 {
    font-size: 18px;
    line-height: 140%;
    margin: 9px 0;
    font-weight: 600;
    color: #fff;
}

.icon-box .fa-regular,
.icon-box .fa-solid {
    font-size: 31px;
    color: #e6c42f;
}

.icon-box p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 29px;
}


.icon-box.show {
    opacity: 1;
    transform: translateY(0);
}

.icon-box:nth-child(1) {
    transition-delay: 0.1s;
}

.icon-box:nth-child(2) {
    transition-delay: 0.2s;
}

.icon-box:nth-child(3) {
    transition-delay: 0.3s;
}

.icon-box:nth-child(4) {
    transition-delay: 0.4s;
}

.icon-box:nth-child(5) {
    transition-delay: 0.5s;
}

.category {
    background: #fff;
    max-width: 1600px;
    margin: 0 auto;
    padding: 30px 0;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.category-header h6 {
    display: inline-block;
    padding: 4px 8px 5px;
    background: var(--yellow);
    color: #171717;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 5px;
    font-weight: 600;
    margin-bottom: 17px;
    text-transform: uppercase;
}

.category-header h2 {
    font-size: 40px;
    line-height: .99;
    letter-spacing: -2.5px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
}

.category-header p {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 14px;
    color: #000;
}

.category-header h6,
.category-header h2,
.category-header p {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.category.active .category-header h6 {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.1s;
}

.category.active .category-header h2 {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.25s;
}

.category.active .category-header p {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

.category-box {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.category-flex {
    padding: 20px 0 0;
    display: flex;
    justify-content: space-between;
    gap: 40px;

}

.category-box .img {
    display: block;
    width: 100%;
    height: auto;
}

.category-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 35%, rgba(0, 0, 0, 0.78) 100%);
    z-index: 1;
}

.category-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 40px 20px 25px;
    text-align: center;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0));
    z-index: 9;
}

.category-content h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 6px;
}

.category-content p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.category-box {
    opacity: 0;
    transform: translateY(70px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.category.active .category-box {
    opacity: 1;
    transform: translateY(0);
}

.category.active .category-box:nth-child(1) {
    transition-delay: 0.15s;
}

.category.active .category-box:nth-child(2) {
    transition-delay: 0.3s;
}

.category.active .category-box:nth-child(3) {
    transition-delay: 0.45s;
}

.rodari-products-section {
    background: #f7f7f7;
    margin-top: -10px;
}


.rodari-products-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 30px 0;
}

.rodari-products-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom:20px;
}

.rodari-products-header h2 {
    font-size: 40px;
    line-height: .99;
    letter-spacing: -2.5px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
    margin: 0;
}

.rodari-products-header h6 {
    display: inline-block;
    padding: 4px 8px 5px;
    background: var(--yellow);
    color: #171717;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 5px;
    font-weight: 600;
    margin-bottom: 17px;
    text-transform: uppercase;
}

.rodari-products-header p {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 14px;
    color: #000;
}

.rodari-products-header h6,
.rodari-products-header h2,
.rodari-products-header p {
    transform: translateX(-60px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.rodari-products-container.active .rodari-products-header h6 {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.1s;
}

.rodari-products-container.active .rodari-products-header h2 {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.25s;
}

.rodari-products-container.active .rodari-products-header p {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

.rodari-products-grid {
    display: flex;
    justify-content: left;
    gap: 31px;

    flex-wrap: wrap;
}

.rodari-product-card {
    width: 18%;
    overflow: hidden;
    background: #fff;
 

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    padding: 27px 0;
}

.rodari-products-container.active .rodari-product-card {
    opacity: 1;
    transform: translateY(0);
}

.rodari-products-container.active .rodari-product-card:nth-child(1) {
    transition-delay: 0.15s;
}

.rodari-products-container.active .rodari-product-card:nth-child(2) {
    transition-delay: 0.30s;
}

.rodari-products-container.active .rodari-product-card:nth-child(3) {
    transition-delay: 0.45s;
}

.rodari-products-container.active .rodari-product-card:nth-child(4) {
    transition-delay: 0.60s;
}

.rodari-products-container.active .rodari-product-card:nth-child(5) {
    transition-delay: 0.75s;
}

.rodari-product-image {
    display: block;
    width: 100%;
    height: auto;
}

.rodari-product-content {
    width: 100%;
    padding: 40px 20px 25px;
    text-align: center;
}

.rodari-product-content h3 {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.rodari-model-number {
    margin-top: 8px;
}

.rodari-model-number h4 {
    font-size: 16px;
    line-height: 140%;
    color: #000;
    font-weight: 400;
    margin: 0;
}

.rodari-product-price {
    margin-top: 10px;
}

.rodari-new-price {
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.rodari-product-button {
    margin-top: 18px;
}

.rodari-product-button a {
    display: inline-block;
    padding: 12px 25px;

    background: #000;
    color: #fff;

    text-decoration: none;
    font-size: 14px;
    font-weight: 600;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.rodari-product-button a:hover {
    background: #333;
    transform: translateY(-2px);
}

.rodari-products-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.popular-products-section {
    background: #f7f7f7;
    margin-top: -10px;
    overflow: hidden;
}

.popular-products-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 30px 40px 50px;
}

.popular-products-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.popular-products-header h6 {
    display: inline-block;
    padding: 4px 8px 5px;
    background: var(--yellow);
    color: #171717;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 5px;
    font-weight: 600;
    margin: 0 0 17px;
    text-transform: uppercase;
}

.popular-products-header h2 {
    font-size: 40px;
    line-height: .99;
    letter-spacing: -2.5px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
    margin: 0;
}

.popular-products-header p {
    font-size: 16px;
    line-height: 1.75;
    margin: 14px 0 0;
    color: #000;
    max-width: 750px;
}

.popular-products-header h6,
.popular-products-header h2,
.popular-products-header p {
    opacity: 0;
    transform: translateX(-60px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.popular-products-section.active .popular-products-header h6 {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.1s;
}

.popular-products-section.active .popular-products-header h2 {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.25s;
}

.popular-products-section.active .popular-products-header p {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

.popular-products-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
}

.popular-products-viewport {
    width: 100%;
    overflow: hidden;
}

.popular-products-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.popular-product-card {
    flex: 0 0 calc((100% - 75px) / 4);
    min-width: 0;
    overflow: hidden;
    background: #fff;

    opacity: 0;
    transform: translateY(70px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    padding: 27px 0;
}

.popular-products-section.active .popular-product-card {
    opacity: 1;
    transform: translateY(0);
}

.popular-products-section.active .popular-product-card:nth-child(1) {
    transition-delay: 0.15s;
}

.popular-products-section.active .popular-product-card:nth-child(2) {
    transition-delay: 0.3s;
}

.popular-products-section.active .popular-product-card:nth-child(3) {
    transition-delay: 0.45s;
}

.popular-products-section.active .popular-product-card:nth-child(4) {
    transition-delay: 0.6s;
}

.popular-products-section.active .popular-product-card:nth-child(5) {
    transition-delay: 0.75s;
}

.popular-products-section.active .popular-product-card:nth-child(6) {
    transition-delay: 0.9s;
}

.popular-product-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.popular-product-content {
    width: 100%;
    padding: 30px 20px 25px;
    text-align: center;
}

.popular-product-content h3 {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.popular-product-model {
    margin-top: 8px;
}

.popular-product-model h4 {
    font-size: 16px;
    line-height: 140%;
    color: #000;
    font-weight: 400;
    margin: 0;
}

.popular-product-price {
    margin-top: 12px;
}

.popular-product-price span {
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.popular-product-button {
    margin-top: 18px;
}

.popular-product-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: fit-content;
    min-height: 45px;

    padding: 10px 20px;

    background: #000;
    color: #fff;

    text-decoration: none;
    font-size: 14px;
    font-weight: 600;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.popular-product-button a:hover {
    background: var(--yellow);
    color: #000;
}

.popular-products-arrow {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #000;
    background: #fff;
    color: #000;

    cursor: pointer;

    font-size: 22px;
    line-height: 1;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        opacity 0.3s ease;
}

.popular-products-arrow:hover {
    background: #000;
    color: #fff;
}

.popular-products-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.popular-products-dots {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;
    margin-top: 30px;
}

.popular-products-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #999;

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.popular-products-dot.active {
    width: 25px;
    border-radius: 20px;
    background: #000;
}

.product-page {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 40px;
}

.product-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(400px, 0.9fr);
    gap: 80px;
    align-items: start;
}

.product-gallery {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 20px;
    position: sticky;
    top: 30px;
}

.thumbnail-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.thumbnail {
    width: 100px;
    height: 100px;
    border: 1px solid #ddd;
    background: #f7f7f7;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 7px;
}

.thumbnail:hover {
    border-color: #111;
}

.thumbnail.active {
    border: 2px solid #111;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #fff;
}

.main-image-wrapper {
    position: relative;
    border: 1px solid #00000078;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 5px;
}

.main-product-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    display: block;
    cursor: zoom-in;
    transition: transform 0.5s ease;
}

.main-product-image:hover {
    transform: scale(1.04);
}

.image-zoom-button {
    position: absolute;
    right: 20px;
    bottom: 20px;

    width: 48px;
    height: 48px;

    border: none;
    border-radius: 50%;

    background: #fff;
    color: #111;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    cursor: pointer;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    transition: 0.3s ease;
}

.image-zoom-button:hover {
    background: #111;
    color: #fff;
}

.product-info {
    padding: 10px 0;
}

.product-title {
    font-size: 40px;
    line-height: .99;
    letter-spacing: -2.5px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
}

.product-model {
    font-size: 16px;
    line-height: 140%;
    margin-top: 14px;
    color: #000;
    margin-bottom: 14px;
}

.product-price {
    display: flex;
    justify-content: left !important;
}

.current-price {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}

.product-description {
    padding: 12px 0;
}

.product-description p {
    font-size: 16px;
    line-height: 140%;
    color: #000;
}

.purchase-row {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.quantity-selector {
    display: flex;
    width: 130px;
    height: 54px;
    border: 1px solid #ddd;
}

.quantity-selector button {
    width: 40px;
    border: none;
    background: #fff;
    cursor: pointer;
    font-size: 18px;
}

.quantity-selector input {
    width: 50px;
    border: none;
    text-align: center;
    font-size: 15px;
    outline: none;
}

.empty-cart {
    text-align: center;
    padding: 70px 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
}

.empty-cart-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #f3f1ed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #111;
}

.empty-cart h3 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 600;
}

.empty-cart p {
    margin: 0 0 25px;
    color: #777;
    font-size: 15px;
}

.empty-cart a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.empty-cart a:hover {
    background: #333;
}

.add-cart {
    flex: 1;
    height: 54px;
    border: 1px solid #111;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-cart:hover {
    background: #333;
}


.buy-now {
    width: 100%;
    height: 54px;
    margin-top: 12px;
    border: 1px solid #111;
    background: #fff;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-now:hover {
    background: #111;
    color: #fff;
}

.details-section {
    margin-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.details-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 14px;
}

.details-row span:first-child {
    color: #777;
}

.details-row span:last-child {
    font-weight: 500;
    color: #000;
}

.lightbox {
    position: fixed;
    inset: 0;

    background: rgb(0 0 0 / 64%);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-image {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;

    width: 48px;
    height: 48px;

    border: none;
    background: #fff;
    color: #111;

    border-radius: 50%;

    font-size: 25px;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 55px;
    height: 55px;

    border: none;
    background: #fff;
    color: #111;

    border-radius: 50%;

    font-size: 25px;
    cursor: pointer;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}




.about {
    display: flex;
    gap: 33px;
    align-items: center;
    padding-right: 97px;
    background: #f7f7f7;
}

.about h6 {
    display: inline-block;
    padding: 4px 8px 5px;
    background: var(--yellow);
    color: #171717;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 5px;
    font-weight: 600;
    margin-bottom: 17px;
    text-transform: uppercase;
}

.about h2 {
    font-size: 40px;
    line-height: .99;
    letter-spacing: -2.5px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
}

.about p {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 14px;
    color: #000;
}

.about-left-side {
    margin-bottom: -5px;
    width: 50%;

    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.9s ease;
}

.about-right-side {
    width: 50%;

    opacity: 0;
    transform: translateX(100px);
    transition: all 0.9s ease 0.15s;
}

.about.show .about-left-side {
    opacity: 1;
    transform: translateX(0);
}

.about.show .about-right-side {
    opacity: 1;
    transform: translateX(0);
}

.story {
    display: flex;
    gap: 33px;
    align-items: center;
    padding-right: 97px;
    overflow: hidden;
}

.story h6 {
    display: inline-block;
    padding: 4px 8px 5px;
    background: var(--yellow);
    color: #171717;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 5px;
    font-weight: 600;
    margin-bottom: 17px;
    text-transform: uppercase;
}

.story h2 {
    font-size: 40px;
    line-height: .99;
    letter-spacing: -2.5px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
}

.story p {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 14px;
    color: #000;
}

.story-image {
    width: 50%;
    margin-bottom: -5px;

    opacity: 0;
    transform: translateX(-100px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

.story-content {
    width: 50%;
    opacity: 0;
    transform: translateX(100px);
    transition:
        opacity 0.9s ease 0.15s,
        transform 0.9s ease 0.15s;
}

.story.show .story-image {
    opacity: 1;
    transform: translateX(0);
}

.story.show .story-content {
    opacity: 1;
    transform: translateX(0);
}

.story-image img {
    width: 100%;
    display: block;
    height: 71vh;
    object-fit: cover;
}

.story-content .btn {
    margin-top: 25px;
}


.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.new-price {
    font-size: 20px;
    font-weight: 700;
    color: #171717;
}

.product-btn {
    min-width: 150px;
    height: 41px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: all .25s ease;
    background: #000;
    color: #fff;
    margin-top: 3%;
}

.footer {
    background: #171717;
    color: #fff;
    padding-top: 60px;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px 50px;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-box h3 {
    font-size: 20px;
    margin-bottom: 22px;
    color: #fff;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--yellow);
}

.footer-logo img {
    width: 90%;
}

.footer-about p {
    max-width: 350px;
    color: #bdbdbd;
    line-height: 1.8;
    font-size: 16px;
}

.footer-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-box ul li {
    margin-bottom: 13px;
}

.footer-box ul li a {
    color: #bdbdbd;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
    text-transform: uppercase;
}

.footer-box ul li a:hover {
    color: var(--yellow);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    color: #bdbdbd;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--yellow);
    font-size: 16px;
    margin-top: 3px;
    min-width: 16px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.social-icons a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #444;
    border-radius: 50%;

    color: #fff;
    text-decoration: none;

    transition: 0.3s ease;
}

.social-icons a:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #171717;
}

.footer-bottom {
    border-top: 1px solid #333;

    max-width: 1600px;
    margin: 0 auto;
    padding: 22px 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #999;
    font-size: 16px;
}

.footer-bottom-links {
    display: flex;
    gap: 7px;
    margin: 0;
    color: #999;
    font-size: 16px;
}

.footer-bottom-links a {
    color: #999;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--yellow);
}

.contact {
    background: var(--white);
    padding: 100px 0 0;
    color: var(--black);
}

.contact-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px 100px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details h6 {
    display: inline-block;
    width: fit-content;
    margin: 0 0 15px;
    padding: 5px 10px;

    background: var(--yellow);
    color: var(--black);

    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.contact-details h2 {
    margin-top: 12px;
    color: var(--black);
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: capitalize;
}

.contact-details>p {
    max-width: 570px;
    margin: 0 0 45px;

    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--yellow);
    color: var(--black);

    font-size: 20px;
}

.contact-item h4 {
    margin: 0 0 5px;

    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

.contact-item p {
    margin: 0;

    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.contact-form {
    padding: 45px;
    background: #f7f7f7;
}

.contact-form h3 {
    margin: 0 0 30px;

    color: var(--black);
    font-size: 28px;
    font-weight: 500;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 9px;

    color: var(--black);
    font-size: 16px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 16px;

    border: 1px solid #ddd;
    border-radius: 0;

    background: var(--white);
    color: var(--black);

    font-family: inherit;
    font-size: 14px;

    outline: none;
    transition: border-color .3s ease;
}

.form-group input {
    height: 52px;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--black);
}

.contact-submit {
    width: 100%;
    min-height: 55px;

    border: 0;
    background: var(--black);
    color: var(--white);

    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    cursor: pointer;
    transition: background .3s ease;
}

.contact-submit:hover {
    background: var(--yellow);
    color: var(--black);
}

.contact-map {
    width: 100%;
    height: 500px;
}

.contact-map iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
    filter: grayscale(100%);
}


.cart {
    background: #fff;
    max-width: 1600px;
    margin: 0 auto;
    padding: 30px 0;
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 30px;
}

.cart-left-side {
    background: #f7f7f7;
    color: #000;
    padding: 20px;
}

.cart-left-side h2 {
    font-size: 25px;
    line-height: .99;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
}

.cart-table-wrapper {
    width: 100%;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    overflow: hidden;
    margin: 2% 0;
}


.cart-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.cart-table thead {
    background: #fff;
}

.cart-table th {
    padding: 13px 18px;
    text-align: left;
    font-size: 16px;

    font-weight: 500;
    color: #333;
    border-bottom: 1px solid #e5e5e5;
}

.cart-table th:nth-child(1) {
    width: 45%;
}

.cart-table th:nth-child(2) {
    width: 13%;
}

.cart-table th:nth-child(3) {
    width: 20%;
}

.cart-table th:nth-child(4) {
    width: 14%;
}

.cart-table th:nth-child(5) {
    width: 8%;
}


.cart-table tbody tr {
    border-bottom: 1px solid #e5e5e5;
}

.cart-table td {
    padding: 10px 18px;
    vertical-align: middle;
    font-size: 16px;
    color: #111;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-product-image {
    width: 108px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 2px;
    border: 1px solid #cccccc63;
}

.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.cart-product-info {
    min-width: 0;
}

.cart-product-info h4 {
    margin: 0 0 4px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    color: #111;
}

.cart-product-info p {
    margin: 0 0 5px;
    font-size: 16px;
    color: #777;
}

.cart-product-info span {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    color: #087c28;
    background: #eef9f0;
    padding: 3px 5px;
}

.cart-price,
.cart-total {
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.quantity-box {
    display: inline-flex;
    align-items: center;
    height: 32px;
    border: 1px solid #ddd;
    background: #fff;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: 0;
    background: #fff;
    font-size: 16px;
    line-height: 30px;
    color: #222;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-left: 8%;
}

.qty-btn:hover {
    background: #f5f5f5;
}

.quantity-box input {
    width: 40px;
    height: 30px;
    border: 0;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    background: #fff;
    text-align: center;
    font-size: 16px;
    color: #111;
    outline: none;
}


.remove-product {
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    color: #777;
    font-size: 19px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease;
}

.remove-product:hover {
    color: #111;
}


.cart-bottom {
    min-height: 68px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #fff;
}

.continue-shopping {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 6px;
    transition: all 0.3s ease-in-out;
}

.continue-shopping span {
    font-size: 25px;
    font-weight: 300;
    line-height: 1;
}

.continue-shopping:hover {
    background: #edcc00;
    padding: 6px;
}


.clear-cart {
    height: 38px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid #d9d9d9;
    background: #fff;
    color: #222;
    font-size: 16px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.clear-cart span {
    font-size: 14px;
}

.clear-cart:hover {
    background: #f7f7f7;
    border-color: #bbb;
}

.cart-right-side {
    background: #f7f7f7;
    color: #000;
    padding: 20px;
}

.cart-right-side h2 {
    font-size: 25px;
    line-height: .99;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
}

.subtotal {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
}

.subtotal h3 {
    margin: 0 0 4px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    color: #111;
}

.subtotal p {
    margin: 0 0 4px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    color: #111;
}


.shipping-note {
    display: flex;
    justify-content: space-between;
    padding: 0 0 18px 0;
    border-bottom: 1px solid #949292;
}

.shipping-note h3 {
    margin: 0 0 4px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    color: #111;
}

.shipping-note p {
    margin: 0 0 4px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    color: #111;
}


.total {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
}

.total h2 {
    font-size: 23px;
    line-height: .99;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
}

.total p {
    margin: 0 0 4px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    color: #111;
}

.checkout-btn a {
    background: #000;
    padding: 16px 10px;
    display: flex;
    justify-content: center;
    color: #fff;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.checkout-btn a:hover {
    background: #ebca00;
    color: #000;
}


@media only screen and (max-width: 1600px) {
    .rodari-products-container {
    max-width: 1400px;
}


    .header-inner,
    .hero-content,
    .icon-flex,
    .category,
    .product {
        max-width: 1400px;
    }
}

@media only screen and (max-width: 1500px) {

    .story-image img {
        width: 100%;
        height: 80vh;
    }

    .hero-slider {
        height: 83vh;
    }

    .eyebrow {
        margin-bottom: 5px;
    }

    .hero-content {
        max-width: 1200px;
    }

    .hero-content h1 {
        font-size: 46px;
    }

    .desktop-nav {
        gap: 17px;
        padding-left: 13px;
    }

    .btn {
        height: 43px;
        padding: 0 16px;
    }
}

@media only screen and (max-width: 1200px) {

    .cart {
        grid-template-columns: 60% 40%;
        gap: 20px;
        padding: 25px 15px;
    }

    .cart-left-side,
    .cart-right-side {
        padding: 18px;
    }

    .cart-table th,
    .cart-table td {
        padding: 10px 12px;
    }

    .cart-product {
        gap: 10px;
    }

    .cart-product-image {
        width: 90px;
        height: 70px;
    }

    .cart-product-info h4,
    .cart-product-info p,
    .cart-product-info span,
    .cart-price,
    .cart-total {
        font-size: 15px;
    }

    .quantity-box {
        height: 30px;
    }

    .qty-btn {
        width: 28px;
        height: 28px;
        line-height: 28px;
    }

    .quantity-box input {
        width: 35px;
        height: 28px;
    }

    .rodari-products-container {
        padding: 30px;
    }

    .rodari-product-card {
        width: 30%;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .site-header,
    .header-inner {
        height: 72px;
    }

    .header-inner {
        width: calc(100% - 36px);
        max-width: 1100px;
        margin: 0 auto;
        align-items: center;
        padding: 0 20px;
    }

    .brand {
        width: auto;
        border: 0;
        font-size: 22px;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        margin-left: auto;
        display: flex;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(255, 255, 255, .65);
        background: transparent;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: relative;
    }

    .menu-toggle span {
        position: absolute;
        width: 19px;
        height: 2px;
        background: #fff;
        transition: transform .25s ease, opacity .25s ease;
    }

    .menu-toggle span:nth-child(1) {
        transform: translateY(-7px);
    }

    .menu-toggle span:nth-child(2) {
        transform: translateY(0);
    }

    .menu-toggle span:nth-child(3) {
        transform: translateY(7px);
    }

    .menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg);
    }

    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .mobile-menu {
        display: flex;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        padding: 10px 24px 18px;
        background: rgba(20, 20, 20, .96);
        flex-direction: column;
        gap: 0;
        transform: translateY(-15px);
        opacity: 0;
        pointer-events: none;
        transition: transform .25s ease, opacity .25s ease;
    }

    .mobile-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu>a,
    .mobile-dropdown-toggle {
        width: 100%;
        padding: 14px 0;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        background: transparent;
        color: #fff;
        text-align: left;
        font: inherit;
        font-weight: 600;
        cursor: pointer;
    }

    .mobile-menu .active {
        color: var(--yellow);
    }

    .mobile-dropdown {
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .mobile-dropdown-toggle {
        border-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-dropdown-menu {
        display: none;
        padding: 0 0 7px 15px;
    }

    .mobile-dropdown.open .mobile-dropdown-menu {
        display: block;
    }

    .mobile-dropdown-menu a {
        display: block;
        padding: 10px 0;
        color: rgba(255, 255, 255, .78);
        font-size: 14px;
    }

    .hero {
        min-height: 760px;
        background-position: 62% center;
    }

    .hero-content {
        max-width: 1100px;
        width: 90%;
        margin: 0 auto;
        padding: 70px 20px 0;
    }

    h1 {
        font-size: clamp(48px, 11vw, 70px);
    }

    .hero-content p {
        font-size: 16px;
    }

    .icon-flex,
    .category,
    .product {
        max-width: 1100px;
        width: 90%;
        margin: 0 auto;
    }

    .icon-flex {
        gap: 20px;
    }

    .category,
    .product {
        padding: 30px 0;
    }

    .story {
        flex-wrap: wrap;
        padding-right: 0;
    }

    .story-image {
        width: 100%;
    }

    .story-image img {
        height: fit-content;
    }

    .story-content {
        width: 100%;
        margin: 0 3%;
    }

    .popular-products-container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .popular-product-card {
        flex: 0 0 calc((100% - 50px) / 3);
    }
}

@media only screen and (max-width: 1100px) {

    .product-wrapper {
        gap: 45px;
        grid-template-columns: 1fr 1fr;
    }

    .product-title {
        font-size: 34px;
    }

    .main-image-wrapper,
    .main-product-image {
        height: 520px;
        min-height: 520px;
    }

    .about {
        flex-wrap: wrap;
        padding-right: 0;
    }

    .about-left-side,
    .about-right-side {
        width: 100%;
    }

    .about-right-side {
        padding: 0 37px 37px;
    }

    .icon-flex {
        flex-wrap: wrap;
    }

    .icon-box {
        width: 48%;
    }

    .category-flex {
        flex-wrap: wrap;
        gap: 22px;
    }

    .category-box {
        width: 48%;
    }
}

@media only screen and (max-width: 1000px) {

    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-details h2 {
        font-size: 48px;
    }

    .cart-table-wrapper {
        overflow-x: auto;
    }

}

@media only screen and (max-width: 960px) {

    .cart {
        display: block;
        padding: 20px 12px;
        max-width: 100%;
    }

    .cart-left-side,
    .cart-right-side {
        padding: 15px;
    }

    .cart-left-side {
        margin-bottom: 20px;
    }

    .cart-left-side h2,
    .cart-right-side h2 {
        font-size: 22px;
    }

    .cart-table-wrapper {
        border: 0;
        background: transparent;
        overflow: visible;
        margin: 15px 0;
    }

    .cart-table,
    .cart-table tbody {
        display: block;
        width: 100%;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tbody tr {
        position: relative;
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "product remove"
            "price quantity"
            "total total";
        gap: 14px 10px;
        margin-bottom: 15px;
        padding: 15px;
        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 4px;
    }

    .cart-table td {
        display: flex;
        padding: 0;
        border: 0;
    }

    .cart-table td:nth-child(1) {
        grid-area: product;
    }

    .cart-table td:nth-child(2) {
        grid-area: price;
        align-self: center;
    }

    .cart-table td:nth-child(3) {
        grid-area: quantity;
        justify-self: end;
        align-self: center;
    }

    .cart-table td:nth-child(4) {
        grid-area: total;
        padding-top: 12px;
        border-top: 1px solid #e5e5e5;
    }

    .cart-table td:nth-child(5) {
        grid-area: remove;
        justify-self: end;
    }

    .cart-product {
        gap: 12px;
        align-items: flex-start;
    }

    .cart-product-image {
        width: 85px;
        height: 70px;
    }

    .cart-product-info h4 {
        font-size: 15px;
        line-height: 1.3;
        margin-bottom: 5px;
    }

    .cart-product-info p {
        font-size: 14px;
    }

    .cart-price {
        font-size: 15px;
    }

    .cart-total {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
    }

    .cart-total::before {
        content: "Item Total";
        font-size: 14px;
        font-weight: 500;
        color: #777;
    }

    .quantity-box {
        height: 32px;
    }

    .qty-btn {
        width: 30px;
        height: 30px;
    }

    .quantity-box input {
        width: 35px;
        height: 30px;
    }

    .remove-product {
        width: 28px;
        height: 28px;
        font-size: 22px;
    }

    .cart-bottom {
        min-height: auto;
        padding: 12px 0;
        gap: 10px;
    }

    .continue-shopping {
        font-size: 14px;
    }

    .continue-shopping span {
        font-size: 22px;
    }

    .clear-cart {
        height: 36px;
        padding: 0 12px;
        font-size: 14px;
    }

    .subtotal {
        padding: 15px 0;
    }

    .subtotal h3,
    .subtotal p,
    .shipping-note h3,
    .shipping-note p {
        font-size: 15px;
    }

    .shipping-note {
        padding-bottom: 15px;
    }

    .total {
        padding: 15px 0;
    }

    .total h2 {
        font-size: 21px;
    }

    .total p {
        font-size: 18px;
    }

    .checkout-btn a {
        padding: 14px 10px;
        font-size: 15px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 768px) {

    .cart {
        display: block;
        padding: 15px 10px;
    }

    .cart-left-side,
    .cart-right-side {
        padding: 15px;
        margin-bottom: 15px;
    }

    .cart-left-side h2,
    .cart-right-side h2 {
        font-size: 21px;
        margin-top: 0;
        margin-bottom: 15px;
    }

    .cart-table-wrapper {
        margin: 15px 0;
        overflow-x: auto;
        border-radius: 2px;
    }

    .cart-table {
        min-width: 100%;
    }

    .cart-table th {
        padding: 11px 10px;
        font-size: 14px;
    }

    .cart-table td {
        padding: 9px 10px;
        font-size: 14px;
    }

    .cart-product {
        gap: 9px;
    }

    .cart-product-image {
        width: 75px;
        height: 60px;
    }

    .cart-product-info h4 {
        font-size: 14px;
        line-height: 1.3;
    }

    .cart-product-info p {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .cart-product-info span {
        font-size: 12px;
        padding: 3px 4px;
    }

    .cart-price,
    .cart-total {
        font-size: 14px;
    }

    .quantity-box {
        height: 28px;
    }

    .qty-btn {
        width: 27px;
        height: 27px;
        line-height: 27px;
        font-size: 14px;
    }

    .quantity-box input {
        width: 32px;
        height: 26px;
        font-size: 14px;
    }

    .remove-product {
        width: 27px;
        height: 27px;
        font-size: 17px;
    }

    .cart-bottom {
        min-height: auto;
        padding: 10px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .continue-shopping {
        font-size: 14px;
    }

    .continue-shopping span {
        font-size: 21px;
    }

    .clear-cart {
        height: 35px;
        padding: 0 12px;
        font-size: 14px;
    }

    .subtotal,
    .shipping-note,
    .total {
        padding: 14px 0;
    }

    .subtotal h3,
    .subtotal p,
    .shipping-note h3,
    .shipping-note p {
        font-size: 14px;
    }

    .total h2 {
        font-size: 20px;
    }

    .total p {
        font-size: 18px;
    }

    .checkout-btn a {
        padding: 14px 10px;
        font-size: 15px;
    }

    .product-page {
        padding: 35px 20px;
    }

    .product-wrapper {
        display: block;
    }

    .product-gallery {
        position: static;
        display: flex;
        flex-direction: column-reverse;
        gap: 15px;
    }

    .thumbnail-list {
        flex-direction: row;
        overflow-x: auto;
    }

    .thumbnail {
        min-width: 75px;
        width: 75px;
        height: 75px;
    }

    .main-image-wrapper,
    .main-product-image {
        height: 420px;
        min-height: 420px;
    }

    .product-info {
        margin-top: 40px;
    }

    .product-title {
        font-size: 30px;
    }

    .rodari-products-container {
        padding: 25px 15px;
    }

    .rodari-products-header h2 {
        font-size: 30px;
        letter-spacing: -1.5px;
        text-align: center;
    }

    .rodari-products-grid {
        gap: 15px;
        justify-content: space-between;
    }

    .rodari-product-card {
        width: calc(50% - 7.5px);
    }

    .rodari-product-content {
        padding: 20px 10px;
    }

    .rodari-product-content h3 {
        font-size: 16px;
    }

    .rodari-model-number h4 {
        font-size: 16px;
    }

    .rodari-new-price {
        font-size: 16px;
    }

    .rodari-product-button a {
        padding: 10px 15px;
        font-size: 16px;
    }

    .sort {
        width: 100%;
    }

    .story {
        flex-direction: row;
        padding-right: 0;
        padding-left: 0;
        gap: 30px;
    }

    .story-image,
    .story-content {
        width: 100%;
    }

    .story-image {
        transform: translateY(50px);
    }

    .story-content {
        transform: translateY(50px);
    }

    .story.show .story-image,
    .story.show .story-content {
        transform: translateY(0);
    }

    .story h2 {
        font-size: 32px;
        letter-spacing: -1.5px;
    }

    .story p {
        font-size: 16px;
    }

    .popular-products-container {
        padding: 25px 20px 40px;
    }

    .popular-products-header h6 {
        font-size: 16px;
        letter-spacing: 3px;
        margin-bottom: 14px;
    }

    .popular-products-header h2 {
        font-size: 32px;
        letter-spacing: -1.5px;
    }

    .popular-products-header p {
        font-size: 14px;
        line-height: 1.6;
    }

    .popular-products-carousel {
        gap: 10px;
        margin-top: 30px;
    }

    .popular-product-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .popular-products-arrow {
        flex: 0 0 35px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .popular-product-content {
        padding: 20px 12px;
    }

    .popular-product-content h3 {
        font-size: 16px;
    }

    .popular-product-model h4 {
        font-size: 16px;
    }

    .popular-product-price span {
        font-size: 16px;
    }

    .popular-product-button a {
        min-height: 40px;
        font-size: 16px;
        padding: 8px 12px;
    }
}

@media only screen and (max-width: 767px) {

    .popular-products-container {
        padding: 25px 20px 40px;
    }

    .popular-products-header h6 {
        font-size: 16px;
        letter-spacing: 3px;
        margin-bottom: 14px;
    }

    .popular-products-header h2 {
        font-size: 32px;
        letter-spacing: -1.5px;
    }

    .popular-products-header p {
        font-size: 14px;
        line-height: 1.6;
    }

    .popular-products-carousel {
        gap: 10px;
        margin-top: 30px;
    }

    .popular-product-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .popular-products-arrow {
        flex: 0 0 35px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .popular-product-content {
        padding: 20px 12px;
    }

    .popular-product-content h3 {
        font-size: 16px;
    }

    .popular-product-model h4 {
        font-size: 16px;
    }

    .popular-product-price span {
        font-size: 16px;
    }

    .popular-product-button a {
        min-height: 40px;
        font-size: 16px;
        padding: 8px 12px;
    }
}

@media only screen and (max-width: 600px) {



    .cart {
        padding: 10px 8px;
    }

    .cart-left-side,
    .cart-right-side {
        padding: 12px;
    }

    .cart-left-side h2,
    .cart-right-side h2 {
        font-size: 19px;
    }

    .cart-table {
        min-width: 100%;
    }

    .cart-product-image {
        width: 65px;
        height: 55px;
    }

    .cart-product-info h4 {
        font-size: 13px;
    }

    .cart-product-info p {
        font-size: 12px;
    }

    .cart-product-info span {
        font-size: 11px;
    }

    .cart-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .continue-shopping,
    .clear-cart {
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }

    .subtotal h3,
    .subtotal p,
    .shipping-note h3,
    .shipping-note p {
        font-size: 13px;
    }

    .total h2 {
        font-size: 18px;
    }

    .total p {
        font-size: 17px;
    }

    .clear {
        font-size: 16px;
    }

    .category-box {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-wrap: wrap;
    }

    .contact {
        padding-top: 70px;
    }

    .contact-container {
        padding: 0 20px 70px;
        gap: 50px;
    }

    .contact-details h2 {
        font-size: 40px;
    }

    .contact-details>p {
        margin-bottom: 35px;
        font-size: 14px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .contact-form h3 {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-map {
        height: 350px;
    }
}

@media only screen and (max-width: 520px) {

    .header-inner {
        width: calc(100% - 36px);
        padding: 0;
    }

    .hero-content {
        width: calc(100% - 36px);
        padding: 55px 0 0;
    }

    .hero {
        background-position: 60% center;
    }

    .eyebrow {
        font-size: 8px;
        letter-spacing: 3.5px;
    }

    h1 {
        font-size: 48px;
        letter-spacing: -1.5px;
    }

    .hero-content p br {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .category,
    .icon-flex {
        width: calc(100% - 36px);
    }

    .icon-box,
    .category-box {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {

    .popular-product-card {
        flex: 0 0 calc((100% - 20px) / 1);
    }

    .product-page {
        padding: 25px 15px;
    }

    .main-image-wrapper,
    .main-product-image {
        height: 330px;
        min-height: 330px;
    }

    .product-title {
        font-size: 26px;
    }

    .current-price {
        font-size: 25px;
    }

    .purchase-row {
        flex-wrap: wrap;
    }

    .quantity-selector {
        width: 120px;
    }

    .add-cart {
        min-width: 180px;
    }

    .wishlist {
        width: 54px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        right: 15px;
    }

    .rodari-products-header h2 {
        font-size: 26px;
    }

    .rodari-product-card {
        width: 100%;
    }

    .popular-products-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .popular-product-card {
        flex: 0 0 100%;
    }

    .popular-products-arrow {
        position: absolute;
        z-index: 5;
        top: 35%;
        background: rgba(255, 255, 255, 0.95);
    }

    .popular-products-prev {
        left: 5px;
    }

    .popular-products-next {
        right: 5px;
    }

    .popular-products-track {
        gap: 15px;
    }
}

  .thankyou-section {
        min-height: 75vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 80px 20px;
        background: #f8f7f5;
    }

    .thankyou-card {
        width: 100%;
        max-width: 720px;
        background: #ffffff;
        padding: 60px 50px;
        text-align: center;
        border-radius: 20px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    }

    .thankyou-icon {
width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: #e6c42f61;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .thankyou-icon i {
        font-size: 42px;
        color: #000;
    }

    .thankyou-card h1 {
        margin: 0 0 15px;
        font-size: 42px;
        font-weight: 600;
        letter-spacing: -1px;
        color: #222;
    }

    .thankyou-card .subtitle {
        max-width: 550px;
        margin: 0 auto 35px;
        color: #666;
        font-size: 17px;
        line-height: 1.7;
    }

    .order-details {
        margin: 30px auto;
        max-width: 500px;
        padding: 22px 25px;
        background: #fafafa;
        border: 1px solid #eeeeee;
        border-radius: 12px;
    }

    .order-row {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        padding: 10px 0;
        font-size: 15px;
        border-bottom: 1px solid #eeeeee;
    }

    .order-row:last-child {
        border-bottom: 0;
    }

    .order-row span:first-child {
        color: #777;
    }

    .order-row span:last-child {
        color: #222;
        font-weight: 600;
        word-break: break-word;
    }

    .thankyou-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 35px;
        flex-wrap: wrap;
    }

    .thankyou-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 180px;
        padding: 14px 25px;
        border-radius: 6px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .thankyou-btn.primary {
        background: #000;
        color: #fff;
    }

    .thankyou-btn.primary:hover {
        background: #222;
        transform: translateY(-2px);
    }

    .thankyou-btn.secondary {
        border: 1px solid #222;
        color: #222;
        background: transparent;
    }

    .thankyou-btn.secondary:hover {
        background: #222;
        color: #fff;
    }

    .thankyou-note {
        margin-top: 30px;
        font-size: 13px;
        color: #888;
    }

    @media (max-width: 600px) {

        .thankyou-section {
            padding: 50px 15px;
        }

        .thankyou-card {
            padding: 40px 22px;
            border-radius: 15px;
        }

        .thankyou-card h1 {
            font-size: 32px;
        }

        .thankyou-card .subtitle {
            font-size: 15px;
        }

        .order-row {
            flex-direction: column;
            gap: 3px;
            text-align: left;
        }

        .thankyou-btn {
            width: 100%;
        }
    }