/* ============================================
   SAMSONIX THEME - MATCHING HOMEPAGE.JPEG
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #111111;
    background: #ffffff;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== HERO SECTION ===== */
.hero-premium {
    overflow: hidden;
    background: oklch(21% .034 264.665);
    padding: 10px 0 10px;
    color: white;
    text-align: left;
    overflow: hidden;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-hero {
    background: oklch(40% .12 240);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
    /* border: 2px solid #dc2626; */
}

.btn-hero:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-hero-outline:hover {
    background: white;
    color: #dc2626;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #dc2626;
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 14px;
    color: #666;
    max-width: 550px;
    margin: 0 auto;
}

/* ===== FEATURED PRODUCTS ===== */
.featured-products {
    padding: 60px 0;
    background: #ffffff;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    padding: 10px;
    /* margin-bottom: 30px; */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    padding: 25px;
    text-align: center;
    background: #fafafa;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-height: 140px;
    width: auto;
}

.product-info {
    padding: 5px;
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    /* margin-bottom: 8px; */
    color: #111;
    /* line-height: 1.4; */
    min-height: 40px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 5px;
}

.btn-add-cart {
    width: 100%;
    padding: 10px;
    background: #111;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-add-cart:hover {
    background: #dc2626;
}

.btn-add-cart.disabled {
    background: #ccc;
    cursor: not-allowed;
}

.btn-view-all {
    display: inline-block;
    padding: 12px 35px;
    background: #111;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-view-all:hover {
    background: #dc2626;
    color: white;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 0;
    color: white;
}

.why-choose-us .section-title {
    color: white;
}

.why-choose-us .section-title:after {
    background: #dc2626;
}

.why-choose-us .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    margin-bottom: 5px;

    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.why-icon {
    width: 65px;
    height: 65px;
    background: rgb(201 100 100 / 15%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.why-icon i {
    font-size: 28px;
    color: #dc2626;
}

.why-card h4 {
    /* color: white; */
    font-size: 18px;
    margin-bottom: 10px;
}

.why-card p {
    /* color: rgba(255,255,255,0.8); */
    font-size: 12px;
    line-height: 1.5;
}

/* ===== SHOP SECTION ===== */
.shop-section {
    padding: 50px 0;
}

/* Sidebar Filters */
.filter-sidebar {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.filter-sidebar .title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #dc2626;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-list,
.brand-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li,
.brand-list li {
    margin-bottom: 10px;
}

.category-list li a,
.brand-list li a {
    color: #666;
    font-size: 13px;
    transition: color 0.3s;
    display: block;
    padding: 4px 0;
}

.category-list li a:hover,
.category-list li a.selected,
.brand-list li a:hover {
    color: #dc2626;
    font-weight: 500;
}

.category-list i {
    margin-right: 8px;
    color: #999;
    font-size: 10px;
}

.sub-categories {
    list-style: none;
    padding-left: 25px;
    margin-top: 8px;
}

.clear-filter {
    color: #dc2626;
    font-size: 12px;
}

/* Product Sort */
.product-sort {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
    /* display: flex; */
    gap: 15px;
    flex-wrap: wrap;
}

.product-sort select {
    /* padding: 10px 15px; */
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    flex: 1;
    min-width: 150px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: #5078b9;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-banner .lead {
    font-size: 16px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cta {
    background: #dc2626;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-cta:hover {
    background: #b91c1c;
    color: white;
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-cta-outline:hover {
    background: white;
    color: #111;
}

/* ===== PAGINATION ===== */
.pagination-wrapper {
    margin-top: 30px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
}

.pagination li a,
.pagination li span {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #333;
    font-size: 13px;
}

.pagination li.active span {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

/* ===== ALERTS ===== */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-info {
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    color: #0369a1;
}

.text-center {
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-banner h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hero-premium {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }

    .btn-hero,
    .btn-hero-outline {
        padding: 10px 24px;
        font-size: 12px;
    }

    .featured-products,
    .why-choose-us,
    .shop-section,
    .cta-banner {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 13px;
        padding: 0 15px;
    }

    .product-sort {
        flex-direction: column;
        gap: 10px;
    }

    .product-sort select {
        width: 100%;
    }

    .cta-banner h2 {
        font-size: 24px;
    }

    .cta-banner .lead {
        font-size: 14px;
        padding: 0 15px;
    }

    .btn-cta,
    .btn-cta-outline {
        padding: 10px 24px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn-hero,
    .btn-hero-outline {
        width: 80%;
    }

    .why-card {
        padding: 20px 15px;
    }

    .why-card h4 {
        font-size: 16px;
    }

    .product-title {
        font-size: 13px;
    }

    .product-price {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn-cta,
    .btn-cta-outline {
        width: 80%;
    }
}



/* ============================================
   SAMSONIX RESPONSIVE PATCH (FINAL FIX ONLY)
   DO NOT CHANGE BASE THEME
   ============================================ */

/* ===== TABLET (<= 992px) ===== */
@media (max-width: 992px) {

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .products-grid {
        gap: 15px;
    }

    /* 2 columns product layout */
    .product-card {
        flex: 1 1 calc(50% - 15px);
    }

    .why-card {
        flex: 1 1 calc(50% - 15px);
    }

    .cta-banner h2 {
        font-size: 28px;
    }
}

/* ===== MOBILE (<= 768px) ===== */
@media (max-width: 768px) {

    /* HERO */
    .hero-premium {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero,
    .btn-hero-outline {
        width: 100%;
        max-width: 320px;
    }

    /* SECTIONS */
    .featured-products,
    .why-choose-us,
    .shop-section,
    .cta-banner {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 13px;
        padding: 0 10px;
    }

    /* PRODUCTS */
    .products-grid {
        flex-direction: column;
    }

    .product-card {
        flex: 1 1 100%;
    }

    .product-image {
        height: 220px;
    }

    /* WHY CHOOSE US */
    .why-grid {
        flex-direction: column;
    }

    .why-card {
        flex: 1 1 100%;
    }

    /* SHOP FILTER */
    .product-sort {
        flex-direction: column;
    }

    .product-sort select {
        width: 100%;
    }

    /* CTA */
    .cta-banner h2 {
        font-size: 24px;
    }

    .cta-banner .lead {
        font-size: 14px;
        padding: 0 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta,
    .btn-cta-outline {
        width: 100%;
        max-width: 320px;
    }
}

/* ===== SMALL MOBILE (<= 576px) ===== */
@media (max-width: 576px) {

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .section-title {
        font-size: 22px;
    }

    .product-title {
        font-size: 13px;
        min-height: auto;
    }

    .product-price {
        font-size: 15px;
    }

    .product-image {
        height: 200px;
        padding: 15px;
    }

    .why-card h4 {
        font-size: 15px;
    }

    .why-card p {
        font-size: 12px;
    }

    .cta-banner h2 {
        font-size: 20px;
    }
}

/* ===== NAV FIX (MOBILE MENU SUPPORT ONLY) ===== */
@media (max-width: 768px) {

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #0b0f19;
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu li a {
        display: block;
        padding: 12px 15px;
    }
}




.why-hero {
    background: #f8f9fb;
    padding: 70px 0;
    text-align: center;
}

.why-icon {
    font-size: 28px;
    color: #dc2626;
    margin-bottom: 15px;
}

.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 13px;
    color: #666;
}

.stars {
    color: #fbbf24;
    margin-bottom: 10px;
}

/* Improve stats section */
.shop-section h2 {
    font-size: 28px;
    font-weight: 700;
}

.shop-section p {
    font-size: 13px;
    color: #666;
}

/* ============================================
   MOBILE MENU ICON FIX (SAMSONIX)
   ============================================ */

/* Hamburger / menu icon default */
.mobile-menu-toggle,
.navbar-toggler,
.menu-toggle,
.hamburger,
.nav-toggle {
    color: #ffffff !important;
    background: transparent;
    border: none;
}

/* If icon uses spans (hamburger bars) */
.mobile-menu-toggle span,
.navbar-toggler span,
.menu-toggle span {
    background-color: #ffffff !important;
}

/* If icon is SVG */
.mobile-menu-toggle svg,
.navbar-toggler svg,
.menu-toggle svg {
    fill: #ffffff !important;
    stroke: #ffffff !important;
}

/* Hover state */
.mobile-menu-toggle:hover,
.navbar-toggler:hover {
    color: #dc2626 !important;
}

/* Active/open state (optional UX improvement) */
.nav-menu.show+.mobile-menu-toggle,
.mobile-menu-toggle.active {
    color: #dc2626 !important;
}










/* ================================
   FIX: HEADER ALIGNMENT (GLOBAL)
================================ */
.nav-bar .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    flex-wrap: nowrap;
}

/* Logo stays fixed left */
.nav-bar .logo-area {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.nav-bar .logo-area h2 {
    color: #fff;
}

/* Menu stays in same row as logo on desktop */
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    margin: 0;
    padding: 0;
}

/* Push menu items in single row */
.nav-menu li {
    white-space: nowrap;
}

/* Mobile toggle always right */
.mobile-menu-toggle {
    margin-left: auto;
    display: none;
}

/* ================================
   MOBILE VIEW
================================ */
@media (max-width: 768px) {

    .nav-bar .container {
        justify-content: space-between;
        flex-wrap: wrap;
    }

    /* Logo + toggle in same line */
    .logo-area {
        flex: 1;
    }

    .mobile-menu-toggle {
        display: block;
        order: 2;
    }

    /* Menu becomes dropdown */
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        background: #1a1a2e;
        margin-top: 10px;
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu li a {
        padding: 12px 15px;
        display: block;
    }
}


/* ===== HERO LAYOUT FIX ===== */
.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* LEFT SIDE */
.hero-left {
    flex: 1;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    text-align: right;
}

.hero-right img {
    max-width: 110%;
    transform: translateX(40px);
}

.badge-new {
    background: #4f46e5;
    /* primary */
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    line-height: 1;
}

.badge-text {
    font-size: 13px;
    font-weight: 600;
    color: #4f46e5;
}

/* GRADIENT TEXT */
.gradient-text {
    background: linear-gradient(90deg, #c084fc, #e879f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-text {
    color: #facc15;
}

/* TITLE FIX */
.hero-title {
    font-size: 64px;
    /* bigger */
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* FEATURES */
.hero-features {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 13px;
    backdrop-filter: blur(8px);
}

.feature-box span {
    font-size: 11px;
    opacity: 0.8;
}

/* STATS */
.hero-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    max-width: 800px;
}

.hero-stats strong {
    font-size: 24px;
}

.hero-stats span {
    font-size: 13px;
    opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-right img {
        transform: none;
        max-width: 90%;
    }

    .hero-stats {
        justify-content: center;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
}




/* ======================================
   FIX: HERO FEATURES + STATS HORIZONTAL
====================================== */

/* FEATURES ALWAYS SIDE BY SIDE */
/* .hero-features {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
} */

/* keep feature boxes compact */
.feature-box {
    min-width: 120px;
    text-align: center;
}

/* STATS ALWAYS SIDE BY SIDE */
.hero-stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

/* ensure each stat stays in column internally */
.hero-stats>div {
    text-align: center;
}

/* ======================================
   MOBILE SAFETY OVERRIDE (IMPORTANT)
====================================== */
@media (max-width: 768px) {

    /* DO NOT STACK FEATURES */
    .hero-features {
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* DO NOT STACK STATS */
    .hero-stats {
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }
}

@media (max-width: 480px) {

    .feature-box {
        min-width: 100px;
        font-size: 12px;
    }

    .hero-stats {
        gap: 20px;
    }
}


















/* ============================================
   FINAL PRODUCT UI NORMALIZATION (SAMSONIX)
   ============================================ */

/* ----- PRODUCT GRID ----- */
.products-wrapper.grid .row {
    margin: 0 -10px;
}

/* ----- PRODUCT CARD ----- */
/*.product-card {*/
/*    padding: 10px;*/
/*    margin-bottom: 20px;*/
/*    display: flex;*/
/*}*/

.card-inner {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.card-inner:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

/* ----- PRODUCT IMAGE (NO BOX) ----- */
.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: transparent !important;   /* remove box */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* keeps image clean without crop */
    transition: transform 0.3s ease;
}

/* subtle zoom */
.card-inner:hover .product-image img {
    transform: scale(1.05);
}

/* ----- CARD BODY ----- */
.card-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ----- TITLE ----- */
.product-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 8px;
    min-height: 38px;
}

.product-title a {
    color: #222;
    text-decoration: none;
}

.product-title a:hover {
    color: #dc2626;
}

/* ----- PRICE ----- */
.product-price {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.product-price .current {
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

.product-price .old {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}

.product-price .discount-badge {
    font-size: 11px;
    background: #dc2626;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
}

/* ----- STOCK ----- */
.stock-info {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

/* ----- ACTION BUTTON AREA ----- */
.product-actions {
    margin-top: auto;
}

/* ----- CONSISTENT BUTTON UI ----- */
.btn-view-all,
.product-actions a,
.product-actions button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    background: #111;
    color: #fff;
    border: none;
    transition: all 0.25s ease;
    text-decoration: none;
}

/* hover state */
.btn-view-all:hover,
.product-actions a:hover,
.product-actions button:hover {
    background: #dc2626;
    color: #fff;
}

/* disabled */
.product-actions .disabled {
    background: #ccc !important;
    cursor: not-allowed;
}

/* out of stock */
.out-of-stock {
    font-size: 12px;
    color: #dc2626;
    text-align: center;
    padding: 8px 0;
}

/* ----- RESPONSIVE ----- */

/* tablet */
@media (max-width: 992px) {
    .product-card {
        flex: 1 1 calc(50% - 20px);
    }
}

/* mobile */
@media (max-width: 768px) {
    .product-card {
        flex: 1 1 100%;
    }

    .product-title {
        font-size: 13px;
    }

    .product-price .current {
        font-size: 14px;
    }
}

/* small mobile */
@media (max-width: 480px) {
    .product-image {
        aspect-ratio: 4 / 3;
    }
}

/* ----- CUSTOM NEW CSS ----- */
.filter-toggle-btn {
    width: 100%;
    margin-bottom: 15px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    color: #333;
    font-weight: bold;
}

@media (max-width: 991px) {
    .mobile-filters-hidden {
        display: none;
    }
    .mobile-filters-hidden.show-filters {
        display: block;
    }
}

.btn-seller-info {
    width: 100%;
    margin-top: auto;
}

@media (min-width: 768px) {
    .btn-seller-info, .btn-view-all {
        width: auto;
        align-self: flex-start;
        display: inline-block;
    }
}