:root {
    --bg: #ffffff;
    --text: #111111;
    --muted: #6f6f6f;
    --line: #e9e2d7;
    --forest: #10321e;
    --forest-2: #2d573d;
    --gold: #dca233;
    --cream: #f6efe5;
    --shadow: 0 18px 40px rgba(16, 50, 30, 0.12);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --font-body: 'Manrope', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container-xl {
    max-width: 1360px;
}

.theme-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid #1f1f1f;
}

.theme-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    min-height: 72px;
}

.theme-logo {
    color: #101010;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.theme-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.theme-nav a,
.theme-header-icons a {
    color: #111;
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
}

.theme-header-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-cart-link {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #f55a5a;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
}

/* Top Bar Styles */
.theme-topbar {
    background: var(--forest);
    color: #fff;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.topbar-contact {
    display: flex;
    gap: 24px;
    align-items: center;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.topbar-item i {
    font-size: 1rem;
}

.topbar-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.topbar-social a {
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.topbar-social a:hover {
    color: var(--gold);
    transform: scale(1.15);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(12px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-12px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .topbar-content {
        justify-content: center;
        text-align: center;
    }

    .topbar-contact {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .topbar-social {
        width: 100%;
        justify-content: center;
    }

    .theme-header {
        border-bottom: 1px solid var(--line);
    }

    .theme-header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 60px;
        gap: 12px;
        padding: 0 16px;
    }

    .theme-logo {
        font-size: 1.3rem;
        flex-shrink: 0;
        order: 1;
        margin-left: 5px;
    }

    .theme-header-icons {
        order: 2;
        flex-shrink: 0;
        display: flex;
        gap: 12px;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
        flex-shrink: 0;
    }

    .theme-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: #fff;
        border-bottom: 2px solid var(--line);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .theme-nav.active {
        max-height: 500px;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .theme-nav a {
        display: flex;
        align-items: center;
        padding: 16px 20px;
        border-bottom: 1px solid var(--line);
        text-transform: none;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--text);
        position: relative;
        transition: all 0.3s ease;
        gap: 12px;
    }

    .theme-nav a i {
        font-size: 1.1rem;
        color: var(--forest);
        transition: all 0.3s ease;
        min-width: 20px;
    }

    .theme-nav a span {
        flex: 1;
    }

    .theme-nav a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--forest);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .theme-nav a:hover {
        background: var(--cream);
        color: var(--forest);
        padding-left: 24px;
    }

    .theme-nav a:hover i {
        transform: translateX(4px);
        color: var(--gold);
    }

    .theme-nav a:hover::before {
        transform: scaleY(1);
    }
}

.theme-one-page section {
    padding: 16px 0;
}

.icon-strip {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.icon-strip-item {
    display: block;
    text-align: center;
    color: inherit;
}

.icon-strip-item img {
    width: 96px;
    height: 96px;
    margin: 0 auto 10px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.icon-strip-item span {
    display: block;
    font-size: 0.84rem;
    font-weight: 700;
}

/* Responsive Product Cards */
@media (max-width: 1024px) {
    .icon-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .icon-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .icon-strip-item img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        margin: 0;
    }

    .icon-strip-item span {
        padding: 12px 0;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .icon-strip {
        grid-template-columns: 1fr;
    }

    .icon-strip-item img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
    }
}

.hero-carousel {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-slide-shell {
    position: relative;
    min-height: 620px;
}

.hero-slide-image {
    width: 100%;
    height: 620px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 28, 18, 0.68) 0%, rgba(11, 28, 18, 0.25) 45%, rgba(11, 28, 18, 0.1) 100%);
}

.hero-caption {
    position: absolute;
    inset: 0;
    z-index: 2;
    max-width: 640px;
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.hero-label {
    display: inline-flex;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-caption h1 {
    margin: 0 0 16px;
    font-size: clamp(2.3rem, 5vw, 4.6rem);
    line-height: 1.02;
    font-weight: 800;
}

.hero-caption p {
    margin: 0;
    max-width: 540px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 800;
}

.hero-btn-primary {
    background: var(--gold);
    color: #fff;
}

.hero-btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.08);
}

.hero-indicators {
    margin-bottom: 1rem;
}

.hero-indicators button {
    width: 11px !important;
    height: 11px !important;
    border-radius: 50%;
}

.hero-control {
    width: 8%;
}

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

.section-heading,
.section-title-wrap {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 28px;
}

.section-heading span,
.section-title-wrap span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--forest);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-heading h2,
.section-title-wrap h2 {
    margin: 0 0 10px;
    font-size: clamp(1.9rem, 3vw, 3.1rem);
    font-weight: 800;
    line-height: 1.15;
}

.section-heading p,
.section-title-wrap p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.offer-card-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.offer-card-image {
    width: 100%;
    height: 216px;
    object-fit: cover;
}

.offer-card-body {
    padding: 18px;
}

.offer-card-body h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    font-weight: 800;
}

.offer-card-body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.9rem;
}

.mini-product-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.second-grid {
    margin-top: 34px;
}

.mini-product-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 14px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.mini-product-thumb-wrap {
    position: relative;
}

.mini-product-thumb {
    width: 100%;
    height: 150px;
    border-radius: 14px;
    object-fit: cover;
}

/* Responsive Product Cards */
@media (max-width: 1024px) {
    .mini-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mini-product-thumb {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .mini-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .mini-product-card {
        padding: 12px;
        border-radius: 16px;
    }

    .mini-product-thumb {
        width: 100%;
        height: 100%;
        min-height: 220px;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .mini-product-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .mini-product-card {
        padding: 12px;
    }

    .mini-product-thumb {
        width: 100%;
        height: 100%;
        min-height: 280px;
    }
}

.product-tag {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(16, 50, 30, 0.82);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.mini-product-card h3 {
    margin: 14px 0 8px;
    font-size: 1rem;
    font-weight: 800;
}

.mini-product-card p {
    margin: 0 auto 10px;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.6;
}

.mini-product-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.product-card-btn {
    width: 100%;
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    background: var(--forest);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 800;
}

.compact-card .mini-product-thumb {
    height: 112px;
}

.wide-offer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.wide-offer-card {
    position: relative;
    min-height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.wide-offer-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.wide-offer-overlay {
    position: absolute;
    inset: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(90deg, rgba(13, 35, 21, 0.7) 0%, rgba(13, 35, 21, 0.18) 100%);
    color: #fff;
}

.wide-offer-overlay span {
    margin-bottom: 12px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.wide-offer-overlay h2 {
    margin: 0 0 10px;
    font-size: clamp(1.7rem, 2.7vw, 2.7rem);
    font-weight: 800;
}

.wide-offer-overlay p {
    margin: 0;
    max-width: 420px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
}

.video-card-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.tall-video-card {
    position: relative;
    min-height: 360px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.video-card-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(180deg, rgba(10, 24, 15, 0.15), rgba(10, 24, 15, 0.52));
    color: #fff;
    text-align: center;
}

.video-play {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1.6rem;
}

.video-overlay h3 {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.2;
}

.manufacturing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.manufacturing-card {
    position: relative;
    min-height: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.manufacturing-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.manufacturing-overlay {
    position: absolute;
    inset: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background: linear-gradient(180deg, rgba(9, 24, 14, 0.05), rgba(9, 24, 14, 0.7));
    color: #fff;
}

.manufacturing-overlay h3 {
    margin: 0 0 12px;
    font-size: 1.7rem;
    font-weight: 800;
}

.manufacturing-overlay a {
    width: fit-content;
    color: #fff;
    font-weight: 800;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.review-section {
    background: var(--cream);
    margin-top: 14px;
    padding: 36px 0 40px !important;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    justify-items: center;
}

.review-card {
    max-width: 290px;
    text-align: center;
}

.review-thumb {
    width: 100%;
    height: 170px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 14px;
}

.review-card strong,
.review-card span,
.review-card p {
    display: block;
}

.review-card strong {
    margin-bottom: 4px;
    font-size: 1rem;
}

.review-card span {
    margin-bottom: 8px;
    color: #666;
    font-size: 0.84rem;
}

.review-card p {
    margin: 0;
    color: #777;
    line-height: 1.7;
    font-size: 0.88rem;
}

/* Reviews Carousel Styles */
.reviews-carousel {
    position: relative;
    padding: 60px 0;
}

.reviews-carousel-inner {
    border-radius: 0;
    overflow: visible;
}

.carousel-item {
    transition: opacity 0.8s ease-in-out !important;
}

.review-carousel-item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 40px;
    min-height: auto;
}

.review-card-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    min-height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.review-card-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest), var(--gold), var(--forest));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card-wrapper:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.review-card-wrapper:hover::before {
    opacity: 1;
}

.review-image-wrap {
    margin-bottom: 28px;
    flex-shrink: 0;
    position: relative;
    animation: fadeInScale 0.6s ease-out forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.review-carousel-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--gold);
    box-shadow: 0 12px 32px rgba(220, 162, 51, 0.3), inset 0 0 0 2px #fff;
    transition: all 0.4s ease;
}

.review-card-wrapper:hover .review-carousel-image {
    transform: scale(1.1) rotateZ(5deg);
    box-shadow: 0 16px 40px rgba(220, 162, 51, 0.4), inset 0 0 0 2px #fff;
}

.review-stars {
    margin-bottom: 24px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-shrink: 0;
}

.review-stars i {
    font-size: 1.4rem;
    color: var(--gold);
    transition: all 0.3s ease;
    animation: starPulse 0.6s ease-out;
}

@keyframes starPulse {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.review-card-wrapper:hover .review-stars i {
    transform: scale(1.15);
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 28px;
    font-style: italic;
    font-weight: 500;
    flex-grow: 1;
    display: flex;
    align-items: center;
    animation: fadeInUp 0.7s ease-out 0.1s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-name {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    flex-shrink: 0;
    animation: fadeInUp 0.7s ease-out 0.2s forwards;
    opacity: 0;
}

.review-city {
    display: block;
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex-shrink: 0;
    animation: fadeInUp 0.7s ease-out 0.3s forwards;
    opacity: 0;
}

.review-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    gap: 12px;
    justify-content: center;
    display: flex;
    z-index: 5;
}

.review-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid var(--line);
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.review-indicators button:hover {
    background: var(--forest);
    border-color: var(--forest);
    transform: scale(1.2);
}

.review-indicators button.active {
    width: 12px;
    background: var(--forest);
    border-color: var(--forest);
    box-shadow: 0 0 12px rgba(16, 50, 30, 0.4);
}

.review-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: var(--forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    padding: 0;
    box-shadow: 0 8px 20px rgba(16, 50, 30, 0.3);
}

.review-control:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 12px 32px rgba(220, 162, 51, 0.4);
}

.review-control:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
    display: none;
}

.review-control::after {
    content: '';
    width: 22px;
    height: 22px;
    border: solid #fff;
    border-width: 3px 3px 0 0;
    display: inline-block;
    transition: all 0.3s ease;
}

.carousel-control-prev.review-control::after {
    transform: rotate(-135deg);
    margin-left: 6px;
}

.carousel-control-next.review-control::after {
    transform: rotate(45deg);
    margin-right: 6px;
}

.review-control:hover::after {
    border-color: currentColor;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

/* Responsive Reviews Carousel */
@media (max-width: 1024px) {
    .review-carousel-item {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 30px;
    }

    .review-card-wrapper {
        padding: 28px 20px;
        min-height: 400px;
    }

    .review-carousel-image {
        width: 110px;
        height: 110px;
    }

    .review-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .reviews-carousel {
        padding: 40px 0 60px;
    }

    .review-carousel-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .review-card-wrapper {
        padding: 32px 24px;
        min-height: auto;
        background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .review-card-wrapper:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    }

    .review-carousel-image {
        width: 130px;
        height: 130px;
        border-width: 5px;
    }

    .review-image-wrap {
        margin-bottom: 28px;
    }

    .review-stars {
        margin-bottom: 24px;
    }

    .review-stars i {
        font-size: 1.4rem;
    }

    .review-text {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 28px;
    }

    .review-name {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .review-city {
        font-size: 0.95rem;
    }

    .review-control {
        width: 48px;
        height: 48px;
    }

    .review-control::after {
        width: 22px;
        height: 22px;
        border-width: 2.5px 2.5px 0 0;
    }
}

@media (max-width: 480px) {
    .reviews-carousel {
        padding: 32px 0 70px;
    }

    .review-carousel-item {
        padding: 0 12px;
    }

    .review-card-wrapper {
        padding: 28px 20px;
        border-radius: 14px;
        min-height: auto;
    }

    .review-image-wrap {
        margin-bottom: 24px;
    }

    .review-carousel-image {
        width: 120px;
        height: 120px;
        border-width: 5px;
    }

    .review-stars {
        gap: 6px;
        margin-bottom: 20px;
    }

    .review-stars i {
        font-size: 1.2rem;
    }

    .review-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .review-name {
        font-size: 1.05rem;
        margin-bottom: 6px;
    }

    .review-city {
        font-size: 0.88rem;
    }

    .review-indicators {
        bottom: 12px;
        gap: 8px;
    }

    .review-indicators button {
        width: 10px;
        height: 10px;
    }

    .review-control {
        width: 44px;
        height: 44px;
    }

    .review-control::after {
        width: 18px;
        height: 18px;
        border-width: 2px 2px 0 0;
    }

    .carousel-control-prev.review-control {
        left: 8px;
    }

    .carousel-control-next.review-control {
        right: 8px;
    }
}

.carousel-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.carousel-box {
    text-align: center;
}

.carousel-thumb {
    width: 100%;
    height: 96px;
    border-radius: 14px;
    object-fit: cover;
    margin-bottom: 8px;
}

.carousel-box h3 {
    margin: 0;
    font-size: 0.84rem;
    font-weight: 700;
}

.theme-footer {
    background: #f3eadf;
    padding-top: 42px;
}

.footer-newsletter-wrap {
    padding-bottom: 34px;
}

.footer-newsletter {
    background: linear-gradient(135deg, #21402a, #35643f);
    color: #fff;
    border: 2px solid rgba(220, 162, 51, 0.35);
    border-radius: 30px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 36px;
    align-items: center;
    padding: 42px 48px;
}

.footer-label {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(220, 162, 51, 0.35);
    color: #ffbf4d;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-newsletter h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.25rem);
    line-height: 1.15;
    font-weight: 800;
}

.newsletter-form {
    display: grid;
    gap: 12px;
}

.newsletter-input-wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
}

.newsletter-input-wrap input {
    width: 100%;
    background: transparent;
    border: 0;
    outline: none;
    color: #fff;
    padding: 16px 18px;
    font-size: 1rem;
}

.newsletter-input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input-wrap button {
    border: 0;
    border-radius: 999px;
    background: var(--gold);
    color: #fff;
    font-weight: 800;
    padding: 0 24px;
}

.newsletter-form small {
    color: rgba(255, 255, 255, 0.78);
}

.footer-main {
    background: #0d2917;
    color: #fff;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr) 1.1fr;
    gap: 36px;
    padding: 56px 0 46px;
}

.footer-brand-block,
.footer-link-block,
.footer-contact-block {
    min-width: 0;
}

.footer-brand-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #ffbf4d;
    font-size: 2.2rem;
    font-weight: 800;
}

.footer-brand-block p {
    max-width: 360px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.8;
}

.footer-badges,
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-badges {
    margin: 20px 0 22px;
}

.footer-badges span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.86rem;
    font-weight: 700;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-link-block h3,
.footer-contact-block h3 {
    margin: 0 0 22px;
    color: #ffbf4d;
    font-size: 1.75rem;
    font-weight: 800;
}

.footer-link-block a {
    display: block;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.82);
}

.footer-contact-block div {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.82);
}

.footer-bottom-bar {
    background: #071a0f;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 18px 0;
}

.footer-bottom-inner p {
    margin: 0;
}

.payment-strip {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-strip span {
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.gujar-toast {
    background: rgba(13, 41, 23, 0.95);
    color: #fff;
    border-radius: 14px;
}

@media (max-width: 1199px) {
    .icon-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .mini-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .video-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .carousel-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

@media (max-width: 991px) {
    .theme-header-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 14px 0;
    }

    .hero-slide-shell,
    .hero-slide-image {
        min-height: 520px;
        height: 520px;
    }

    .hero-caption {
        max-width: 100%;
        padding: 48px 32px;
    }

    .offer-card-grid,
    .wide-offer-grid,
    .review-grid,
    .footer-newsletter {
        grid-template-columns: 1fr;
    }

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

    .video-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .theme-nav {
        gap: 14px;
    }

    .icon-strip {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding: 0 6px 10px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .icon-strip::-webkit-scrollbar {
        height: 6px;
    }

    .icon-strip::-webkit-scrollbar-thumb {
        background: rgba(16, 50, 30, 0.2);
        border-radius: 999px;
    }

    .icon-strip-item {
        min-width: 96px;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .mini-product-grid,
    .video-card-grid,
    .carousel-strip,
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-slide-shell,
    .hero-slide-image {
        min-height: 430px;
        height: 430px;
    }

    .hero-caption {
        padding: 28px 22px 60px;
        justify-content: end;
    }

    .hero-caption h1 {
        font-size: 2.3rem;
    }

    .hero-caption p {
        font-size: 0.94rem;
        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn {
        width: 100%;
    }

    .wide-offer-image,
    .wide-offer-card {
        min-height: 240px;
        height: 240px;
    }

    .footer-newsletter {
        padding: 28px 22px;
    }

    .footer-main-grid,
    .footer-bottom-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-link-block,
    .footer-contact-block,
    .footer-brand-block {
        padding-left: 4px;
        padding-right: 4px;
    }

    .newsletter-input-wrap {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .newsletter-input-wrap button {
        padding: 14px 18px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .theme-one-page section {
        padding: 12px 0;
    }

    .offer-card-grid,
    .mini-product-grid,
    .video-card-grid,
    .carousel-strip,
    .footer-main-grid {
        grid-template-columns: 1fr;
    }

    .theme-logo {
        font-size: 1.8rem;
    }

    .theme-nav a,
    .theme-header-icons a {
        font-size: 0.76rem;
    }

    .icon-strip-item img {
        width: 84px;
        height: 84px;
    }

    .icon-strip-item {
        min-width: 92px;
    }

    .hero-slide-shell,
    .hero-slide-image {
        min-height: 360px;
        height: 360px;
    }

    .hero-caption h1 {
        font-size: 1.9rem;
    }

    .hero-label {
        font-size: 0.7rem;
    }

    .video-card-image,
    .tall-video-card {
        height: 270px;
        min-height: 270px;
    }

    .review-grid {
        gap: 28px;
    }

    .footer-main-grid,
    .footer-bottom-inner {
        padding-left: 16px;
        padding-right: 16px;
    }
}
