/*
Theme Name: Sve za dom WP
Theme URI: https://svezadom.store/
Author: Sve za dom
Description: WordPress storefront migrated from the Sve za dom Shopify design.
Version: 1.0.1
Text Domain: svezadom-wp
*/

:root {
    --szd-text: #242424;
    --szd-muted: #686868;
    --szd-line: #e8e5df;
    --szd-surface: #ffffff;
    --szd-soft: #f7f4ef;
    --szd-green: #3d6f55;
    --szd-green-dark: #214935;
    --szd-gold: #d6a43d;
    --szd-red: #c94c3f;
    --szd-shadow: 0 18px 48px rgba(32, 32, 32, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--szd-text);
    background: var(--szd-surface);
    font-family: "Figtree", Arial, sans-serif;
    font-size: 16px;
    letter-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.support-bar {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 8px 16px;
    color: #ffffff;
    background: var(--szd-green-dark);
    font-size: 13px;
}

.support-bar a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.header-main {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto minmax(180px, 420px) 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 72px;
    padding: 14px clamp(18px, 4vw, 56px);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--szd-line);
    backdrop-filter: blur(12px);
}

.brand img {
    width: 138px;
    height: auto;
}

.site-search input {
    width: 100%;
    height: 42px;
    border: 1px solid var(--szd-line);
    border-radius: 6px;
    padding: 0 14px;
    background: #f8f8f8;
}

.main-nav {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    color: var(--szd-muted);
    font-size: 15px;
}

.main-nav a:hover {
    color: var(--szd-green-dark);
}

.icon-button {
    position: relative;
    width: 42px;
    height: 42px;
    border: 1px solid var(--szd-line);
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
}

.cart-icon,
.cart-icon::before,
.cart-icon::after {
    position: absolute;
    display: block;
    content: "";
}

.cart-icon {
    top: 13px;
    left: 11px;
    width: 18px;
    height: 15px;
    border: 2px solid var(--szd-text);
    border-top: 0;
    border-radius: 0 0 4px 4px;
}

.cart-icon::before {
    top: -7px;
    left: 3px;
    width: 10px;
    height: 8px;
    border: 2px solid var(--szd-text);
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
}

.cart-count {
    position: absolute;
    right: -5px;
    top: -5px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 20px;
    color: #ffffff;
    background: var(--szd-red);
    font-size: 12px;
    line-height: 20px;
}

.hero {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background: var(--szd-soft);
}

.hero picture,
.hero picture img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 118px clamp(20px, 5vw, 64px);
}

.hero__content h1 {
    max-width: 520px;
    margin: 0 0 14px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1;
    letter-spacing: 0;
}

.hero__content p {
    max-width: 360px;
    margin: 0;
    color: #545454;
    font-size: 20px;
    line-height: 1.45;
}

.ticker {
    overflow: hidden;
    background: var(--szd-green);
    color: #ffffff;
}

.ticker__track {
    display: flex;
    width: max-content;
    gap: 44px;
    padding: 14px 0;
    animation: ticker 26s linear infinite;
}

.ticker__track span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-weight: 600;
}

.ticker__track span::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--szd-gold);
    content: "";
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.notice {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    color: #ffffff;
    background: var(--szd-green);
}

.section {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0;
}

.section__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.section__header h2,
.archive-hero h1 {
    margin: 0;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: 0;
}

.section__header a {
    color: var(--szd-green-dark);
    font-weight: 700;
}

.archive-hero {
    padding: 54px 20px 32px;
    text-align: center;
    background: var(--szd-soft);
}

.archive-hero p {
    margin: 12px auto 0;
    max-width: 540px;
    color: var(--szd-muted);
}

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

.product-card {
    min-width: 0;
}

.product-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    background: #f4f1ec;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.product-card:hover .product-card__media img {
    transform: scale(1.035);
}

.product-card__badge {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    min-width: 44px;
    border-radius: 999px;
    padding: 5px 10px;
    color: #ffffff;
    background: var(--szd-red);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.product-card__body {
    padding-top: 12px;
    text-align: center;
}

.product-card__body h3 {
    min-height: 42px;
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0;
}

.product-card__price,
.product-summary__price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 12px;
}

.product-card__price span,
.product-summary__price strong {
    font-weight: 700;
}

.product-card__price s,
.product-summary__price s {
    color: #8f8f8f;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid var(--szd-green-dark);
    border-radius: 6px;
    padding: 0 18px;
    color: var(--szd-green-dark);
    background: #ffffff;
    font-weight: 700;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button--cart {
    width: 100%;
}

.button--primary,
.button--cart:hover {
    color: #ffffff;
    background: var(--szd-green-dark);
}

.button:disabled {
    border-color: #d4d4d4;
    color: #8a8a8a;
    background: #eeeeee;
    cursor: not-allowed;
}

.product-page {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
    gap: clamp(28px, 5vw, 64px);
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 46px 0;
}

.product-gallery__main {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--szd-soft);
}

.product-gallery__main img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.product-gallery__thumbs button {
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 0;
    overflow: hidden;
    background: var(--szd-soft);
    cursor: pointer;
}

.product-gallery__thumbs button.is-active {
    border-color: var(--szd-green-dark);
}

.product-gallery__thumbs img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--szd-green);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

.product-summary h1 {
    margin: 0 0 14px;
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: 0;
}

.product-summary__price {
    justify-content: flex-start;
    margin-bottom: 18px;
    font-size: 22px;
}

.product-summary__copy {
    color: var(--szd-muted);
    line-height: 1.65;
}

.variant-picker {
    display: grid;
    gap: 8px;
    margin: 22px 0 16px;
    font-weight: 700;
}

.variant-picker select {
    height: 46px;
    border: 1px solid var(--szd-line);
    border-radius: 6px;
    padding: 0 12px;
    background: #ffffff;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 22px 0;
}

.service-list {
    display: grid;
    gap: 10px;
    margin: 22px 0;
    color: var(--szd-green-dark);
    font-weight: 700;
}

.service-list span {
    padding: 12px 14px;
    border: 1px solid var(--szd-line);
    border-radius: 6px;
    background: var(--szd-soft);
}

.single-order {
    margin-top: 24px;
    padding: 22px;
    border: 1px solid var(--szd-line);
    border-radius: 8px;
}

.single-order h2 {
    margin: 0 0 16px;
    font-size: 20px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: -4px 0 14px;
    color: var(--szd-muted);
    font-size: 14px;
    font-weight: 700;
}

.product-rating__stars {
    color: #f0aa2a;
    font-size: 15px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.product-mobile-trust {
    display: none;
}

.product-detail-story,
.product-detail-accordions,
.product-reviews {
    width: 100%;
}

.product-detail-story {
    padding: 8px 0;
}

.product-detail-story__inner,
.product-reviews__inner {
    width: min(640px, calc(100% - 32px));
    margin: 0 auto;
}

.product-detail-block {
    margin-top: var(--block-mt, 0);
    margin-bottom: var(--block-mb, 0);
}

.detail-block--heading {
    margin-right: auto;
    margin-left: auto;
    color: #1f1f1f;
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.08;
    text-align: center;
    letter-spacing: 0;
}

.detail-block--richtext {
    color: #4c4c4c;
    font-size: 18px;
    line-height: 1.65;
    text-align: center;
}

.detail-block--richtext p {
    margin: 0 0 1em;
}

.detail-block--richtext p:last-child {
    margin-bottom: 0;
}

.detail-block--image,
.detail-block--video {
    display: flex;
    justify-content: center;
}

.detail-block--image.is-align-left,
.detail-block--video.is-align-left {
    justify-content: flex-start;
}

.detail-block--image.is-align-right,
.detail-block--video.is-align-right {
    justify-content: flex-end;
}

.product-detail-media,
.product-detail-video {
    width: var(--media-width, 100%);
    max-width: 100%;
    border-radius: var(--media-radius, 8px);
}

.product-detail-video {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #111111;
}

.product-detail-accordions {
    padding: 20px 0 36px;
}

.detail-accordion {
    border-top: 1px solid var(--szd-line);
}

.detail-accordion:last-child {
    border-bottom: 1px solid var(--szd-line);
}

.detail-accordion summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 58px;
    cursor: pointer;
    list-style: none;
    color: #222222;
    font-weight: 700;
}

.detail-accordion summary::-webkit-details-marker {
    display: none;
}

.detail-accordion__icon {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
}

.detail-accordion__icon::before,
.detail-accordion__icon::after {
    position: absolute;
    top: 8px;
    left: 2px;
    width: 14px;
    height: 2px;
    background: var(--szd-green-dark);
    content: "";
}

.detail-accordion__icon::after {
    transform: rotate(90deg);
    transition: opacity 0.18s ease;
}

.detail-accordion[open] .detail-accordion__icon::after {
    opacity: 0;
}

.detail-accordion__content {
    padding: 0 0 18px;
    color: #565656;
    line-height: 1.65;
}

.detail-accordion__content p {
    margin: 0 0 0.85em;
}

.detail-accordion__content p:last-child {
    margin-bottom: 0;
}

.product-reviews {
    padding: 30px 0 58px;
    background: #faf8f3;
}

.product-reviews__inner h2 {
    margin: 0 0 18px;
    color: #202020;
    font-size: 30px;
    line-height: 1.15;
    text-align: center;
    letter-spacing: 0;
}

.product-review-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.product-review-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--szd-line);
    border-radius: 8px;
    background: #ffffff;
}

.product-review-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--szd-soft);
}

.product-review-card__body {
    display: grid;
    gap: 8px;
    padding: 13px;
}

.product-review-card__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}

.product-review-card__meta strong {
    min-width: 0;
    overflow-wrap: anywhere;
}

.product-review-card__meta span {
    flex: 0 0 auto;
    color: var(--szd-muted);
    font-size: 12px;
}

.product-review-card p {
    margin: 0;
    color: #4d4d4d;
    font-size: 14px;
    line-height: 1.45;
}

.product-review-card__reactions {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--szd-muted);
    font-size: 12px;
}

.product-review-card__reactions::before {
    content: "\2661";
}

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

.order-form label {
    display: grid;
    gap: 6px;
    color: var(--szd-muted);
    font-size: 14px;
    font-weight: 700;
}

.order-form input,
.order-form textarea {
    width: 100%;
    border: 1px solid var(--szd-line);
    border-radius: 6px;
    padding: 11px 12px;
    color: var(--szd-text);
    background: #ffffff;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--szd-line);
}

.trust-strip div {
    padding: 22px;
    text-align: center;
    background: var(--szd-soft);
}

.trust-strip strong {
    display: block;
    margin-bottom: 4px;
    color: var(--szd-green-dark);
}

.trust-strip span {
    color: var(--szd-muted);
}

.site-footer {
    padding: 42px clamp(20px, 5vw, 64px);
    color: #ffffff;
    background: #1f3028;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.footer-logo {
    width: 150px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-grid p,
.footer-grid a {
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid h2 {
    margin: 0 0 14px;
    font-size: 16px;
}

.footer-grid a {
    display: block;
    margin: 8px 0;
}

.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
}

.cart-drawer.is-open {
    display: block;
}

.cart-drawer__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.45);
}

.cart-drawer__panel {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    display: grid;
    grid-template-rows: auto 1fr auto;
    width: min(440px, 100%);
    height: 100%;
    padding: 22px;
    background: #ffffff;
    box-shadow: var(--szd-shadow);
}

.cart-drawer__close {
    justify-self: end;
}

.cart-drawer__close::before,
.cart-drawer__close::after {
    position: absolute;
    top: 20px;
    left: 11px;
    width: 18px;
    height: 2px;
    background: var(--szd-text);
    content: "";
}

.cart-drawer__close::before {
    transform: rotate(45deg);
}

.cart-drawer__close::after {
    transform: rotate(-45deg);
}

.cart-drawer h2 {
    margin: 0 0 18px;
}

.cart-drawer__items {
    overflow: auto;
    padding-right: 4px;
}

.cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--szd-line);
}

.cart-item img {
    width: 72px;
    height: 72px;
    border-radius: 6px;
    object-fit: cover;
    background: var(--szd-soft);
}

.cart-item h3 {
    margin: 0 0 6px;
    font-size: 14px;
}

.cart-item p {
    margin: 0;
    color: var(--szd-muted);
    font-size: 13px;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.qty-control button,
.cart-item__remove {
    width: 28px;
    height: 28px;
    border: 1px solid var(--szd-line);
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
}

.cart-item__remove {
    color: var(--szd-red);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 18px;
}

.cart-drawer__form {
    padding-top: 6px;
    border-top: 1px solid var(--szd-line);
}

.empty-state {
    padding: 24px;
    color: var(--szd-muted);
    text-align: center;
    background: var(--szd-soft);
    border-radius: 8px;
}

@media (max-width: 980px) {
    .header-main {
        grid-template-columns: auto 1fr auto;
        gap: 14px;
    }

    .site-search {
        grid-column: 1 / -1;
        order: 4;
    }

    .main-nav {
        display: none;
    }

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

    .product-page {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    body {
        font-size: 15px;
    }

    .support-bar {
        justify-content: flex-start;
        overflow-x: auto;
        gap: 16px;
        padding: 8px 14px;
        white-space: nowrap;
        font-size: 12px;
        scrollbar-width: none;
    }

    .support-bar::-webkit-scrollbar {
        display: none;
    }

    .header-main {
        grid-template-columns: 1fr auto;
        min-height: 64px;
        gap: 10px 12px;
        padding: 10px 14px 12px;
    }

    .brand img {
        width: 128px;
    }

    .site-search {
        width: 100%;
    }

    .site-search input {
        height: 44px;
        border-radius: 8px;
        font-size: 16px;
    }

    .icon-button {
        width: 44px;
        height: 44px;
    }

    .hero {
        min-height: 395px;
    }

    .hero::after {
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.22) 64%, rgba(255, 255, 255, 0));
        content: "";
    }

    .hero__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 395px;
        padding: 38px 18px;
    }

    .hero__content h1 {
        max-width: 280px;
        font-size: 36px;
        line-height: 0.98;
    }

    .hero__content p {
        max-width: 240px;
        font-size: 16px;
    }

    .ticker__track {
        gap: 28px;
        padding: 12px 0;
        font-size: 14px;
    }

    .section {
        width: min(100% - 24px, 1240px);
        padding: 30px 0;
    }

    .section__header {
        align-items: center;
        margin-bottom: 16px;
    }

    .section__header h2,
    .archive-hero h1 {
        font-size: 23px;
    }

    .archive-hero {
        padding: 34px 16px 24px;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 12px;
    }

    .product-card__media {
        border-radius: 6px;
    }

    .product-card__body h3 {
        min-height: 55px;
        font-size: 14px;
        line-height: 1.28;
    }

    .product-card__price {
        flex-wrap: wrap;
        gap: 4px 7px;
        min-height: 38px;
        margin-bottom: 9px;
        font-size: 14px;
    }

    .button {
        min-height: 42px;
        padding: 0 12px;
        border-radius: 7px;
        font-size: 14px;
    }

    .product-actions,
    .trust-strip,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-page {
        width: 100%;
        gap: 20px;
        padding: 0 0 30px;
    }

    .product-gallery__main {
        border-radius: 0;
    }

    .product-gallery__thumbs {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
        padding: 0 12px;
    }

    .product-summary {
        padding: 0 16px;
    }

    .product-summary h1 {
        font-size: 29px;
    }

    .product-summary__price {
        font-size: 20px;
    }

    .product-rating {
        flex-wrap: wrap;
        margin-bottom: 12px;
    }

    .product-mobile-trust {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        padding: 0 16px 4px;
    }

    .product-mobile-trust div {
        display: grid;
        justify-items: center;
        gap: 5px;
        min-width: 0;
        min-height: 62px;
        padding: 9px 5px;
        border: 1px solid var(--szd-line);
        border-radius: 7px;
        background: var(--szd-soft);
        color: var(--szd-green-dark);
        text-align: center;
    }

    .product-mobile-trust span {
        display: inline-grid;
        place-items: center;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: #ffffff;
        font-size: 13px;
    }

    .product-mobile-trust strong {
        max-width: 100%;
        overflow-wrap: anywhere;
        font-size: 11px;
        line-height: 1.2;
    }

    .product-actions {
        position: sticky;
        bottom: 0;
        z-index: 15;
        grid-template-columns: 1fr 1fr;
        margin: 18px -16px;
        padding: 10px 16px;
        background: rgba(255, 255, 255, 0.97);
        border-top: 1px solid var(--szd-line);
        box-shadow: 0 -12px 30px rgba(20, 20, 20, 0.08);
        backdrop-filter: blur(10px);
    }

    .service-list span,
    .single-order {
        border-radius: 7px;
    }

    .single-order {
        padding: 18px;
    }

    .order-form {
        gap: 11px;
    }

    .order-form input,
    .order-form textarea,
    .variant-picker select {
        min-height: 46px;
        font-size: 16px;
    }

    .trust-strip div {
        padding: 18px 16px;
    }

    .product-detail-story {
        padding: 4px 0;
    }

    .product-detail-story__inner,
    .product-reviews__inner {
        width: 100%;
        padding: 0 16px;
    }

    .detail-block--heading {
        font-size: 28px;
        line-height: 1.08;
    }

    .detail-block--richtext {
        font-size: 16px;
        line-height: 1.6;
    }

    .product-detail-accordions {
        padding: 14px 0 28px;
    }

    .detail-accordion summary {
        min-height: 56px;
    }

    .product-reviews {
        padding: 26px 0 46px;
    }

    .product-reviews__inner {
        padding: 0 12px;
    }

    .product-reviews__inner h2 {
        margin-bottom: 15px;
        font-size: 24px;
    }

    .product-review-grid {
        gap: 10px;
    }

    .product-review-card__body {
        padding: 10px;
    }

    .product-review-card__meta {
        display: grid;
        gap: 2px;
    }

    .site-footer {
        padding: 34px 20px;
    }

    .cart-drawer__panel {
        width: 100%;
        padding: 18px 16px;
    }

    .cart-item {
        grid-template-columns: 68px 1fr auto;
        gap: 10px;
    }

    .cart-item img {
        width: 68px;
        height: 68px;
    }
}

@media (max-width: 380px) {
    .brand img {
        width: 112px;
    }

    .hero__content h1 {
        font-size: 32px;
    }

    .product-grid {
        gap: 20px 10px;
    }

    .product-card__body h3,
    .button {
        font-size: 13px;
    }

    .product-actions {
        gap: 8px;
    }

    .product-review-grid,
    .product-mobile-trust {
        grid-template-columns: 1fr;
    }
}
