.new-arrivals-section {
    background: #f4f5f7;
    padding: 60px 0 70px;
}

.new-arrivals-section .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.new-arrivals-section .section-divider {
    width: 48px;
    height: 3px;
    background: #111;
    margin: 8px auto 6px;
    border-radius: 2px;
}

.new-arrivals-section .section-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    color: #000000;
    letter-spacing: 0.02em;
}

/* ---- Product Card ---- */
.product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    border: 1px solid #ebebeb;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.product-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.11);
    transform: translateY(-3px);
}

/* ---- Badge ---- */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: #111;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 3px 9px;
    border-radius: 20px;
    text-transform: uppercase;
}

.product-badge.badge-hot   { background: #e63946; }
.product-badge.badge-trend { background: #2b7a78; }
.product-badge.badge-sale  { background: #f4a261; color: #111; }
.product-badge.badge-new   { background: #111; }

/* ---- Action Buttons ---- */
.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.16s, border-color 0.16s;
    text-decoration: none;
    color: #444;
}

.action-btn:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

.action-btn svg {
    width: 15px;
    height: 15px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ---- Product Image ---- */
.product-img-wrap {
    position: relative;
    background: #f9f9f9;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.04);
}

/* ---- Product Info ---- */
.product-info {
    padding: 14px 14px 16px;
}

.product-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-pricing {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-bottom: 12px;
}

.price-original {
    font-size: 0.78rem;
    color: #aaa;
    text-decoration: line-through;
    font-weight: 400;
}

.price-current {
    font-size: 1.05rem;
    font-weight: 800;
    color: #111;
}

/* ---- Add to Cart Button ---- */
.btn-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    background: black;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.18s ease;
    text-decoration: none;
}


.btn-add-cart svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.white-section{
    background: #ffffff;
    padding: 60px 0 70px;
}

.white-section .section-divider {
    width: 48px;
    height: 3px;
    background: #111;
    margin: 8px auto 6px;
    border-radius: 2px;
}
.white-section .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}
.white-section .section-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    color: #000000;
    letter-spacing: 0.02em;
}
/* ---- Responsive Grid ---- */
/* Mobile: 2 columns, Desktop: 4 columns handled by Bootstrap col classes */

@media (max-width: 575.98px) {
    .new-arrivals-section {
        padding: 40px 0 50px;
    }
    .white-section{padding:40px 0 50px;}
    .white-section .section-title{font-size: 1.5rem;}
    .new-arrivals-section .section-title {
        font-size: 1.5rem;
    }
    .product-info {
        padding: 10px 10px 12px;
    }
    .product-name {
        font-size: 0.8rem;
    }
    .price-current {
        font-size: 0.95rem;
    }
    .btn-add-cart {
        font-size: 0.75rem;
        padding: 9px 0;
    }
}

/* --brandcss--- */

  
    .brands-header{
        background:linear-gradient(90deg,#255ea8,#f0b27a);
        border-radius:20px;
        padding:70px 20px;
        text-align:center;
        margin-bottom:-30px;
    }

    .brands-header h2{
        margin:0;
        font-size:40px;
        font-weight:800;
        color:#ffffff;
        letter-spacing:2px;
    }

    .brands-grid{
        display:grid;
        grid-template-columns:repeat(4,1fr);
        gap:18px;
        position:relative;
        z-index:2;
        padding:0 25px;
    }

    .brand-card{
        background:#fff;
        border-radius:15px;
        min-height:110px;
        display:flex;
        align-items:center;
        justify-content:center;
        box-shadow:0 5px 18px rgba(0,0,0,.08);
        transition:.3s;
        text-decoration:none;
        padding:15px;
    }

    .brand-card:hover{
        transform:translateY(-5px);
    }

    .brand-card img{
        max-width:180px;
        max-height:60px;
        width:auto;
        height:auto;
        object-fit:contain;
    }

    .brand-card span{
        color:#222;
        font-weight:600;
    }

    @media(max-width:768px){

        .brands-header{
            padding:40px 15px;
        }

        .brands-header h2{
            font-size:28px;
        }

        .brands-grid{
            grid-template-columns:repeat(2,1fr);
            padding:0;
        }

        .brand-card{
            min-height:90px;
        }

        .brand-card img{
            max-width:120px;
        }
}

/* ==========================================
   Home Slider (Shortcode Customization)
   ========================================== */

/* Slider Container */
#homeSlider {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
    min-height: 400px; /* PC par height fix rakhne ke liye */
}

/* Slider Images */
#homeSlider .carousel-inner,
#homeSlider .carousel-item {
    height: 100%;
}

#homeSlider .carousel-item picture,
#homeSlider .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover; /* Isse image stretch nahi hogi, perfect fit aayegi */
}

/* Carousel Indicators (Dots) */
#homeSlider .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    margin: 0 5px;
    border: none;
}
#homeSlider .carousel-indicators button.active {
    opacity: 1;
    background-color: var(--theme-orange, #f58634);
    transform: scale(1.2);
}

/* Mobile responsive height */
@media (max-width: 768px) {
    #homeSlider {
        min-height: 200px; 
    }
}

    
    
/* ==========================================
   Trending Categories Square Box Layout
   ========================================== */
/* ==========================================
   Premium Categories Grid (Alternating Layout)
   ========================================== */

/* 2-Column Grid Setup */
.tc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Base Card Design */
.tc-card {
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 20px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.tc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* 🎯 MAGIC: Alternating Layout (Even cards text on left, image on right) */
.tc-card:nth-child(even) {
    flex-direction: row-reverse;
}

/* Image Wrapper */
.tc-img-wrap {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.tc-img-wrap img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.tc-card:hover .tc-img-wrap img {
    transform: scale(1.05); /* Hover par image zoom hogi */
}

/* Content & Typography */
.tc-content {
    flex: 0 0 55%;
    max-width: 55%;
    padding: 0 15px;
}

.tc-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.tc-icon {
    color: var(--primary-blue, #0b1b3d);
    font-size: 18px;
    background: #f0f4f8;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.tc-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-blue, #0b1b3d);
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Subcategory List (Bullets) */
.tc-subcat-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.tc-subcat-list li {
    font-size: 13px;
    color: #555555;
    margin-bottom: 6px;
    position: relative;
    padding-left: 14px;
    font-weight: 500;
}

.tc-subcat-list li::before {
    content: "•";
    color: var(--theme-orange, #f58634);
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: -4px;
}

/* View Products Link */
.tc-view-btn {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-blue, #0b1b3d);
    text-decoration: none;
    transition: color 0.2s ease;
}

.tc-view-btn:hover {
    color: var(--theme-orange, #f58634);
}

/* ==========================================
   Responsive Logic (Mobile & Tablet)
   ========================================== */
@media (max-width: 991px) {
    .tc-grid {
        grid-template-columns: 1fr; /* Tablet par 1 column */
    }
}

@media (max-width: 575px) {
    /* Mobile par saare cards straight ho jayenge */
    .tc-card, .tc-card:nth-child(even) {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .tc-img-wrap, .tc-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .tc-title-wrap {
        flex-direction: column;
        justify-content: center;
    }
    
    .tc-subcat-list li {
        text-align: left;
        display: inline-block;
        width: 100%;
    }
    
    .tc-img-wrap img {
        max-height: 130px;
        margin-bottom: 15px;
    }
}