/* Base Styles and Typography */
html {
    overflow-y: scroll;
    /* Force scrollbar to prevent horizontal jumping between pages */
}

/*
 * Fonts are now loaded via <link> tags in the <head> of each page,
 * with preconnect, instead of @import here. @import in CSS blocks
 * rendering and delays the font request until after this file is
 * fully fetched and parsed — that's what was causing inconsistent
 * font-weight rendering (FOUT) across pages.
 * See header include for the <link> tags.
 */

/* 
 * The rest of the styling is now handled by Tailwind CSS utility classes.
 * We've significantly reduced this file as requested!
 */

.font-cormorant {
    font-family: 'Cormorant', Georgia, serif;
}

.font-nunito {
    font-family: 'Nunito', sans-serif;
}

/* Section Title & Subtitle Typography */
.intro-section-title {
    font-family: 'Cormorant', Georgia, serif;
    font-size: 1.875rem; /* 30px */
    font-weight: 500;
    color: #4C3D3D;
    margin-bottom: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .intro-section-title {
        font-size: 2.25rem; /* 36px */
    }
}

@media (min-width: 1024px) {
    .intro-section-title {
        font-size: 3rem; /* 48px */
    }
    .lg\:text-5xl {
        font-size: 2.5rem !important;
    }
}

.intro-section-desc {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #666666;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Remove Swiper default loading animation */
.swiper-wrapper {
    transition-timing-function: ease !important;
}

/* Discover Swiper */
.discover-swiper {
    padding: 0 !important;
}

@media (max-width: 768px) {
    .discover-swiper {
        padding: 0 !important;
    }
}

.discover-swiper .swiper-slide {
    height: auto !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 0 !important;
}

/* Statement Piece - Pan full image left to right */
@keyframes statementPanLR {
    0%   { object-position: 0% 50%; }
    100% { object-position: 100% 50%; }
}

.statement-swiper {
    overflow: hidden;
}

.statement-pagination {
    position: relative !important;
    margin-top: 1.75rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
}

.statement-swiper .swiper-wrapper {
    align-items: stretch;
    height: auto !important;
}

/*
 * Slide card — 3:4.5 (same as 2:3) aspect ratio.
 * Do NOT rely on CSS aspect-ratio alone here: with Swiper + an absolutely
 * positioned child, iOS Safari often collapses the slide height to 0.
 * An in-flow ::before padding spacer establishes height on all browsers.
 */
.statement-swiper .swiper-slide.statement-card {
    border-radius: 0 !important;
    height: auto !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
    position: relative !important;
    cursor: pointer;
    display: block;
    border: none;
    background: transparent;
    box-sizing: border-box;
}

.statement-swiper .swiper-slide.statement-card::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 150%; /* height = 1.5 × width → 3:4.5 */
}

.statement-swiper .swiper-slide.statement-card img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: 0% 50%;
    transition: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.statement-swiper .swiper-slide.statement-card:hover img,
.statement-swiper .swiper-slide.statement-card.pan-active img {
    animation: statementPanLR 5s ease-in-out forwards;
}

.discover-swiper .swiper-slide img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* AOS stagger inside Swiper (animate inner content, not the slide) */
.aos-slide-item {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Fill the padded ratio box */
.statement-swiper .aos-slide-item {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    overflow: hidden !important;
    border: 1px solid #e2e8f0;
    background-color: #f5f5f5;
    width: 100% !important;
    height: 100% !important;
}

@media (max-width: 767px) {
    .statement-swiper {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Softer bottom-to-top so overflow:hidden slides don't clip the motion */
[data-aos="fade-up"] {
    transform: translate3d(0, 36px, 0);
}

[data-aos="fade-up"].aos-animate {
    transform: translate3d(0, 0, 0);
}


/* Store locator banner hover zoom (kept off AOS node so transforms don't clash) */
.store-locator-banner {
    transform: scale(1);
    transition: transform 0.35s ease;
    will-change: transform;
    transform-origin: center center;
}

.store-locator-banner:hover {
    transform: scale(1.05);
}
.hero-swiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.hero-swiper .swiper-wrapper {
    height: auto !important;
    align-items: flex-start;
}

.hero-swiper .swiper-slide {
    height: auto !important;
    width: 100% !important;
}

.hero-swiper .swiper-slide a {
    display: block;
    width: 100%;
    line-height: 0;
}

.hero-swiper .swiper-slide img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover;
}

/* Soft ease on hero fade (overrides Swiper default linear-ish opacity) */
.hero-swiper.swiper-fade .swiper-slide {
    transition-timing-function: ease-in-out !important;
}

.hero-swiper.swiper-fade .swiper-slide-active {
    z-index: 2;
}

/* Hero Swiper Specific Pagination */
.hero-swiper .swiper-pagination {
    position: absolute !important;
    bottom: 16px !important;
    margin-top: 0 !important;
    z-index: 10 !important;
}

@media (min-width: 768px) {
    .hero-swiper .swiper-pagination {
        bottom: 24px !important;
    }
}

.hero-swiper .swiper-pagination .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

.hero-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ffffff !important;
}

/* Swiper Custom Pagination */
.swiper-pagination {
    position: relative !important;
    margin-top: 1.75rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.swiper-pagination .swiper-pagination-bullet,
.swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    background-color: #514747 !important;
    opacity: 1 !important;
    border-radius: 9999px !important;
    transition: width 0.3s ease !important;
    margin: 0 4px !important;
    display: inline-block !important;
}

.swiper-pagination .swiper-pagination-bullet-active,
.swiper-pagination-bullet-active {
    width: 24px !important;
    height: 8px !important;
    background-color: #5147477a !important;
    border-radius: 9999px !important;
    opacity: 1 !important;
}

/* --- Added Category & Product Detail Styles --- */

:root {
    --primary-color: #4C3D3D;
    --accent-color: #cfcecf;
}

/* Container Padding */
.container {
    padding-left: 16px;
    padding-right: 16px;
}

@media (max-width: 639px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Product Listing Page */
.page-content {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.page-header {
    border-bottom: 2px solid #bce2e2;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.page-title {
    font-family: 'Cormorant', serif;
    color: #4C3D3D;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
}

.actions-bar {
    margin-bottom: 30px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-back i {
    margin-right: 8px;
}

.btn-back:hover {
    background-color: var(--accent-color);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

.product-card {
    text-align: center;
    background-color: #ffffff;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.product-image-wrapper {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
}

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

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

.product-details {
    padding: 15px 10px;
    background-color: #ffffff;
}

.product-title {
    font-family: 'Nunito', sans-serif;
    color: #4C3D3D;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-material {
    font-family: 'Nunito', sans-serif;
    color: #888;
    font-size: 13px;
    margin-bottom: 10px;
}

.product-price {
    font-family: 'Nunito', sans-serif;
    color: #4C3D3D;
    font-size: 16px;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }

    .product-title {
        font-size: 13px;
    }

    .product-price {
        font-size: 14px;
    }
}

/* Product Detail Page - Mockup Layout */
.breadcrumb-bar {
    margin-bottom: 0 !important;
    width: 100%;
    overflow: hidden;
}

@media (min-width: 769px) {
    .breadcrumb-bar {
        padding-top: 16px;
        padding-bottom: 16px;
    }
}

@media (max-width: 768px) {
    .breadcrumb-bar {
        padding-top: 6px;
        padding-bottom: 10px;
    }
    .breadcrumb {
        margin-top: 0;
    }
}

.breadcrumb {
    font-size: 13px;
    color: #666;
    margin-bottom: 0 !important;
    margin-top: 10px;
    text-transform: capitalize;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important;
    width: 100% !important;
    height: 1.4em !important;
    line-height: 1.4em !important;
}

.breadcrumb * {
    display: inline !important;
    white-space: nowrap !important;
    vertical-align: baseline !important;
    line-height: 1.4em !important;
    margin: 0 !important;
    padding: 0 !important;
}

.breadcrumb h1.current {
    font-size: 13px !important;
    font-weight: normal !important;
    color: #999 !important;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: none;
    color: #a0a0a0;
}

.breadcrumb .current {
    color: #999;
}

.product-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

/* Left Column: Gallery */
.product-gallery {
    flex: 1 1 45%;
    max-width: 50%;
    min-width: 0;
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.product-gallery.has-multiple-images {
    overflow: hidden;
    width: 100%;
}

.product-gallery.has-multiple-images .main-image-container {
    width: 100%;
    height: auto;
}

.product-gallery.has-multiple-images .main-image {
    width: 100%;
    height: auto;
}

.main-image-container {
    position: relative;
    width: 100%;
    height: auto;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    background-color: #f5f5f5;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

.wishlist-btn:hover {
    color: var(--accent-color);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 20px;
    height: 40px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.gallery-nav.prev {
    left: 0;
    border-radius: 0 4px 4px 0;
}

.gallery-nav.next {
    right: 0;
    border-radius: 4px 0 0 4px;
}

.thumb-gallery-wrapper {
    position: relative;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.thumb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 20px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
}

.thumb-nav.prev {
    left: 0;
    border-radius: 0 4px 4px 0;
}

.thumb-nav.next {
    right: 0;
    border-radius: 4px 0 0 4px;
}

.thumbSwiper {
    width: 100%;
    height: auto;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.thumbSwiper .swiper-wrapper {
    display: flex;
    height: auto;
    align-items: stretch;
}

.thumbSwiper .swiper-slide {
    height: auto !important;
    max-width: 25%;
    flex-shrink: 0;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .thumbSwiper .swiper-slide {
        max-width: 20%;
    }
}

.thumbSwiper .thumbnail {
    width: 100%;
    height: auto;
    border: 1px solid #e2e8f0;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease, border-color 0.2s ease;
    box-sizing: border-box;
}

.thumbSwiper .thumbnail.active {
    border: 1px solid #4C3D3D;
    opacity: 1;
}

.thumbSwiper .thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.download-brochure {
    text-align: center;
    margin-top: 10px;
}

.download-brochure a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.download-brochure a:hover {
    color: #666;
}

/* Right Column: Info Panel */
.product-info-panel {
    flex: 1 1 40%;
    min-width: 0;
}

.brand-share-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.brand-logo {
    height: 35px;
    object-fit: contain;
}

.product-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.product-title-row .product-title-large {
    margin-bottom: 0;
}

.share-btn {
    background: transparent;
    border: none;
    color: #4C3D3D;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
    flex-shrink: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.share-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.5px;
}

.share-btn:hover {
    color: var(--primary-color, #0c4da2);
    transform: scale(1.1);
}

.product-title-large {
    font-family: 'Cormorant', serif;
    font-size: 26px;
    font-weight: 500;
    color: #4C3D3D;
    margin-bottom: 5px;
}

.product-sku-text {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}

.title-divider {
    border: none;
    border-top: 1px solid #eee;
    margin-bottom: 0px;
}

.product-price-block {
    margin-bottom: 0;
}

.product-price-large {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #4C3D3D;
    margin-bottom: 0;
}

.info-section {
    margin-bottom: 25px;
}

.info-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.price-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.price-list li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.price-list .item-name {
    display: inline-block;
    width: 100px;
}

.price-list .item-price {
    color: #2db3ad;
    font-weight: 500;
}

.description-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.bullet-list {
    list-style-type: disc;
    margin-left: 20px;
}

.bullet-list li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}


/* Breadcrumb bar */
.breadcrumb-bar {
    margin-bottom: 0 !important;
}

.breadcrumb-sep {
    margin: 0 6px;
    color: #bbb;
}

/* Price block with discount */
.product-price-block {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0;
}

.product-price-original {
    font-size: 18px;
    color: #aaa;
    text-decoration: line-through;
}

.discount-badge {
    background-color: var(--accent-color);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

/* WhatsApp CTA button */
.product-cta-row {
    margin-top: 30px;
}

.btn-enquire {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-enquire:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
}

.btn-enquire i {
    font-size: 20px;
}

/* Related products section */
.related-products-section {
    margin-top: 60px;
    padding-bottom: 60px;
}

.related-title {
    font-family: 'Cormorant', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    text-transform: capitalize;
}

/* Related products section box buttons aligned to corner */
.category-products-section .cat-prev,
.category-products-section .cat-next {
    width: 20px !important;
    height: 36px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 0 !important;
    color: #4C3D3D !important;
    box-shadow: none !important;
    margin-top: 0 !important;
    top: 38% !important;
    transform: translateY(-50%) !important;
    transition: all 0.2s ease;
    z-index: 20 !important;
}

.category-products-section .cat-prev {
    left: 0 !important;
}

.category-products-section .cat-next {
    right: 0 !important;
}

.category-products-section .cat-prev:hover,
.category-products-section .cat-next:hover {
    background: #4C3D3D !important;
    color: #ffffff !important;
    border-color: #4C3D3D !important;
}

.category-products-section .cat-prev:after,
.category-products-section .cat-next:after {
    font-size: 14px !important;
    font-weight: bold !important;
}

/* Editor Content (HTML from Summernote) */
.editor-content ul,
.description-text ul,
.product-high-light-section ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 0 !important;
}

.editor-content ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.editor-content p,
.description-text p,
.product-high-light-section p {
    margin-bottom: 0 !important;
}

.editor-content strong {
    font-weight: 700;
}

/* Editor & Description Content Tables */
.editor-content,
.description-text {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.editor-content table,
.description-text table {
    width: auto !important;
    max-width: 100%;
    border-collapse: collapse;
    margin: 0 0 12px 0;
    font-size: 16px;
    line-height: 1.6;
}

.editor-content table th,
.description-text table th {
    color: #4C3D3D;
    font-weight: 700;
    text-align: left;
    padding: 4px 6px 4px 0;
    border-bottom: 2px solid #e2e8f0;
    font-size: 16px;
}

.editor-content table td,
.description-text table td {
    padding: 4px 6px 4px 0;
    vertical-align: top;
    color: #4a5568;
    font-size: 16px;
}

.editor-content table td:first-child,
.description-text table td:first-child {
    font-weight: 600;
    color: #4C3D3D;
    padding-right: 20px;
    white-space: nowrap;
    width: auto;
    font-size: 16px;
}

.editor-content table td:last-child,
.description-text table td:last-child {
    color: #4C3D3D;
    font-weight: 500;
    font-size: 16px;
}

/* Second Table Identification Styles (applies to 2nd table or table after table even without classes) */
.description-text table:nth-of-type(2),
.editor-content table:nth-of-type(2),
.description-text table + table,
.editor-content table + table {
    width: 60% !important;
    max-width: 100%;
    font-size: 14px !important;
    border-collapse: collapse !important;
    background-color: #f8fafc;
    border: 2px solid #ffffff;
    margin: 0 15px 12px 0;
}

@media (max-width: 768px) {
    .description-text table:nth-of-type(2),
    .editor-content table:nth-of-type(2),
    .description-text table + table,
    .editor-content table + table {
        width: 100% !important;
    }
}

.description-text table:nth-of-type(2) td,
.editor-content table:nth-of-type(2) td,
.description-text table + table td,
.editor-content table + table td,
.description-text table:nth-of-type(2) th,
.editor-content table:nth-of-type(2) th,
.description-text table + table th,
.editor-content table + table th {
    padding: 4px 20px 4px 0;
    vertical-align: top;
    font-size: 14px !important;
    color: #707470 !important;
    border: 2px solid #ffffff;
    text-align: left;
}

.description-text table:nth-of-type(2) td:first-child,
.editor-content table:nth-of-type(2) td:first-child,
.description-text table + table td:first-child,
.editor-content table + table td:first-child {
    font-weight: 600;
    color: #707470 !important;
    white-space: nowrap;
    width: auto;
    background-color: transparent;
    font-size: 14px !important;
    padding-left: 10px;
}

.description-text table:nth-of-type(2) td[rowspan],
.editor-content table:nth-of-type(2) td[rowspan],
.description-text table + table td[rowspan],
.editor-content table + table td[rowspan] {
    vertical-align: middle !important;
    text-align: center !important;
    padding-left: 0 !important;
}

.description-text table:nth-of-type(2) td:nth-child(2),
.editor-content table:nth-of-type(2) td:nth-child(2),
.description-text table + table td:nth-child(2),
.editor-content table + table td:nth-child(2),
.description-text table:nth-of-type(2) td:nth-child(3),
.editor-content table:nth-of-type(2) td:nth-child(3),
.description-text table + table td:nth-child(3),
.editor-content table + table td:nth-child(3) {
    text-align: left !important;
    padding: 10px !important;
}

.description-text table:nth-of-type(2) td:last-child,
.editor-content table:nth-of-type(2) td:last-child,
.description-text table + table td:last-child,
.editor-content table + table td:last-child {
    color: #707470 !important;
    font-weight: 500;
    font-size: 14px !important;
}


/* Product Details Responsive */
@media (max-width: 992px) {
    .product-layout {
        flex-direction: column;
        gap: 0px;
    }

    .product-gallery {
        max-width: 100%;
        position: static;
        flex: 1 1 100%;
    }

    .product-info-panel {
        flex: 1 1 100%;
        min-width: 0;
        width: 100%;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .product-layout {
        gap: 0px;
    }

    .thumbSwiper {
        width: 100%;
    }

    .product-title-large {
        font-size: 24px;
    }

    .product-price-large {
        font-size: 22px;
    }
}


