:root {
    color-scheme: light;
    --color-olive: #1D4ED8;
    --color-leaf: #0F172A;
    --color-cream: #F6F8FB;
    --color-card: #FFFFFF;
    --color-earth: #0EA5E9;
    --color-honey: #2563EB;
    --color-ink: #111827;
    --color-border: #DDE5F0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: var(--color-cream);
    color: var(--color-ink);
}

img {
    max-width: 100%;
    height: auto;
}

.brand-logo {
    display: block;
    width: auto;
    object-fit: contain;
}

.brand-logo--header {
    height: 44px;
}

.brand-logo--footer {
    height: 24px;
    filter: brightness(0) invert(1);
    opacity: 0.96;
}

.cart-item {
    display: grid;
    gap: 18px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background:
        linear-gradient(135deg, #ffffff 0%, #FFFFFF 100%);
    padding: 16px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.cart-item__product {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
}

.cart-item__image {
    display: block;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: #ffffff;
}

.cart-item__image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.cart-item__category {
    color: var(--color-earth);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cart-item__category:hover,
.cart-item__title a:hover {
    color: var(--color-olive);
}

.cart-item__title {
    margin-top: 6px;
    color: var(--color-ink);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.cart-item__meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    border-radius: 999px;
    background: #F6F8FB;
    padding: 6px 10px;
    color: #5B6472;
    font-size: 12px;
}

.cart-item__meta strong {
    color: var(--color-ink);
}

.cart-item__remove {
    margin-top: 12px;
}

.cart-item__remove button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #DC2626;
    font-size: 13px;
    font-weight: 800;
}

.cart-item__remove button:hover {
    color: #B91C1C;
}

.cart-item__controls {
    display: grid;
    gap: 14px;
    border-top: 1px solid var(--color-border);
    padding-top: 16px;
}

.cart-item__label {
    margin-bottom: 7px;
    color: #6B7280;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cart-item__quantity {
    display: inline-flex;
    overflow: hidden;
    border: 1px solid #C9D6E6;
    border-radius: 10px;
    background: #ffffff;
}

.cart-item__quantity button,
.cart-item__quantity input {
    height: 42px;
}

.cart-item__quantity button {
    width: 42px;
    color: #5B6472;
    font-size: 18px;
    transition: background 180ms ease, color 180ms ease;
}

.cart-item__quantity button:hover {
    background: #EEF4FF;
    color: var(--color-ink);
}

.cart-item__quantity input {
    width: 54px;
    border-left: 1px solid #C9D6E6;
    border-right: 1px solid #C9D6E6;
    text-align: center;
    outline: none;
}

.cart-item__price {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
}

.cart-item__price p {
    color: #5B6472;
    font-size: 13px;
}

.cart-item__price strong {
    color: var(--color-ink);
    font-size: 20px;
    font-weight: 900;
    white-space: nowrap;
}

.cookie-consent {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    width: min(440px, calc(100vw - 32px));
    padding: 16px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(12px);
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #F6F8FB;
    color: var(--color-olive);
    box-shadow: inset 0 0 0 1px var(--color-border);
    font-size: 22px;
}

.cookie-consent__icon::before,
.cookie-consent__icon::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: currentColor;
}

.cookie-consent__icon::before {
    right: 12px;
    top: 12px;
    width: 4px;
    height: 4px;
}

.cookie-consent__icon::after {
    left: 13px;
    bottom: 12px;
    width: 5px;
    height: 5px;
}

.cookie-consent__icon i {
    font-size: 20px;
    color: #2563EB;
}

.cookie-consent__content h2 {
    margin: 0;
    color: var(--color-ink);
    font-size: 15px;
    font-weight: 700;
}

.cookie-consent__content p {
    margin: 6px 0 0;
    color: #5B6472;
    font-size: 13px;
    line-height: 1.55;
}

.cookie-consent__actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-consent__button {
    min-height: 40px;
    border-radius: 8px;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 700;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.cookie-consent__button--ghost {
    border: 1px solid #C9D6E6;
    background: transparent;
    color: #0F172A;
}

.cookie-consent__button--ghost:hover {
    background: #EEF4FF;
}

.cookie-consent__button--primary {
    border: 1px solid var(--color-olive);
    background: var(--color-olive);
    color: #ffffff;
}

.cookie-consent__button--primary:hover {
    border-color: var(--color-honey);
    background: var(--color-honey);
}

.cart-toast[hidden] {
    display: none;
}

.cart-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 95;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    width: min(460px, calc(100vw - 32px));
    border: 1px solid rgba(232, 224, 210, 0.94);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(250, 247, 239, 0.98)),
        radial-gradient(circle at 0% 0%, rgba(217, 154, 43, 0.16), transparent 34%);
    padding: 14px;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(12px);
    animation: cart-toast-enter 220ms ease-out;
}

.cookie-consent:not([hidden]) + .cart-toast {
    bottom: 178px;
}

.cart-toast__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--color-olive);
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.18);
}

.cart-toast__title {
    color: var(--color-ink);
    font-size: 14px;
    font-weight: 800;
}

.cart-toast__text {
    margin-top: 2px;
    color: #5B6472;
    font-size: 13px;
    line-height: 1.4;
}

.cart-toast__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 9px;
    background: var(--color-leaf);
    padding: 0 13px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    transition: background 180ms ease, color 180ms ease;
}

.cart-toast__link:hover {
    background: var(--color-honey);
    color: #ffffff;
}

@keyframes cart-toast-enter {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-carousel {
    overflow: hidden;
}

.product-carousel-track {
    display: flex;
    align-items: stretch;
    gap: 20px;
    overflow-x: auto;
    padding: 2px 2px 14px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.product-carousel-track::-webkit-scrollbar {
    display: none;
}

.product-card-slide {
    display: flex;
    flex-direction: column;
    flex: 0 0 min(82vw, 300px);
    scroll-snap-align: start;
}

.product-card-title {
    min-height: 40px;
}

.product-card-description {
    min-height: 40px;
}

.cart-added-modal[hidden] {
    display: none;
}

.cart-added-modal {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.cart-added-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 28, 17, 0.62);
    backdrop-filter: blur(8px);
}

.cart-added-modal__panel {
    position: relative;
    z-index: 1;
    width: min(480px, 100%);
    overflow: hidden;
    border: 1px solid rgba(232, 224, 210, 0.92);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(250, 247, 239, 0.98)),
        radial-gradient(circle at 12% 0%, rgba(217, 154, 43, 0.12), transparent 34%);
    padding: 26px;
    box-shadow: 0 34px 90px rgba(20, 28, 17, 0.26);
}

.cart-added-modal__close {
    position: absolute;
    right: 14px;
    top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--color-leaf);
    font-size: 22px;
    box-shadow: inset 0 0 0 1px var(--color-border);
    transition: background 180ms ease, color 180ms ease;
}

.cart-added-modal__close:hover {
    background: var(--color-olive);
    color: #ffffff;
}

.cart-added-modal__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-olive), var(--color-leaf));
    color: #ffffff;
    font-size: 30px;
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.20);
}

.cart-added-modal__eyebrow {
    margin-top: 16px;
    color: var(--color-honey);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cart-added-modal__title {
    margin-top: 6px;
    padding-right: 42px;
    color: var(--color-ink);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.cart-added-modal__product {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-top: 20px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: #ffffff;
    padding: 12px;
}

.cart-added-modal__product img {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    object-fit: cover;
}

.cart-added-modal__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 16px;
    border-top: 1px solid var(--color-border);
    padding-top: 16px;
    color: #5B6472;
    font-size: 14px;
}

.cart-added-modal__total strong {
    color: var(--color-ink);
    font-size: 22px;
}

.cart-added-modal__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
}

.cart-added-modal__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    border-radius: 10px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 800;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.cart-added-modal__button:hover {
    transform: translateY(-1px);
}

.cart-added-modal__button--primary {
    background: var(--color-olive);
    color: #ffffff;
}

.cart-added-modal__button--primary:hover {
    background: var(--color-honey);
    color: #ffffff;
}

.cart-added-modal__button--ghost {
    border: 1px solid #C9D6E6;
    background: #ffffff;
    color: var(--color-leaf);
}

.cart-added-modal__button--ghost:hover {
    background: #EEF4FF;
}

.product-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(232, 224, 210, 0.86);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.92);
    color: var(--color-leaf);
    font-size: 28px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
    transform: translateY(-50%);
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.product-gallery-nav:hover {
    background: var(--color-olive);
    color: #ffffff;
    transform: translateY(-50%) scale(1.04);
}

.product-gallery-nav--prev {
    left: 14px;
}

.product-gallery-nav--next {
    right: 14px;
}

.product-gallery-is-open {
    overflow: hidden;
}

.cart-added-is-open {
    overflow: hidden;
}

.product-gallery-lightbox[hidden] {
    display: none;
}

.product-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.product-gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 28, 17, 0.84);
    cursor: zoom-out;
}

.product-gallery-lightbox__stage {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(980px, 100%);
    max-height: calc(100vh - 44px);
}

.product-gallery-lightbox__image {
    max-height: calc(100vh - 44px);
    width: auto;
    max-width: min(100%, 980px);
    border-radius: 14px;
    object-fit: contain;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.product-gallery-lightbox__close,
.product-gallery-lightbox__nav {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.94);
    color: var(--color-leaf);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.product-gallery-lightbox__close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    font-size: 24px;
}

.product-gallery-lightbox__nav {
    top: 50%;
    width: 52px;
    height: 52px;
    font-size: 34px;
    transform: translateY(-50%);
}

.product-gallery-lightbox__close:hover,
.product-gallery-lightbox__nav:hover {
    background: var(--color-honey);
    color: #ffffff;
}

.product-gallery-lightbox__nav:hover {
    transform: translateY(-50%) scale(1.04);
}

.product-gallery-lightbox__nav--prev {
    left: 14px;
}

.product-gallery-lightbox__nav--next {
    right: 14px;
}

.product-view-toggle__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 38px;
    height: 34px;
    border-radius: 7px;
    color: #5B6472;
    font-size: 13px;
    font-weight: 800;
    transition: background 180ms ease, color 180ms ease;
}

.product-view-toggle__button:hover,
.product-view-toggle__button.is-active {
    background: #1D4ED8;
    color: #ffffff;
}

.product-control-select {
    position: relative;
    min-height: 42px;
}

.product-control-select__face {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    border: 1px solid #C9D6E6;
    border-radius: 8px;
    background: #ffffff;
    padding: 0 12px;
    color: #0F172A;
    font-size: 14px;
    font-weight: 700;
    transition: background 180ms ease, border-color 180ms ease;
}

.product-control-select:hover .product-control-select__face,
.product-control-select:focus-within .product-control-select__face {
    border-color: #cdbb9f;
    background: #EEF4FF;
}

.product-control-select__native {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

.product-listing-grid {
    display: grid;
    gap: 20px;
}

.product-listing-grid--3,
.product-listing-grid--4 {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .product-listing-grid--3,
    .product-listing-grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .product-listing-grid--3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-listing-grid--4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .product-listing-grid--4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 640px) {
    .cart-item {
        grid-template-columns: minmax(0, 1fr) 230px;
        align-items: center;
        padding: 18px;
    }

    .cart-item__product {
        grid-template-columns: 118px minmax(0, 1fr);
        gap: 18px;
        align-items: center;
    }

    .cart-item__controls {
        border-top: 0;
        border-left: 1px solid var(--color-border);
        padding-left: 18px;
        padding-top: 0;
    }

    .cart-item__price {
        display: block;
        text-align: right;
    }

    .cart-item__price strong {
        display: block;
        margin-top: 6px;
    }

    .product-card-slide {
        flex-basis: calc((100% - 20px) / 2);
    }

    .cart-added-modal__actions {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .product-card-slide {
        flex-basis: calc((100% - 60px) / 4);
    }
}

@media (min-width: 1280px) {
    .product-gallery-lightbox__nav--prev {
        left: -74px;
    }

    .product-gallery-lightbox__nav--next {
        right: -74px;
    }
}

.shop-hero {
    background:
        linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.shop-hero__pattern {
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.022) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 80%);
}

.shop-hero__search {
    box-shadow: 0 20px 50px rgba(29, 78, 216, 0.12);
}

.shop-hero__search:focus-within {
    border-color: #93c5fd;
    box-shadow: 0 24px 60px rgba(37, 99, 235, 0.16);
}

.shop-hero__chip {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(201, 214, 230, 0.9);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    padding: 0 14px;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 700;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.shop-hero__chip:hover {
    border-color: #93c5fd;
    background: #eaf2ff;
    color: #0f172a;
}

.shop-hero__market {
    position: relative;
    display: grid;
    gap: 14px;
    border: 1px solid rgba(221, 229, 240, 0.92);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68)),
        radial-gradient(circle at 82% 6%, rgba(37, 99, 235, 0.11), transparent 34%);
    padding: 14px;
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(16px);
}

.shop-hero__market::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(147, 197, 253, 0.34), rgba(255, 255, 255, 0.2));
}

.shop-hero__market-top {
    display: flex;
    gap: 6px;
    padding: 3px 3px 0;
}

.shop-hero__market-top span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #cbd5e1;
}

.shop-hero__market-top span:nth-child(1) {
    background: #ef4444;
}

.shop-hero__market-top span:nth-child(2) {
    background: #f59e0b;
}

.shop-hero__market-top span:nth-child(3) {
    background: #22c55e;
}

.shop-hero__deal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-radius: 16px;
    background:
        radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.24), transparent 34%),
        linear-gradient(135deg, #0f172a, #1d4ed8);
    padding: 14px 16px;
    color: #dbeafe;
    font-size: 13px;
    font-weight: 700;
}

.shop-hero__deal strong {
    color: #ffffff;
    font-size: 20px;
    white-space: nowrap;
}

.shop-product-card {
    border: 1px solid rgba(221, 229, 240, 0.96);
    border-radius: 18px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.shop-product-card--featured {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 300px;
}

.shop-product-card__media {
    display: grid;
    place-items: center;
    min-height: 260px;
    background: #eef4ff;
    position: relative;
}

.shop-product-card__media::before,
.shop-product-card__media::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
}

.shop-product-card__media::before {
    width: 140px;
    height: 140px;
}

.shop-product-card__media::after {
    width: 90px;
    height: 90px;
    transform: translate(38px, 36px);
}

.shop-product-card__media i {
    position: relative;
    z-index: 1;
    color: #0f172a;
    font-size: clamp(116px, 17vw, 178px);
    filter: drop-shadow(0 22px 36px rgba(15, 23, 42, 0.18));
}

.shop-product-card__image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: contain;
    padding: 20px;
}

.shop-product-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
}

.shop-product-card__category {
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.shop-product-card__body h2 {
    margin-top: 9px;
    color: #111827;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.12;
}

.shop-product-card__rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 14px;
    color: #f59e0b;
    font-size: 16px;
}

.shop-product-card__rating span {
    margin-left: 6px;
    color: #5b6472;
    font-size: 13px;
    font-weight: 800;
}

.shop-product-card__footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-top: 26px;
}

.shop-product-card__old-price {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 700;
    text-decoration: line-through;
}

.shop-product-card__price {
    margin-top: 2px;
    color: #111827;
    font-size: 26px;
    font-weight: 900;
    white-space: nowrap;
}

.shop-product-card__button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 11px;
    background: #2563eb;
    padding: 0 16px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    transition: background 180ms ease;
    box-shadow: 0 14px 26px rgba(37, 99, 235, 0.22);
}

.shop-product-card__button:hover {
    background: #1d4ed8;
}

.shop-hero__side-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.shop-mini-card {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(221, 229, 240, 0.95);
    border-radius: 16px;
    background: #ffffff;
    padding: 14px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.shop-mini-card:hover {
    border-color: rgba(37, 99, 235, 0.28);
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

.shop-mini-card__icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 12px;
    background: #eef4ff;
    color: #1d4ed8;
    font-size: 28px;
}

.shop-mini-card p {
    color: #111827;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
}

.shop-mini-card strong {
    display: block;
    margin-top: 4px;
    color: #1d4ed8;
    font-size: 14px;
}

@media (max-width: 767px) {
    .shop-hero__search {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 6px;
    }

    .shop-hero__search button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .shop-product-card--featured {
        grid-template-columns: 1fr;
    }

    .shop-product-card__media {
        min-height: 210px;
    }

    .shop-product-card__footer,
    .shop-hero__deal {
        align-items: stretch;
        flex-direction: column;
    }

    .shop-hero__side-grid {
        grid-template-columns: 1fr;
    }
}
