/* ===== Shared product card styles (used by category/subcategory grid AND homepage minimal sliders) ===== */
.category-product .product_item,
.minimal_item {
    position: relative;
    background: #fff;
}

.category-product .pro_img,
.minimal_item .pro_img {
    height: 340px;
    position: relative;
    overflow: hidden;
    background: #f7f7f7;
    margin-bottom: 14px;
}

.category-product .pro_img a,
.minimal_item .pro_img a {
    display: block;
    height: 100%;
}

.category-product .pro_img img,
.minimal_item .pro_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.category-product .pro_img:hover img,
.minimal_item:hover .pro_img img {
    transform: scale(1.04);
}

.category-product .pro_des,
.minimal_item .pro_des {
    text-align: center;
    padding: 0 4px;
}

.category-product .pro_name a,
.minimal_item .pro_name a {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1a2b4c;
    line-height: 1.6;
    text-decoration: none;
    margin-bottom: 6px;
}

.category-product .pro_price p,
.minimal_item .pro_price p {
    font-size: 14px;
    color: #1a2b4c;
    margin: 0;
}

.category-product .pro_price del,
.minimal_item .pro_price del {
    color: #aaa;
    margin-right: 6px;
    font-size: 12px;
    font-weight: 400;
}

.category-product .sale-badge,
.minimal_item .sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.category-product .sale-badge-box,
.minimal_item .sale-badge-box {
    background: #1a2b4c;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 3px;
    text-align: center;
    line-height: 1.3;
}

/* ===== Category / Subcategory grid (3-column) ===== */
.category-product {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
}

@media (max-width: 991px) {
    .category-product {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-product .pro_img {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .category-product {
        grid-template-columns: repeat(1, 1fr);
    }

    .category-product .pro_img {
        height: 360px;
    }
}

/* ===== Homepage minimal slider grid (5-column) ===== */
.minimal_sliders {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px 16px;
}

@media (max-width: 1200px) {
    .minimal_sliders {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .minimal_sliders {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .minimal_sliders {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 12px;
    }

    .minimal_item .pro_img {
        height: 240px;
    }
}

/* ===== View More button ===== */
.show_more_btn {
    margin-top: -6px;
}

.show_more_btn a.view_more_btn {
    background: #000 !important;
    color: #fff !important;
    border-radius: 0 !important;
    float: none;
    display: inline-block;
    padding: 12px 26px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.show_more_btn a.view_more_btn:hover {
    background: #222 !important;
}




/*brand*/


        .brand-intro {
            padding: 90px 0;
            background: #fff;
        }

        .brand-intro .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1.15fr;
            align-items: center;
            gap: 60px;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .brand-intro .intro-text h2 {
             font-family: 'Montserrat', sans-serif;
            font-size: 30px;
            letter-spacing: 2px;
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 22px;
        }

        .brand-intro .intro-text p {
            font-size: 15px;
            line-height: 1.8;
            color: #444;
            max-width: 420px;
        }

        .brand-intro .intro-img {
            width: 100%;
            aspect-ratio: 630 / 900;
            overflow: hidden;
        }

        .brand-intro .intro-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        @media (max-width: 992px) {
            .brand-intro .intro-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .brand-intro .intro-text {
                text-align: center;
            }

            .brand-intro .intro-text p {
                margin: 0 auto;
            }
        }

        @media (max-width: 576px) {
            .brand-intro {
                padding: 50px 0;
            }
        }
        
        
        
        
        
        
/*newsletter*/


        .newsletter-section {
            background: #f7f7f7;
            padding: 70px 20px;
            text-align: center;
        }

        .newsletter-section h2 {
             font-family: 'Montserrat', sans-serif;
            font-size: 26px;
            letter-spacing: 2px;
            font-weight: 500;
            color: #1a1a1a;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .newsletter-section p {
            font-size: 15px;
            color: #444;
            max-width: 560px;
            margin: 0 auto 30px;
            line-height: 1.7;
        }

        .newsletter-form {
            display: inline-flex;
            max-width: 420px;
            width: 100%;
        }

        .newsletter-form input[type="email"] {
            flex: 1;
            border: 1px solid #ddd;
            background: #fff;
            padding: 0 16px;
            height: 46px;
            font-size: 13px;
            outline: none;
        }

        .newsletter-form button {
            background: #000;
            color: #fff;
            border: none;
            padding: 0 24px;
            height: 46px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            white-space: nowrap;
        }

        .newsletter-form button:hover {
            background: #222;
        }

        .newsletter-form button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .newsletter-msg {
            display: none;
            margin: 0 auto;
            max-width: 420px;
            padding: 12px 20px;
            border-radius: 4px;
            font-size: 14px;
            text-align: center;
        }

        .newsletter-msg.success {
            display: block;
            color: #2e8b57;
            border: 1px solid #2e8b57;
            background: rgba(46, 139, 87, 0.06);
        }

        .newsletter-msg.error {
            display: block;
            color: #c0392b;
            border: 1px solid #c0392b;
            background: rgba(192, 57, 43, 0.06);
        }

        @media (max-width: 576px) {
            .newsletter-form {
                flex-direction: column;
                max-width: 320px;
            }

            .newsletter-form input[type="email"] {
                height: 44px;
                margin-bottom: 10px;
                border-radius: 0;
            }

            .newsletter-form button {
                height: 44px;
            }
        }
        
        
 /*details page start*/
 
 /* Color & Size selector groups */
.pro-color .size_inner > p,
.pro-size .size_inner > p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.pro-color .size-container .selector,
.pro-size .size-container .selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.selector-item {
    position: relative;
}

.selector-item_radio {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
}

.selector-item_label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 42px;
    padding: 0 16px;
    border: 1px solid #d8d8d8;
 
    font-size: 14px;
    color: #333;
    background: #fff;
    cursor: pointer;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.selector-item_radio:hover + .selector-item_label {
    border-color: #999;
}

.selector-item_radio:checked + .selector-item_label {
    border: 2px solid #111;
    font-weight: 600;
    padding: 0 15px; /* compensate for thicker border so size doesn't jump */
}

.selector-item_radio:disabled + .selector-item_label {
    opacity: .4;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Static info lines */
.static-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 18px 0;
}

.static-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

.static-info-item svg {
    flex-shrink: 0;
}

.static-info-item .stock-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #2ecc71;
    display: inline-block;
    flex-shrink: 0;
}
