/*************************DESIGN SYSTEM *************************/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;700;800&display=swap');

:root {
    --navy-900: #0F172A;
    --navy-800: #1E293B;
    --navy-700: #334155;
    --brand-red: #ca2030;
    --brand-red-hover: #a01925;
    --white: #FFFFFF;
    --grey-50: #F8FAFC;
    --grey-100: #F1F5F9;
    --grey-200: #E2E8F0;
    --radius: 4px;
    --transition: 0.3s ease;
}

/* Ensure base font-size is 16px so 3.5rem = 56px */
html {
    font-size: 16px;
}

/*************************CONTAINER OVERRIDE *************************/
/* Prevent horizontal scroll */
body.tax-product_cat {
    overflow-x: hidden;
}

/* Override Zakra theme container only inside content area */
body.tax-product_cat #zak-content .zak-container,
body.tax-product_cat #zak-content .tg-container {
    max-width: 100% !important;
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.woocommerce-category-page #main {
    padding: 0 !important;
}

.tax-product_cat .zak-content .zak-row{
    flex-direction: row;
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/*************************PAGE HERO *************************/
.page-hero {
    padding: 8rem 0 6rem;
    background-color: var(--grey-50);
    border-bottom: 1px solid var(--grey-200);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 500px;
}
.page-hero .background-overlay{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 1;
    background-color: transparent;
    background-image: linear-gradient(90deg, #0F1728E6 0%, #0F172866 100%);
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    padding: 0 2rem;
}

.page-hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    margin-top: 0;
    color: white;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.page-hero p {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 65ch;
}

.woocommerce-category-page .pagination {
    margin-top: 40px;
    text-align: center;
}

.woocommerce-category-page .pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.woocommerce-category-page .pagination .page-numbers {
    display: inline-block;
    padding: 8px 15px;
    background: var(--grey-100);
    color: var(--navy-900);
    text-decoration: none;
    border-radius: var(--radius);
    transition: all var(--transition);
    font-weight: 600;
}

.woocommerce-category-page .pagination .page-numbers:hover {
    background: var(--brand-red);
    color: white;
}

.woocommerce-category-page .pagination .page-numbers.current {
    background: var(--brand-red);
    color: white;
}

/*************************WooCommerce Products Grid Widget **************************/
.wc-products-grid-container {
    width: 100%;
    margin: 0 auto;
}

.wc-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (max-width: 768px) {
    .wc-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .wc-products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.wc-product-item {
    position: relative;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.wc-product-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wc-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.wc-product-image-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 8px 8px 0 0;
    background: #f5f5f5;
}

.wc-product-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.wc-product-link:hover .wc-product-image {
    transform: scale(1.05);
}

.wc-product-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 0 15px 15px;
    line-height: 1.4;
    color: #333;
    transition: color 0.3s ease;
}

.wc-product-link:hover .wc-product-title {
    color: #CA2030;
}

.category-archive-wrap{
    padding: 0;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/*************************RANGE SECTION *************************/
.range-section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--grey-200);
}

.range-section:nth-child(even) {
    background-color: #F3F4F6;
    border-bottom: none;
}

.range-section:nth-child(even) .product-card {
    background: transparent;
}

.range-section:nth-child(even) .product-title {
    background: transparent;
}

.range-section:nth-child(even) .product-image-wrapper {
    background: transparent;
}

.range-section:nth-child(even) .attribute-value-row {
    background: transparent !important;
}

.range-section:nth-child(even) .product-button-wrapper {
    background: transparent;
}

.range-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Range Hero Image */
.range-hero {
    height: 400px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 4rem;
}

.range-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.range-hero:hover .range-bg {
    transform: scale(1.02);
}

.range-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 3rem;
}

.range-content h2 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.range-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin: 0;
    max-width: 600px;
}


.product-comparison-container {
    display: flex;
    gap: 0;
    width: 100%;
    background: transparent;
    position: relative;
    border: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.horizontal-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
    --image-height: 300px;
    --title-height: 80px;
    --attr-height: 50px;
    --button-height: 68px;
}

.h-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--grey-200);
}

.h-line-image {
    top: var(--image-height);
}

.h-line-title {
    top: calc(var(--image-height) + var(--title-height));
    background: #000;
    height: 2px;
}

.h-line-attr[data-attr-index="0"] {
    top: calc(var(--image-height) + var(--title-height) + var(--attr-height) * 1);
}

.h-line-attr[data-attr-index="1"] {
    top: calc(var(--image-height) + var(--title-height) + var(--attr-height) * 2);
}

.h-line-attr[data-attr-index="2"] {
    top: calc(var(--image-height) + var(--title-height) + var(--attr-height) * 3);
}

.h-line-attr[data-attr-index="3"] {
    top: calc(var(--image-height) + var(--title-height) + var(--attr-height) * 4);
}

.h-line-attr[data-attr-index="4"] {
    top: calc(var(--image-height) + var(--title-height) + var(--attr-height) * 5);
}

.h-line-attr[data-attr-index="5"] {
    top: calc(var(--image-height) + var(--title-height) + var(--attr-height) * 6);
}

.h-line-attr[data-attr-index="6"] {
    top: calc(var(--image-height) + var(--title-height) + var(--attr-height) * 7);
}

.h-line-attr[data-attr-index="7"] {
    top: calc(var(--image-height) + var(--title-height) + var(--attr-height) * 8);
}

.h-line-attr[data-attr-index="8"] {
    top: calc(var(--image-height) + var(--title-height) + var(--attr-height) * 9);
}

.h-line-attr[data-attr-index="9"] {
    top: calc(var(--image-height) + var(--title-height) + var(--attr-height) * 10);
}

.h-line-button {
    top: calc(100% - var(--button-height));
}

.product-attributes-labels {
    padding-left: 0;
    flex: 0 0 15%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    background: transparent;
}

.label-image-placeholder {
    height: 300px;
    padding: 0 1.5rem;
    font-weight: 700;
    color: var(--navy-900);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex
;
    align-items: center;
    background: transparent;
}

.label-title-placeholder {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    font-weight: 600;
    color: #666;
}

.attribute-label-row {
    height: 76px;
    padding: 0 1.5rem;
    font-weight: 700;
    color: var(--navy-900);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    background: transparent;
}

.label-button-placeholder {
    height: 68px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.embla-products-wrapper {
    position: relative;
    flex: 1;
    display: flex;
}

.embla {
    position: relative;
    width: 100%;
}

.embla__viewport {
    overflow: hidden;
}

.embla__container {
    display: flex;
    backface-visibility: hidden;
    touch-action: pan-y pinch-zoom;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.embla__slide {
    flex: 0 0 33.333%;
    min-width: 0;
    position: relative;
}

.product-card {
    width: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-card .product-image-wrapper,
.product-card .product-attributes,
.product-card .product-button-wrapper{
    border-right: 1px solid #E2E8F0;
}
.product-button-wrapper a{
    color: var(--navy-900);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: underline;
    text-decoration-color: #E2E8F0;
    text-underline-offset: 4px;
    transition: 0.2s;
}
.embla__slide:last-child .product-card {
    border-right: none;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 1rem;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    mix-blend-mode: multiply;
    transition: transform 0.3s;
}

.product-image:hover {
    transform: scale(1.05);
}

.product-title > a{
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 1.5rem;
    color: #000000;
    text-align: center;
    background: white;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #000;
    text-decoration: unset;
}
.product-title > a:hover{
    color: var(--brand-red-hover);
}
.product-attributes {
    display: flex;
    flex-direction: column;
}

.attribute-row {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--grey-200);
}

.attribute-label-mobile {
    display: none;
    font-weight: 600;
    color: var(--navy-900);
    margin-right: 8px;
}

.attribute-value-row {
    text-align: center;
    color: var(--navy-700);
    font-size: 1rem;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-button-wrapper a:hover{
    color: var(--brand-red);
}

.product-button-wrapper {
    height: 68px;
    padding: 0 20px;
    text-align: center;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-view-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--brand-red);
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    text-align: center;
    border: none;
}

.product-view-button:hover {
    background-color: var(--brand-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(202, 32, 48, 0.2);
}

/* Embla Navigation Buttons */
.product-comparison-slider-nav {
    position: absolute;
    top: 130px;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: space-between;
    pointer-events: none;
    z-index: 11;
    padding: 0 20px;
}

@media(max-width: 768px){
    .product-comparison-slider-nav {
        top: 132px;
        padding: 0;
    }
}

.embla__button {
    pointer-events: all;
    background: transparent;
    border: none;
    outline: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--brand-red);
    transition: all var(--transition);
    position: relative;
    z-index: 20;
    padding: 0;
}

.embla__button svg {
    width: 40px;
    height: 40px;
    stroke-width: 3;
}

.embla__button:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.embla__button:disabled {
    opacity: 0;
    cursor: not-allowed;
}

.embla__button:disabled:hover {
    color: var(--brand-red);
    transform: scale(1);
}

.embla__button--prev {
    margin-left: 0;
}

.embla__button--next {
    margin-right: 0;
}

/* Responsive */
@media (max-width: 1200px) {

    .page-hero h1 {
        font-size: 3rem;
    }

    .range-content h2 {
        font-size: 2.25rem;
    }

    .range-hero {
        height: 350px;
    }

    .horizontal-lines {
        --title-height: 90px;
        --image-height: 180px;
    }

    .label-title-placeholder,
    .product-title {
        height: 90px;
        font-size: 1.35rem;
    }

    .label-image-placeholder,
    .product-image-wrapper {
        height: 180px;
    }

    .product-attributes-labels {
        flex: 0 0 20%;
        padding-left: 15px;
    }

    .horizontal-lines {
        --image-height: 280px;
        --title-height: 75px;
        --attr-height: 48px;
        --button-height: 66px;
    }

    .label-image-placeholder,
    .product-image-wrapper {
        height: 280px;
        padding: 25px;
    }

    .product-title,
    .label-title-placeholder {
        font-size: 1.25rem;
        height: 75px;
        padding: 18px 12px;
    }

    .attribute-label-row {
        padding: 0 15px;
        font-size: 0.75rem;
    }

    .attribute-value-row {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .label-button-placeholder,
    .product-button-wrapper {
        height: 66px;
    }

    .product-view-button {
        padding: 0.65rem 1.3rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {

    .page-hero h1 {
        font-size: 2.75rem;
    }

    .range-content h2 {
        font-size: 2rem;
    }

    .range-hero {
        height: 320px;
    }

    .horizontal-lines {
        --title-height: 85px;
        --image-height: 160px;
    }

    .label-title-placeholder,
    .product-title {
        height: 85px;
        font-size: 1.25rem;
    }

    .label-image-placeholder,
    .product-image-wrapper {
        height: 160px;
    }

    .product-attributes-labels {
        flex: 0 0 25%;
        padding-left: 15px;
    }

    .horizontal-lines {
        --image-height: 250px;
        --title-height: 70px;
        --attr-height: 46px;
        --button-height: 64px;
    }

    .label-image-placeholder,
    .product-image-wrapper {
        height: 250px;
        padding: 20px;
    }

    .label-title-placeholder,
    .product-title {
        font-size: 1.1rem;
        height: 70px;
        padding: 15px 10px;
    }

    .attribute-label-row {
        padding: 0 15px;
        font-size: 0.7rem;
    }

    .attribute-value-row {
        font-size: 0.85rem;
        padding: 0 15px;
    }

    .label-button-placeholder,
    .product-button-wrapper {
        height: 64px;
    }

    .embla__button {
        width: 45px;
        height: 45px;
    }

    .embla__button svg {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 4rem 0 3rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .hero-container {
        padding: 0 1.5rem;
    }

    .range-section {
        padding: 3rem 0;
    }

    .range-container {
        padding: 0 1.5rem;
    }

    .range-hero {
        height: 300px;
        margin-bottom: 3rem;
    }

    .range-overlay {
        padding: 2rem;
    }

    .range-content h2 {
        font-size: 2rem;
    }

    .range-content p {
        font-size: 1rem;
    }

    /* Show 2 products instead of 3 */
    .embla__slide {
        flex: 0 0 50%;
    }

    .product-attributes-labels {
        padding-left: 10px;
        flex: 0 0 30%;
    }

    .horizontal-lines {
        --image-height: 180px;
        --title-height: 60px;
        --attr-height: 42px;
        --button-height: 58px;
    }

    .label-image-placeholder,
    .product-image-wrapper {
        height: 180px;
        padding: 15px;
    }

    .label-title-placeholder,
    .product-title {
        font-size: 1rem;
        height: 60px;
        padding: 10px 8px;
    }

    .attribute-label-row {
        padding: 0 10px;
        font-size: 0.65rem;
    }

    .attribute-value-row {
        font-size: 0.8rem;
        padding: 0 8px;
    }

    .label-button-placeholder,
    .product-button-wrapper {
        height: 58px;
        padding: 0 10px;
    }

    .product-view-button {
        padding: 0.6rem 1rem;
        font-size: 0.7rem;
    }

    .embla__button {
        width: 35px;
        height: 35px;
    }

    .embla__button svg {
        width: 28px;
        height: 28px;
        stroke-width: 2.5;
    }
}

@media (max-width: 480px) {

    .page-hero {
        padding: 3rem 0 2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 0.95rem;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .range-section {
        padding: 2rem 0;
    }

    .range-container {
        padding: 0 1rem;
    }

    .range-hero {
        height: 250px;
        margin-bottom: 2rem;
        border-radius: 4px;
    }

    .range-overlay {
        padding: 1.5rem;
    }

    .range-content h2 {
        font-size: 1.5rem;
    }

    .range-content p {
        font-size: 0.9rem;
    }

    .product-attributes-labels {
        flex: 0 0 35%;
    }

    .horizontal-lines {
        --image-height: 150px;
        --title-height: 55px;
        --attr-height: 38px;
        --button-height: 52px;
    }

    .label-image-placeholder,
    .product-image-wrapper {
        height: 150px;
        padding: 10px;
    }

    .label-title-placeholder,
    .product-title {
        font-size: 0.9rem;
        height: 55px;
        padding: 10px 8px;
    }

    .attribute-label-row {
        padding: 0 8px;
        font-size: 0.6rem;
    }

    .attribute-value-row {
        font-size: 0.75rem;
        padding: 0 6px;
    }

    .label-button-placeholder,
    .product-button-wrapper {
        height: 52px;
        padding: 0 8px;
    }

    .product-view-button {
        padding: 0.5rem 0.9rem;
        font-size: 0.65rem;
    }

    .embla__button {
        width: 30px;
        height: 30px;
    }

    .embla__button svg {
        width: 24px;
        height: 24px;
        stroke-width: 2;
    }
}

/* Very Small Mobile (< 600px) - 1 product per slide */
@media (max-width: 599px) {
    .embla__slide {
        flex: 0 0 100%;
    }

    /* Hide left column and lines on mobile */
    .product-attributes-labels {
        display: none;
    }

    .horizontal-lines {
        display: none;
    }

    /* Make slider full width */
    .embla-products-wrapper {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .product-comparison-slider-nav {
        top: 150px;
        padding: 0 20px;
    }

    .product-comparison-container {
        border-radius: var(--radius);
        border: 1px solid var(--grey-200);
    }

    .product-card {
        border-right: none;
    }

    /* Product card mobile styles */
    .product-image-wrapper {
        height: 200px;
        padding: 20px;
    }

    .product-title {
        font-size: 1.25rem;
        height: auto;
        min-height: 60px;
        padding: 15px 10px;
    }

    /* Show mobile labels and adjust layout */
    .attribute-row {
        height: auto;
        padding: 12px 15px;
        flex-direction: row;
        justify-content: space-between;
        border-bottom: 1px solid var(--grey-200);
    }

    .attribute-row:last-child {
        border-bottom: none;
    }

    .attribute-label-mobile {
        display: inline-block;
        font-size: 0.8rem;
        text-align: left;
        flex: 0 0 45%;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .attribute-value-row {
        font-size: 0.8rem;
        text-align: right;
        flex: 0 0 50%;
        background: transparent !important;
    }

    .product-button-wrapper {
        height: auto;
        padding: 20px 15px;
        margin: 0;
    }

    .product-view-button {
        width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}

.w-100{
    width: 100%;
}

/* Product Grid Layout */
.product-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.product-grid-item {
    position: relative;
    background: white;
    border: 1px solid var(--grey-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.product-grid-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-grid-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.product-grid-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 aspect ratio */
    overflow: hidden;
    background: var(--grey-50);
}

.product-grid-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition);
    mix-blend-mode: multiply;
}

.product-grid-item:hover .product-grid-image {
    transform: scale(1.05);
}

.product-grid-title {
    padding: 20px 15px;
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    color: var(--navy-900);
    text-align: center;
    line-height: 1.4;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-grid-link:hover .product-grid-title {
    color: var(--brand-red);
}

/* Responsive Grid - Tablet */
@media (max-width: 1200px) {
    .product-grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .product-grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .product-grid-title {
        font-size: 0.95rem;
        padding: 15px 10px;
        min-height: 70px;
    }
}

/* Responsive Grid - Mobile */
@media (max-width: 768px) {
    .product-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-grid-title {
        font-size: 0.9rem;
        padding: 12px 8px;
        min-height: 60px;
    }
}

@media (max-width: 480px) {
    .product-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-grid-title {
        font-size: 0.85rem;
        padding: 10px 8px;
        min-height: 55px;
    }
}
