.ps-block--product-box .ps-block__header {
    border: none!important;
}

 /* --------------------------
  ------- Feature Product Start----
  ----------------------------*/
    /* Header container */
    .feature-header {
        padding: 0.5rem 1rem;
    }

    /* Title styling */
    .ps-block__title {
        font-weight: 700;
        font-size: 1.6rem;
        position: relative;
        color: #333;
    }

    /* Underline for title in red */
    .ps-block__title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 60%;
        height: 3px;
        background: #ec1d24; /* your red color */
        border-radius: 2px;
    }
    .custom-owl-nav button {
        background: #fff;
        border: 1px solid #ddd;
        width: 28px;       /* smaller width */
        height: 28px;      /* smaller height */
        padding: 0;        /* remove extra padding */
        border-radius: 50%;
        cursor: pointer;
        font-size: 14px;   /* smaller icon */
        color: #ec1d24;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }
    .custom-owl-nav button:hover {
        background: #ec1d24;
        color: #fff;
    }

    .custom-owl-nav {
        display: flex;
        gap: 10px;
    }

 /* --------------------------
  ------- Feature Product End ----
  ----------------------------*/


   /* --------------------------
  ------- Exclusive Product Start----
  ----------------------------*/
    /* Header container */
    .exclusive-header {
        padding: 0.5rem 1rem;
        border-bottom: 2px solid #eee;
    }

    /* Title with underline always active */
    .ps-block__title {
        font-weight: 700;
        font-size: 1.6rem;
        position: relative;
        color: #333;
    }
    /* Always active underline in your color */
    .ps-block__title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 60%;
        height: 3px;
        background: #ec1d24; /* your red color */
        border-radius: 2px;
    }

    /* View All button always “hovered” style in your color */
    .ps-block__view-all {
        font-weight: 500;
        font-size: 12px;
        padding: 0.4rem 1rem;
        border-radius: 50px;
        background: #ec1d24; /* your red color */
        color: #fff;
        text-decoration: none;
        box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        transform: translateY(-2px); /* lifted like hover */
    }
    .ps-block__view-all:hover {
        color:#000;
    }
    /* ==== CARD GRID GAP ==== */
    .row.g-4 {
        row-gap: 25px;
    }

    /* ==== PRODUCT CARD ==== */
    .custom-product-card {
        background: #fff;
        border-radius: 20px;
        padding: 18px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.05);
        transition: 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .custom-product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

    /* ==== DISCOUNT BADGE ==== */
    .discount-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: #ffe8e8;
        color: #ec1d24;
        font-size: 12px;
        font-weight: 600;
        padding: 4px 10px;
        border-radius: 20px;
    }

    /* ==== IMAGE ==== */
    .product-img {
        text-align: center;
        margin-bottom: 12px;
    }

    .product-img img {
        width: 100%!important;
        height: 100px;
        object-fit: contain;
    }

    /* ==== TITLE ==== */
    .product-title {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 4px;
        line-height: 1.4;
    }

    .product-title a {
        text-decoration: none;
        color: #111;
        transition: 0.3s ease;
    }

    .product-title a:hover {
        color: #ec1d24;   /* 🔥 your theme red */
    }

    /* ==== STOCK ==== */
    .stock-status {
        font-size: 12px;
        margin-bottom: 6px;
    }
    .in-stock { color: green; }
    .out-stock { color: #ec1d24; }

    /* ==== PRICE ==== */
    .price-area {
        margin-bottom: 12px;
    }

    .new-price {
        font-size: 16px;
        font-weight: 700;
        color: #111;
    }

    .old-price {
        font-size: 13px;
        color: #999;
        text-decoration: line-through;
        margin-left: 6px;
    }

    /* ==== CART AREA ==== */
    .cart-area {
        display: flex;
        gap: 8px;
        margin-top: auto;
    }

    .add-to-cart-button_single {
        flex: 1;
        background: #f1f1f1;
        border: none;
        border-radius: 30px;
        padding: 8px;
        font-size: 13px;
        transition: 0.3s;
    }

    .add-to-cart-button_single:hover {
        background: #ec1d24;
        color: #fff;
    }

    .wishlist-btn {
        width: 38px;
        border: none;
        background: #f1f1f1;
        border-radius: 50%;
        transition: 0.3s;
    }

    .wishlist-btn:hover {
        background: #ec1d24;
        color: #fff;
    }
    .ps-block--product-box .ps-block__products .row.custom-gutter > .col-3 {
        padding-left: 12px !important;
        padding-right: 12px !important;
        margin-bottom: 25px !important;
    }

    .ps-block--product-box .ps-block__products .row.custom-gutter > .col-3:nth-child(4n+1) {
        padding-left: 0 !important;
    }

    .ps-block--product-box .ps-block__products .row.custom-gutter > .col-3:nth-child(4n) {
        padding-right: 0 !important;
    }

    /* ==== SKELETON ==== */
    .skeleton-card { background: #f1f1f1; border-radius: 20px; padding: 18px; height: 100%; display: flex; flex-direction: column; position: relative; overflow: hidden; }
    .skeleton-card::after {
        content: "";
        position: absolute;
        top: 0;
        left: -150px;
        width: 150px;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        animation: shimmer 1.2s infinite;
    }
    @keyframes shimmer { 0% { left: -150px; } 100% { left: 100%; } }
    .skeleton-img { width: 100%; height: 100px; background: #e0e0e0; border-radius: 10px; margin-bottom: 12px; }
    .skeleton-title { width: 80%; height: 14px; background: #e0e0e0; border-radius: 4px; margin-bottom: 6px; }
    .skeleton-stock { width: 50%; height: 12px; background: #e0e0e0; border-radius: 4px; margin-bottom: 6px; }
    .skeleton-price { width: 40%; height: 16px; background: #e0e0e0; border-radius: 4px; margin-bottom: 12px; }
    .skeleton-buttons { display: flex; gap: 8px; }
    .skeleton-btn { flex: 1; height: 28px; background: #e0e0e0; border-radius: 30px; }
    .skeleton-btn-round { width: 38px; }
    /* --------------------------
  ------- Exclusive Product End----
  ----------------------------*/
    @media (max-width: 1199px) {
        .skeletonbanner {
            margin: 0px 20px;
        }
        .ps-section__center {
            padding: 0px 20px;
        }
        .feature-area {
            padding: 0px 20px;
        }
        .box {
            padding: 0px 20px;
        }
        .ps-block--product-box .ps-block__products .row > * {
            padding: 0px;
        }
    }
