/* ================================================================
   HOME PAGE DESKTOP STYLES
   Moved from Index.cshtml inline <style> tag
   ================================================================ */

/* ----------------------------------------------------------------
   View All / See More Button
   ---------------------------------------------------------------- */
.btn-view-all-modern {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 32px !important;
    background: #fff !important;
    border: 1.5px solid #d1d5db !important;
    border-radius: 10px !important;
    color: #1c1c1e !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    letter-spacing: 0.2px !important;
    cursor: pointer !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06) !important;
}

.btn-view-all-modern:hover {
    border-color: #9ca3af !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    color: #1c1c1e !important;
    text-decoration: none !important;
}

.btn-view-all-modern svg {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
}

/* Owl Carousel Override */
.owl-dot {
    background: none !important;
    border: none !important;
    padding: 0px !important;
}

.girlfacex {
    margin-top: 23px;
}

.padrightnew {
    padding-right: 0px !important;
}

/* ================================================================
   CATEGORY CARDS - DESKTOP & MOBILE FIX
   ================================================================ */

/* Category Card Wrapper */
.category-card {
    display: block;
    text-decoration: none;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* Category Card Image - with fallback gradient */
.category-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    /* Fallback gradient if image doesn't load */
    background-color: #f0f0f0;
    background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Ensure images are rendered properly */
.category-card-image::before {
    content: '';
    display: block;
    padding-top: 100%; /* 1:1 Aspect Ratio */
}

/* Overlay */
.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.05) 0%,
        rgba(0,0,0,0.3) 40%,
        rgba(0,0,0,0.7) 100%
    );
    z-index: 1;
}

/* Category Content */
.category-card-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
}

/* Category Title */
.category-card-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.6);
    line-height: 1.2;
}

/* Shop Now Button */
.category-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    color: #333;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.category-card:hover .category-card-btn {
    background: #FF6B35;
    color: #fff;
    transform: translateX(5px);
}

.category-card-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.category-card:hover .category-card-btn svg {
    transform: translateX(3px);
}

/* ================================================================
   HOME SLIDER
   ================================================================ */

.home-slider {
    position: relative;
    overflow: hidden;
}

.home-slider input[name="slides"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.slides {
    position: relative;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.slide {
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slides.transitioning .slide {
    opacity: 0.95;
}

/* ================================================================
   VENDOR CARDS (DESKTOP)
   ================================================================ */

.vendors {
    padding: 58px 0 68px;
    background: #ececec;
}

.vendors .container,
.vendors-container {
    max-width: 1180px;
    margin: 0 auto;
}

.vendors .section-heading {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #f37021;
    text-align: center;
    margin-bottom: 4px;
}

.vendors .section-heading-p {
    font-size: 24px;
    color: #1f1f1f;
    text-align: center;
    margin-bottom: 34px;
}

.vendors .section-heading-p .light-text {
    color: #4a4a4a;
    font-weight: 400;
}

.vendor-slider {
    overflow-x: auto;
    scrollbar-width: none;
}

.vendor-slider::-webkit-scrollbar {
    display: none;
}

.slider-track {
    display: flex;
    gap: 22px;
    padding: 0 2px 8px;
}

.curved-logo {
    width: 74px;
    height: 74px;
    object-fit: contain;
    border-radius: 50%;
}

.vendor-card {
    flex: 0 0 calc(25% - 17px);
    min-width: calc(25% - 17px);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vendor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

.vendor-card-top {
    height: 106px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: #e4eee7;
}

.vendor-card:nth-child(4n+2) .vendor-card-top {
    background: #ece6d3;
}

.vendor-card:nth-child(4n+3) .vendor-card-top {
    background: #e2ecf5;
}

.vendor-card:nth-child(4n+4) .vendor-card-top {
    background: #e4eee6;
}

.vendor-card .logo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #d8d8d8;
    display: grid;
    place-items: center;
    transform: translateY(22px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

.vendor-card-body {
    padding: 34px 16px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 220px;
}

.vendor-verified-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid #d6d6d6;
    background: #f8f8f8;
    color: #444;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.vendor-card .icon-verified {
    width: 14px;
    height: 14px;
}

.vendor-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #171717;
    margin: 0 0 4px;
    line-height: 1.25;
}

.vendor-card .sub {
    color: #8d8d8d;
    font-size: 13px;
    margin: 0 0 12px;
}

.vendor-card .vendor-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.vendor-card .meta {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vendor-card .meta li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #333;
    font-size: 13px;
    font-weight: 600;
}

.vendor-card .meta .icon {
    width: 18px;
    height: 18px;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 2px;
}

.rating-star {
    color: #f5a623;
    font-size: 13px;
    line-height: 1;
}

.rating .score {
    padding-left: 0;
    padding-top: 0;
    color: #333;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
}

.rating .reviews {
    font-size: 11px;
    color: #9a9a9a;
}

.cta {
    margin-top: 16px !important;
    text-transform: capitalize !important;
}

.vendor-card .cta {
    min-width: 122px;
    color: #f37021;
    border: 1.5px solid #f37021;
    border-radius: 8px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
    background: transparent;
    transition: all 0.25s ease;
}

.vendor-card:hover .cta {
    background: #fff7f2;
    color: #f37021;
}

.vendor-card .cta .btn-icon {
    width: 16px;
    height: 16px;
}

.seller-see-more-wrap {
    text-align: center;
    margin-top: 24px;
}

.seller-see-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 138px;
    padding: 11px 20px;
    border-radius: 10px;
    border: 1px solid #d1d1d1;
    background: #f8f8f8;
    color: #202020;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.seller-see-more:hover {
    text-decoration: none;
    color: #f37021;
    border-color: #f37021;
    background: #fff;
}

.seller-see-more-icon {
    font-size: 18px;
    line-height: 1;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .vendor-card {
        flex: 0 0 calc(33.333% - 15px);
        min-width: calc(33.333% - 15px);
    }
}

/* ================================================================
   BUTTON UTILITIES
   ================================================================ */

.mobiview-all {
    text-transform: capitalize !important;
    font-weight: 500 !important;
}

.light-text {
    font-weight: 400;
}

/* ================================================================
   PRODUCT GRID (DESKTOP)
   ================================================================ */

.product-grid-5col {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    width: 100%;
}

/* ================================================================
   PRODUCT CARD (DESKTOP)
   ================================================================ */

.product-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: #e5e5e5;
}

/* Product Image Container */
.product-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f8f8f8;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
}

.product-img-wrap a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-wrap img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item:hover .product-img-wrap img {
    transform: scale(1.08);
}

/* Product Tags */
.product-tags {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
}

.product-tag {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    line-height: 1;
}

.product-tag--hot,
.product-tag--new,
.product-tag--sale,
.product-tag--green,
.product-tag--default {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%) !important;
    color: white;
}

/* Discount Badge - Top Left (Desktop) */
.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 8px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* HOT Badge - Top Right (Desktop) */
.badge-hot {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #FF6B35;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 8px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* SKU Badge - Center Top (Desktop) */
.sku-badge {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(108, 117, 125, 0.9);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    z-index: 9;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Countdown Timer - Bottom Left (Desktop) */
.countdown-timer {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 14px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
}

.countdown-timer svg {
    width: 16px;
    height: 16px;
    stroke: #333;
}

/* Hover Operations (Desktop) */
.hover-ops {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 40px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item:hover .hover-ops {
    opacity: 1;
    transform: translateY(0);
}

.ops-label {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.ops-btns {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.ops-btns .op {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #d0936a;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.ops-btns .op:hover {
    background: #d0936a;
    color: white;
    transform: scale(1.1);
}

.ops-btns a {
    text-decoration: none;
}

/* Product Body */
.product-item-inner {
    position: relative;
    flex-grow: 1;
}

.prd-body {
    padding: 14px 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Product Title */
.prd-title {
    margin-bottom: 10px;
}

.prd-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #1c1c1e !important;
    text-decoration: none !important;
    line-height: 1.4 !important;
    transition: color 0.2s ease;
}

.prd-title a:hover {
    color: #d0936a;
}

/* Price Row */
.price-row {
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.price-currency {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #333 !important;
}

.price-now {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #333 !important;
}

.price-old {
    font-size: 12px !important;
    color: #999 !important;
    text-decoration: line-through !important;
}

.strikepricefront {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

/* Star Rating */
.stars-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars-row .stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.stars-row .star {
    font-size: 13px;
}

.stars-row .star.filled {
    color: #FFB800;
}

.stars-row .star.half {
    color: #FFB800;
}

.stars-row .star.empty {
    color: #ddd;
}

.stars-row .rating-val {
    font-weight: 700;
    color: #1c1c1e;
    font-size: 14px;
}

.stars-row .review-count {
    font-size: 13px;
    color: #888;
}

/* Add to Cart Button - Outline Style */
.btn-cart,
.btn-cart-outline {
    width: 100%;
    padding: 13px 16px;
    background: #fff;
    border: 2px solid #F37021;
    border-radius: 50px;
    color: #F37021;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.3px;
}

.btn-cart:hover,
.btn-cart-outline:hover {
    background: #F37021;
    color: #fff;
}

.btn-cart:hover svg path,
.btn-cart-outline:hover svg path {
    stroke: #fff;
}

.btn-cart svg,
.btn-cart-outline svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: stroke 0.3s ease;
}

.price-now span {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

/* Stars Rating */
.stars-row {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    margin-bottom: 10px;
}

.stars-row .star {
    font-size: 12px;
}

.stars-row .star.filled {
    color: #fbbf24;
}

.stars-row .star.half {
    color: #fbbf24;
}

.stars-row .star.empty {
    color: #ddd;
}

.stars-row .rating-val {
    color: #666;
    font-weight: 600;
    margin-left: 4px;
}

/* Button styling for product items */
.prd-body .btn-cart,
.prd-body .op {
    font-size: 15px;
    padding: 8px 16px !important;
    border-radius: 8px !important;
}

/* Modern product card */
.modern-product-card {
    margin-bottom: 18px;
}

.modern-product-card .product-card-shell {
    background: #fff;
    border: 1px solid rgba(28, 28, 30, 0.08);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(28, 28, 30, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.modern-product-card .product-card-shell:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(28, 28, 30, 0.12);
}

.modern-product-card .product-card-media {
    position: relative;
    height: 210px;
    padding: 10px;
    background: radial-gradient(circle at top, rgba(255,255,255,0.18), transparent 38%), linear-gradient(180deg, #53433d 0%, #c8b2a1 100%);
}

.modern-product-card .product-media-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.modern-product-card .product-media-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.modern-product-card .product-card-shell:hover .product-media-link img {
    transform: scale(1.04);
}

.modern-product-card .product-badge-row {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.modern-product-card .product-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 0 8px 18px rgba(243, 112, 33, 0.28);
}

.modern-product-card .product-tag--hot,
.modern-product-card .product-tag--sale,
.modern-product-card .product-tag--default {
    background: linear-gradient(135deg, #f37021, #ff9f43);
}

.modern-product-card .product-tag--new,
.modern-product-card .product-tag--green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.modern-product-card .product-icon-btn {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: #1c1c1e;
    box-shadow: 0 8px 18px rgba(28, 28, 30, 0.12);
}

.modern-product-card .product-timer-pill {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #1c1c1e;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(28, 28, 30, 0.12);
}

.modern-product-card .product-card-body {
    padding: 14px 14px 16px;
}

.modern-product-card .product-stock-pill {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.modern-product-card .product-stock-pill.is-available {
    background: #ecfdf3;
    color: #047857;
}

.modern-product-card .product-stock-pill.is-empty {
    background: #fef2f2;
    color: #b91c1c;
}

.modern-product-card .product-card-title {
    min-height: 48px;
    margin-bottom: 0;
}

.modern-product-card .product-card-title a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #1c1c1e;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
}

.modern-product-card .compact-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #6b7280;
}

.modern-product-card .compact-rating .review-count {
    font-size: 12px;
    color: #6b7280;
}

.modern-product-card .price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 14px;
}

.modern-product-card .price-currency {
    font-size: 14px;
    font-weight: 700;
    color: #1c1c1e;
}

.modern-product-card .price-now {
    font-size: 24px;
    font-weight: 600;
    color: #1c1c1e;
    line-height: 1;
}

.modern-product-card .price-old {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    text-decoration: line-through;
}

.modern-product-card .product-card-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 4px;
}

.modern-product-card .discount-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 66px;
    padding: 7px 12px;
    border: 1px solid #1c1c1e;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #1c1c1e;
    background: #fff;
}

.modern-product-card .discount-chip.neutral {
    border-color: #d1d5db;
    color: #4b5563;
}

.modern-product-card .btn-cart-icon {
    width: 40px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    color: #1c1c1e;
    font-size: 18px;
    box-shadow: 0 8px 18px rgba(28, 28, 30, 0.08);
    transition: all 0.2s ease;
}

.modern-product-card .btn-cart-icon:hover,
.modern-product-card .product-icon-btn:hover {
    background: #f37021;
    color: #fff;
}

/* ================================================================
   ACCOUNT DROPDOWN - HEADER
   ================================================================ */
.account-dropdown-wrap {
    position: relative;
    display: inline-flex;
}

.account-dropdown-trigger {
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    font-family: inherit;
}

.account-chevron {
    transition: transform 0.2s ease;
    margin-left: 2px;
}

.account-dropdown-wrap.open .account-chevron {
    transform: rotate(180deg);
}

.account-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 210px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    z-index: 9999;
    padding: 8px 0;
    animation: dropdownFadeIn 0.15s ease;
}

.account-dropdown-wrap.open .account-dropdown-menu {
    display: block;
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.account-dropdown-group {
    padding: 6px 0;
}

.account-dropdown-label {
    display: block;
    padding: 4px 16px 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9ca3af;
}

.account-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #1c1c1e;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.account-dropdown-item:hover {
    background: #f9fafb;
    color: #F37021;
    text-decoration: none;
}

.account-dropdown-item:hover svg path,
.account-dropdown-item:hover svg polyline,
.account-dropdown-item:hover svg line,
.account-dropdown-item:hover svg circle,
.account-dropdown-item:hover svg rect {
    stroke: #F37021;
}

.account-dropdown-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 4px 12px;
}

/* ================================================================
   CATEGORY SECTION - DESKTOP
   ================================================================ */

.category-section {
    padding: 58px 0 72px;
    background: #ececec;
}

.category-section .container {
    max-width: 1180px;
}

.category-section .section-heading {
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    color: #222;
}

.category-section .section-heading-p {
    font-size: 16px;
    text-align: center;
    color: #737373;
    margin-bottom: 34px;
}

.category-slider-wrapper {
    position: relative;
    width: 100%;
}

.category-slider-shell {
    display: flex;
    align-items: center;
    gap: 18px;
}

.category-cards-container {
    flex: 1 1 auto;
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 0;
}

.category-cards-container::-webkit-scrollbar {
    display: none;
}

.category-scroll-btn {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    color: #f37021;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

.category-scroll-btn span {
    font-size: 52px;
    line-height: 1;
    font-weight: 300;
}

.category-scroll-btn:hover {
    color: #d85f18;
    transform: scale(1.08);
}

.category-card {
    position: relative;
    flex: 0 0 calc(25% - 18px);
    min-width: calc(25% - 18px);
    border-radius: 8px;
    overflow: hidden;
    height: 242px;
    text-decoration: none;
    display: block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.16);
}

.category-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.16) 55%, rgba(0,0,0,0.06) 100%);
}

.category-card-content {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
}

.category-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 2px 0;
    line-height: 1.25;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.category-card-count {
    font-size: 12px;
    color: rgba(255,255,255,0.94);
    margin: 0 0 12px 0;
    font-weight: 500;
}

.category-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    color: #222;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.category-card:hover .category-card-btn {
    background: #fff;
    color: #222;
}

.category-card-btn svg {
    width: 16px;
    height: 16px;
}

.category-dots {
    display: none;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .category-card {
        flex: 0 0 calc(33.333% - 16px);
        min-width: calc(33.333% - 16px);
    }
}

@media (min-width: 1200px) {
    .category-card {
        flex: 0 0 calc(25% - 18px);
        min-width: calc(25% - 18px);
    }
}

