@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 15px;
    background: #fffdf8;
}

:root {
    --storefront-ink: #1f2937;
    --storefront-soft-ink: #5b6472;
    --storefront-accent: #111827;
    --storefront-surface: rgba(255, 255, 255, 0.96);
    --storefront-border: rgba(31, 41, 55, 0.08);
    --storefront-shadow: 0 8px 24px rgba(31, 41, 55, 0.06);
}

.storefront-header-spacer {
    height: 0;
    transition: height 0.25s ease;
}

.storefront-topbar {
    background: linear-gradient(90deg, #111827 0%, #7c2d12 100%);
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    z-index: 1031;
}

.storefront-topbar-inner {
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.storefront-topbar-text {
    font-weight: 600;
}

.storefront-topbar-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.storefront-topbar-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.88;
}

.storefront-topbar-links a:hover {
    opacity: 1;
}

.storefront-navbar {
    background: var(--storefront-surface);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--storefront-border);
    box-shadow: var(--storefront-shadow);
    padding: 12px 0;
    position: relative;
    z-index: 1030;
}

body.navbar-sticky .storefront-header-spacer {
    height: 90px;
}

.storefront-navbar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: storefrontStickySlide 0.25s ease;
}

@keyframes storefrontStickySlide {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.storefront-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.storefront-brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--storefront-border);
}

.storefront-brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.storefront-brand-kicker {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #b45309;
    font-weight: 700;
}

.storefront-brand-title {
    color: var(--storefront-ink);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

.storefront-nav .nav-item {
    margin: 0 0.2rem;
}

.storefront-nav .nav-link {
    position: relative;
    color: var(--storefront-ink);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.55rem 0.95rem;
    border-radius: 0;
    background: transparent;
    transition: all 0.25s ease;
}

.storefront-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 0.95rem;
    right: 0.95rem;
    bottom: 0.3rem;
    height: 2px;
    background: var(--storefront-accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.storefront-nav .dropdown-toggle::after {
    display: none;
}

.storefront-nav .nav-link:hover,
.storefront-nav .nav-link.active,
.storefront-nav .nav-link.show {
    color: var(--storefront-accent);
    background: transparent;
    box-shadow: none;
}

.storefront-nav .nav-link:hover::before,
.storefront-nav .nav-link.active::before,
.storefront-nav .nav-link.show::before {
    transform: scaleX(1);
}

.storefront-dropdown {
    border: 1px solid var(--storefront-border);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(31, 41, 55, 0.08);
    padding: 0.45rem;
    margin-top: 10px;
}

.storefront-dropdown .dropdown-item {
    border-radius: 8px;
    padding: 0.55rem 0.75rem;
}

.storefront-dropdown .dropdown-item:hover {
    background: #f3f4f6;
    color: var(--storefront-accent);
}

.storefront-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.storefront-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    text-decoration: none;
    border: 1px solid var(--storefront-border);
    color: var(--storefront-ink);
    background: #fff;
    transition: all 0.25s ease;
}

.storefront-action-btn:hover {
    transform: translateY(-1px);
    color: var(--storefront-accent);
    box-shadow: 0 8px 18px rgba(31, 41, 55, 0.1);
}

.storefront-cart-btn {
    position: relative;
}

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

.storefront-badge {
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #111827;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    position: absolute;
    top: -5px;
    right: -5px;
}

.storefront-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.82rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    background: #111827;
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.18);
    transition: all 0.25s ease;
}

.storefront-cta-btn:hover {
    color: #fff;
    transform: translateY(-1px);
    background: #000;
}

.storefront-toggler {
    border: 1px solid var(--storefront-border);
    border-radius: 10px;
    padding: 0.45rem 0.6rem;
    background: #fff;
}

.storefront-toggler:focus {
    box-shadow: none;
}

/* home page styles */
.review-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-btn {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.carousel-btn.prev {
    left: 15px;
}

.carousel-btn.next {
    right: 15px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d1d5db;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-indicator.active {
    background-color: #000;
}

/* Slider Header Styles */
.slider-container {
    position: relative;
    overflow: hidden;
    height: 70vh;
    min-height: 500px;
}

.slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    height: 100%;
}

.slider-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slider-content h2 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.slider-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.slider-btn {
    background-color: white;
    color: black;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: black;
    color: white;
}

.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-indicator.active {
    background-color: white;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 10;
}

.slider-nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-nav.prev {
    left: 1rem;
}

.slider-nav.next {
    right: 1rem;
}

@media (max-width: 768px) {
    .slider-container {
        height: 60vh;
        min-height: 400px;
    }

    .slider-content {
        left: 5%;
        max-width: 90%;
    }

    .slider-content h2 {
        font-size: 2.5rem;
    }

    .slider-content p {
        font-size: 1.1rem;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-btn {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 50vh;
        min-height: 350px;
    }

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

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

/* shop page styles */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-showcase-card {
    position: relative;
    background: #fff;
    border: 1px solid #ebebeb;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-showcase-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
    border-color: #dedede;
}

.product-showcase-media {
    display: block;
    background: #fff;
    overflow: hidden;
}

.product-showcase-image {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #f7f7f7;
}

.product-showcase-body {
    position: relative;
    padding: 8px 5px 5px;
}

.product-showcase-title {
    font-size: 14px;
    line-height: 1.35;
    font-weight: 400;
    margin: 0 0 8px;
    min-height: 2.75rem;
}

.product-showcase-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
}

.product-showcase-price {
    color: #ff6a00;
    font-size: 1.05rem;
    font-weight: 500;
}

.product-showcase-discount {
    color: #777;
    font-size: 12px;
}

.product-showcase-base-price {
    color: #999;
    font-size: 0.88rem;
    text-decoration: line-through;
}

.product-showcase-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.filter-option {
    transition: all 0.2s ease;
}

.filter-option:hover {
    background-color: #f3f4f6;
}

.filter-option.active {
    background-color: #000;
    color: white;
}

.price-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: #d1d5db;
    outline: none;
}

.price-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
}

/* product details page styles */
.product-image {
    transition: transform 0.3s ease;
}

.thumbnail {
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #000;
}

.size-option {
    transition: all 0.2s ease;
}

.size-option:hover {
    background-color: #f3f4f6;
}

.size-option.selected {
    background-color: #000;
    color: white;
}

.color-option {
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.color-option:hover,
.color-option.selected {
    border-color: #000;
}

.quantity-btn {
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background-color: #f3f4f6;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-button {
    transition: all 0.2s ease;
}

.tab-button.active {
    border-bottom: 2px solid #000;
    font-weight: 600;
}

/* contact page styles */
.contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.form-input:focus {
    outline: none;
    ring: 2px;
    ring-color: #000;
    border-color: #000;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.info-item {
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
}

/* checkout page style */
.checkout-step {
    transition: all 0.3s ease;
}

.checkout-step.active {
    color: #000;
    font-weight: 600;
}

.checkout-step.completed {
    color: #10b981;
}

.payment-method {
    transition: all 0.2s ease;
    border: 2px solid #e5e7eb;
}

.payment-method:hover,
.payment-method.selected {
    border-color: #000;
}

.form-input:focus {
    outline: none;
    ring: 2px;
    ring-color: #000;
    border-color: #000;
}

.summary-item {
    transition: all 0.2s ease;
}

/* about page styles */
.story-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.team-member {
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
}

.value-item {
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
    background-color: #000;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #e5e7eb;
}

.timeline-dot {
    position: absolute;
    left: -6px;
    top: 20px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #000;
    z-index: 1;
}

/* customer dashboard style */
.profile-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.1);
}

.nav-item {
    transition: all 0.3s ease;
}

.nav-item.active {
    background-color: #f3f4f6;
    border-left: 4px solid #000;
    font-weight: 600;
}

.order-status {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-delivered {
    background-color: #d1fae5;
    color: #065f46;
}

.status-processing {
    background-color: #fef3c7;
    color: #92400e;
}

.status-shipped {
    background-color: #dbeafe;
    color: #1e40af;
}

.status-cancelled {
    background-color: #fecaca;
    color: #991b1b;
}

.wishlist-item {
    transition: all 0.3s ease;
}

.wishlist-item:hover {
    transform: translateY(-5px);
}

.form-input:focus {
    outline: none;
    ring: 2px;
    ring-color: #000;
    border-color: #000;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* collection page style  */
.collection-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15);
}

.collection-image {
    transition: transform 0.5s ease;
}

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

.filter-btn {
    transition: all 0.3s ease;
}

.filter-btn.active {
    background-color: #000;
    color: white;
}

.filter-btn:hover:not(.active) {
    background-color: #f3f4f6;
}

.collection-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.seasonal-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #000;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

/* terms and conditions  style */
.legal-section {
    transition: all 0.3s ease;
}

.legal-section:hover {
    transform: translateY(-3px);
}

.nav-item {
    transition: all 0.3s ease;
}

.nav-item.active {
    background-color: #f3f4f6;
    border-left: 4px solid #000;
    font-weight: 600;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.back-to-top {
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* wishlist style */
.wishlist-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wishlist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.wishlist-actions {
    transition: all 0.3s ease;
}

.wishlist-item:hover .wishlist-actions {
    opacity: 1;
    transform: translateY(0);
}

.empty-wishlist {
    transition: all 0.3s ease;
}

.empty-wishlist:hover {
    transform: scale(1.02);
}

.filter-btn {
    transition: all 0.3s ease;
}

.filter-btn.active {
    background-color: #000;
    color: white;
}

.filter-btn:hover:not(.active) {
    background-color: #f3f4f6;
}

.sale-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #ef4444;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.new-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #000;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.modal-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.modal-container {
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-active {
    transform: scale(1);
    opacity: 1;
}

.form-container {
    transition: all 0.3s ease;
}

.hidden {
    display: none;
}

.active-tab {
    background-color: #3b82f6;
    color: white;
}

.cart-item-wrapper {
    position: relative;
    border: 1px dashed #ddd;
}

.remove-item-cart {
    position: absolute;
    top: 2px;
    right: 2px;
    cursor: pointer;
    opacity: 0;
}

.remove-item-cart button {
    background-color: red;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.cart-item-wrapper:hover .remove-item-cart {
    opacity: 1;
}

.line-limit-two {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.subcategory-section-title {
    font-size: 1.95rem;
    font-weight: 500;
    color: #202020;
    margin-bottom: 1rem;
}

.subcategory-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: #fff;
    border-top: 1px solid #d9d9d9;
    border-left: 1px solid #d9d9d9;
}

.subcategory-card {
    min-height: 148px;
    padding: 16px 12px 14px;
    background: #fff;
    border-right: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.subcategory-card:hover {
    background-color: #fafafa;
    transform: translateY(-1px);
}

.subcategory-card-media {
    height: 82px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.subcategory-card-media img {
    max-height: 80px;
    max-width: 100px;
    object-fit: contain;
}

.subcategory-card-title {
    font-size: 0.92rem;
    line-height: 1.25;
    color: #222;
    max-width: 100%;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

ul.dropdown-menu {
    font-size: 14px;
}

.form-control {
    padding: 10px !important;
    font-size: 13px !important;
    border: 1px solid #ddd !important;
}

button.btn-close {
    border: 1px solid #ddd;
    border-radius: 50%;
    font-size: 10px;
    text-align: center;
}

@media (max-width: 991.98px) {
    .storefront-header-spacer {
        height: 0;
    }

    .storefront-topbar {
        display: none;
    }

    .storefront-navbar {
        padding: 10px 0;
    }

    body.navbar-sticky .storefront-header-spacer {
        height: 78px;
    }

    .storefront-brand-title {
        font-size: 1.05rem;
    }

    .storefront-navbar .navbar-collapse {
        margin-top: 0.85rem;
        padding: 0.9rem;
        border-radius: 16px;
        background: #fff;
        border: 1px solid var(--storefront-border);
        box-shadow: 0 20px 40px rgba(31, 41, 55, 0.1);
    }

    .storefront-nav .nav-item {
        margin: 0;
    }

    .storefront-nav .nav-link {
        margin-bottom: 0.25rem;
    }

    .storefront-actions {
        flex-wrap: wrap;
        justify-content: flex-start;
        margin-top: 0.75rem;
    }

    .storefront-action-btn {
        width: 44px;
        height: 44px;
    }

    .storefront-cta-btn {
        padding: 0.8rem 1rem;
    }
}

@media (max-width: 575.98px) {
    .storefront-header-spacer {
        height: 0;
    }

    .storefront-brand-title {
        max-width: 130px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 0.95rem;
    }

    .storefront-brand-kicker {
        font-size: 0.52rem;
    }

    .subcategory-section-title {
        font-size: 1.55rem;
    }

    .subcategory-card {
        min-height: 138px;
        padding: 14px 10px 12px;
    }

    .subcategory-card-media {
        height: 72px;
    }

    .subcategory-card-media img {
        max-height: 70px;
        max-width: 84px;
    }
}

@media (min-width: 576px) {
    .subcategory-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .subcategory-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .subcategory-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .subcategory-grid {
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }
}
