/* =========================================
   GLOBAL RESET
========================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

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

a {
    text-decoration: none;
}

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

/* =========================================
   SHOP SHOWCASE SECTION
========================================= */
.shop-showcase-section {
    padding: 20px 14px 14px;
    background: #f5f9fd;
    margin-top: 84px;
}

.shop-showcase-container {
    max-width: 1280px; /* reduced from 1460px */
    margin: 0 auto;
    width: 100%;
}

/* =========================================
   TOP STRIP
========================================= */
.shop-showcase-top-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
    padding: 18px 22px;
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
    border: 1px solid rgba(14, 165, 233, 0.10);
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
}

.shop-showcase-top-left {
    min-width: 0;
    flex: 1;
}

.shop-showcase-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.10);
    color: #0284c7;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 10px;
}

.shop-showcase-top-left h2 {
    margin: 0 0 6px;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 900;
    color: #0f172a;
}

.shop-showcase-top-left p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
    max-width: 680px;
}

.shop-showcase-top-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.shop-showcase-top-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.shop-showcase-top-btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff;
    box-shadow: 0 12px 28px rgba(2, 132, 199, 0.16);
}

.shop-showcase-top-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
}

.shop-showcase-top-btn-secondary {
    background: #fff;
    color: #0369a1;
    border: 1px solid rgba(14, 165, 233, 0.18);
}

.shop-showcase-top-btn-secondary:hover {
    color: #0284c7;
    transform: translateY(-2px);
}

/* =========================================
   SLIDER WRAP
========================================= */
.shop-slider-wrap {
    position: relative;
    min-height: 460px;
    height: 460px;
    border-radius: 20px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10);
    border: 1px solid rgba(14, 165, 233, 0.10);
}

.shop-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.shop-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.shop-slide.active {
    opacity: 1;
    visibility: visible;
}

.shop-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.shop-slide-overlay {
    position: absolute;
    inset: 0;

    /* change these rgba values later if you want more or less blue */
    background: linear-gradient(
        90deg,
        rgba(3, 105, 161, 0.58) 0%,
        rgba(2, 132, 199, 0.42) 42%,
        rgba(2, 132, 199, 0.10) 100%
    );
}

.shop-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 40px 60px;
    max-width: 520px; /* reduced from 580px */
    color: #fff;
}

.shop-slide-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
    backdrop-filter: blur(6px);
}

.shop-slide-title {
    margin: 0 0 14px;
    font-size: 42px;
    line-height: 1.06;
    font-weight: 900;
    color: #fff;
    max-width: 500px;
}

.shop-slide-title span {
    display: block;
}

.shop-slide-desc {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
    max-width: 460px; /* reduced */
}

.shop-slide-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 420px; /* reduced */
}

.shop-slide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 13px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.25s ease;
}

.shop-slide-btn-primary {
    background: #fff;
    color: #0284c7;
}

.shop-slide-btn-primary:hover {
    color: #0369a1;
    transform: translateY(-2px);
}

.shop-slide-btn-secondary {
    background: rgba(255,255,255,0.14);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
}

.shop-slide-btn-secondary:hover {
    color: #fff;
    background: rgba(255,255,255,0.22);
    transform: translateY(-2px);
}

/* =========================================
   NAV BUTTONS
========================================= */
.shop-slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.34);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
}

.shop-slider-nav-btn:hover {
    background: rgba(255,255,255,0.22);
}

.shop-slider-prev {
    left: 14px;
}

.shop-slider-next {
    right: 14px;
}

/* =========================================
   DOTS
========================================= */
.shop-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
}

.shop-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.40);
    cursor: pointer;
    transition: all 0.25s ease;
}

.shop-slider-dot.active {
    width: 26px;
    border-radius: 999px;
    background: #fff;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1260px) {
    .shop-showcase-container {
        max-width: 1180px;
    }

    .shop-slider-wrap {
        min-height: 440px;
        height: 440px;
    }

    .shop-slide-title {
        font-size: 36px;
    }

    .shop-slide-content {
        max-width: 500px;
    }
}

@media (max-width: 991px) {
    .shop-showcase-section {
        padding: 0;
        margin-top: 76px;
    }

    .shop-showcase-container {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }

    .shop-showcase-top-strip {
        display: none;
    }

    .shop-slider-wrap {
        width: 100%;
        min-height: 390px;
        height: 390px;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        margin-top: 14px;
        box-shadow: none;
    }

    .shop-slide-content {
        max-width: 100%;
        padding: 30px 22px 52px;
    }

    .shop-slide-actions {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        flex-wrap: nowrap;
    }

    .shop-slide-btn {
        width: calc(50% - 6px);
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .shop-showcase-section {
        padding: 0;
        margin-top: 72px;
    }

    .shop-showcase-container {
        width: 100%;
        max-width: 100%;
    }

    .shop-slider-wrap {
        width: 100%;
        min-height: 340px;
        height: 340px;
        border-radius: 0;
        margin-top: 12px;
        border-left: 0;
        border-right: 0;
    }

    .shop-slide-content {
        padding: 26px 18px 48px;
    }

    .shop-slide-title {
        font-size: 28px;
    }

    .shop-slide-desc {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .shop-slide-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
        flex-wrap: nowrap;
    }

    .shop-slide-btn {
        width: calc(50% - 5px);
        min-height: 42px;
        padding: 0 10px;
        font-size: 13px;
        justify-content: center;
    }

    .shop-slider-nav-btn {
        width: 38px;
        height: 38px;
    }

    .shop-slider-prev {
        left: 10px;
    }

    .shop-slider-next {
        right: 10px;
    }
}

@media (max-width: 560px) {
    .shop-showcase-section {
        padding: 0;
        margin-top: 70px;
    }

    .shop-showcase-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .shop-slider-wrap {
        width: 100%;
        min-height: 300px;
        height: 300px;
        border-radius: 0;
        margin-top: 10px;
        border-left: 0;
        border-right: 0;
        box-shadow: none;
    }

    .shop-slide-content {
        padding: 22px 14px 44px;
    }

    .shop-slide-badge {
        font-size: 11px;
        padding: 7px 12px;
        margin-bottom: 10px;
    }

    .shop-slide-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .shop-slide-desc {
        font-size: 12px;
        margin-bottom: 14px;
        max-width: 100%;
    }

    .shop-slide-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        width: 100%;
        flex-wrap: nowrap;
    }

    .shop-slide-btn {
        width: calc(50% - 4px);
        min-height: 40px;
        padding: 0 8px;
        font-size: 12px;
        justify-content: center;
    }

    .shop-slider-dots {
        bottom: 10px;
    }

    .shop-slider-dot {
        width: 8px;
        height: 8px;
    }

    .shop-slider-dot.active {
        width: 22px;
    }
}

/* =========================================================
   CATEGORY CARD
========================================================= */

/* =========================================
   SHOP CATEGORIES - PROFESSIONAL REDESIGN
========================================= */
.category-section {
    position: relative;
    padding: 56px 14px 34px;
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.08), transparent 20%),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.06), transparent 22%),
        linear-gradient(180deg, #f7fbff 0%, #eef6fc 100%);
    overflow: hidden;
}

.category-section .container {
    max-width: 1280px;
    margin: 0 auto;
}

/* =========================================
   HEADER
========================================= */
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 28px;
}

.section-header h2 {
    margin: 0 0 12px;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.section-header p {
    margin: 0 auto;
    max-width: 620px;
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
}

/* =========================================
   GRID
========================================= */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

/* =========================================
   CARD
========================================= */
.category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(14, 165, 233, 0.10);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 14px 30px rgba(15, 23, 42, 0.06),
        0 2px 8px rgba(15, 23, 42, 0.03);
    backdrop-filter: blur(10px);
    transition:
        transform 0.30s ease,
        box-shadow 0.30s ease,
        border-color 0.30s ease;
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.06) 0%,
        rgba(255,255,255,0) 28%
    );
    pointer-events: none;
    z-index: 1;
}

.clickable-card {
    cursor: pointer;
}

.clickable-card:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 165, 233, 0.20);
    box-shadow:
        0 24px 44px rgba(2, 132, 199, 0.12),
        0 10px 20px rgba(15, 23, 42, 0.06);
}

.disabled {
    opacity: 0.78;
    cursor: not-allowed;
}

.disabled:hover {
    transform: none;
}

/* =========================================
   IMAGE
========================================= */
.category-image {
    position: relative;
    padding: 14px 14px 0;
}

.category-image::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(
        180deg,
        rgba(2, 132, 199, 0.04) 0%,
        rgba(15, 23, 42, 0.02) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.category-image img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.40s ease, filter 0.30s ease;
    background: #eff6ff;
}

.clickable-card:hover .category-image img {
    transform: scale(1.05);
}

.disabled .category-image img {
    filter: grayscale(0.12);
}

/* =========================================
   BODY
========================================= */
.category-body {
    position: relative;
    z-index: 2;
    padding: 18px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.category-body h4 {
    margin: 0;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.01em;
    min-height: 48px;
    display: flex;
    align-items: center;
}

/* =========================================
   ACTIONS
========================================= */
.category-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.category-actions.centered {
    justify-content: center;
}

/* =========================================
   STOCK BADGES
========================================= */
.stock-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.02em;
    white-space: nowrap;
    border: 1px solid transparent;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.05);
}

.in-stock {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.10));
    color: #15803d;
    border-color: rgba(34, 197, 94, 0.20);
}

.out-stock {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.16), rgba(239, 68, 68, 0.10));
    color: #b91c1c;
    border-color: rgba(239, 68, 68, 0.20);
}

/* =========================================
   CTA BUTTON
========================================= */
.btn-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    box-shadow: 0 12px 22px rgba(2, 132, 199, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
}

.clickable-card:hover .btn-buy {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(2, 132, 199, 0.22);
}

/* =========================================
   OPTIONAL SHINE EFFECT
========================================= */
.category-card .card-shine {
    display: none;
}

.category-card::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -40%;
    width: 34%;
    height: 260%;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.18) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(16deg);
    opacity: 0;
    pointer-events: none;
}

.clickable-card:hover::after {
    animation: categoryShine 1s ease;
}

@keyframes categoryShine {
    0% {
        left: -40%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        left: 120%;
        opacity: 0;
    }
}

/* =========================================
   NETWORK-SPECIFIC FEEL
========================================= */
.category-card:nth-child(1) .category-image img,
.category-card:nth-child(2) .category-image img,
.category-card:nth-child(3) .category-image img,
.category-card:nth-child(4) .category-image img {
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }

    .section-header h2 {
        font-size: 31px;
    }

    .category-image img {
        height: 190px;
    }
}

@media (max-width: 991px) {
    .category-section {
        padding: 48px 10px 26px;
    }

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

    .section-header {
        margin-bottom: 22px;
    }

    .section-header h2 {
        font-size: 27px;
    }

    .category-image img {
        height: 180px;
    }

    .category-body h4 {
        font-size: 17px;
        min-height: 42px;
    }
}

@media (max-width: 768px) {
    .category-section {
        padding: 42px 8px 22px;
    }

    .section-header h2 {
        font-size: 23px;
    }

    .section-header p {
        font-size: 13px;
        line-height: 1.7;
    }

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

    .category-card {
        border-radius: 20px;
    }

    .category-image {
        padding: 10px 10px 0;
    }

    .category-image::after {
        left: 10px;
        right: 10px;
        border-radius: 16px;
    }

    .category-image img {
        height: 145px;
        border-radius: 16px;
    }

    .category-body {
        padding: 14px 12px 12px;
        gap: 12px;
    }

    .category-body h4 {
        font-size: 15px;
        min-height: 38px;
    }

    .category-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .category-actions.centered {
        align-items: center;
    }

    .stock-badge,
    .btn-buy {
        width: 100%;
    }

    .category-actions.centered .stock-badge {
        width: auto;
        min-width: 120px;
    }

    .btn-buy {
        min-height: 38px;
        font-size: 12px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .section-header p {
        font-size: 12px;
    }

    .category-image img {
        height: 120px;
    }

    .category-body h4 {
        font-size: 14px;
        min-height: 34px;
    }

    .stock-badge {
        min-height: 30px;
        padding: 0 10px;
        font-size: 10px;
    }

    .btn-buy {
        min-height: 34px;
        padding: 0 12px;
        font-size: 11px;
    }
}



/* =========================================
   SERVICE ADVANTAGES SECTION
========================================= */
.shop-advantages {
    position: relative;
    padding: 64px 14px 36px;
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.07), transparent 22%),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.05), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #edf5fb 100%);
    overflow: hidden;
}

.shop-advantages .container {
    max-width: 1280px;
    margin: 0 auto;
}

/* =========================================
   HEADER
========================================= */
.shop-advantages-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 30px;
}

.shop-advantages-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.10);
    color: #0284c7;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}

.shop-advantages-header h2 {
    margin: 0 0 12px;
    font-size: 35px;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.shop-advantages-header p {
    margin: 0 auto;
    max-width: 660px;
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
}

/* =========================================
   GRID
========================================= */
.shop-advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

/* =========================================
   CARD
========================================= */
.shop-advantages-card {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(14, 165, 233, 0.10);
    border-radius: 24px;
    padding: 24px 20px 22px;
    box-shadow:
        0 14px 30px rgba(15, 23, 42, 0.05),
        0 2px 8px rgba(15, 23, 42, 0.03);
    transition:
        transform 0.30s ease,
        box-shadow 0.30s ease,
        border-color 0.30s ease;
    overflow: hidden;
}

.shop-advantages-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.06);
    pointer-events: none;
}

.shop-advantages-card:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 165, 233, 0.18);
    box-shadow:
        0 22px 40px rgba(2, 132, 199, 0.10),
        0 8px 18px rgba(15, 23, 42, 0.05);
}

/* =========================================
   ICON
========================================= */
.shop-advantages-icon-wrap {
    margin-bottom: 18px;
}

.shop-advantages-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    color: #0284c7;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.08);
}

/* =========================================
   TEXT
========================================= */
.shop-advantages-card h4 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.shop-advantages-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #64748b;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1200px) {
    .shop-advantages-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }

    .shop-advantages-header h2 {
        font-size: 31px;
    }
}

@media (max-width: 991px) {
    .shop-advantages {
        padding: 54px 10px 28px;
    }

    .shop-advantages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .shop-advantages-header {
        margin-bottom: 24px;
    }

    .shop-advantages-header h2 {
        font-size: 27px;
    }
}

@media (max-width: 768px) {
    .shop-advantages {
        padding: 46px 8px 24px;
    }

    .shop-advantages-header h2 {
        font-size: 23px;
    }

    .shop-advantages-header p {
        font-size: 13px;
        line-height: 1.75;
    }

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

    .shop-advantages-card {
        border-radius: 20px;
        padding: 18px 14px 16px;
    }

    .shop-advantages-icon {
        width: 50px;
        height: 50px;
        border-radius: 16px;
        font-size: 20px;
    }

    .shop-advantages-card h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .shop-advantages-card p {
        font-size: 12px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .shop-advantages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .shop-advantages-header h2 {
        font-size: 20px;
    }

    .shop-advantages-header p {
        font-size: 12px;
    }

    .shop-advantages-card {
        padding: 16px 12px 14px;
    }

    .shop-advantages-icon-wrap {
        margin-bottom: 14px;
    }

    .shop-advantages-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: 18px;
    }

    .shop-advantages-card h4 {
        font-size: 14px;
    }

    .shop-advantages-card p {
        font-size: 11px;
        line-height: 1.65;
    }
}