.crp-grid{
    display:grid;
    gap:var(--crp-grid-gap, 24px);
}

.columns-1{
    grid-template-columns:1fr;
}

.columns-4{
    grid-template-columns:repeat(4,1fr);
}

.columns-6{
    grid-template-columns:repeat(6,1fr);
}

.columns-5{
    grid-template-columns:repeat(5,1fr);
}

.columns-3{
    grid-template-columns:repeat(3,1fr);
}

.columns-2{
    grid-template-columns:repeat(2,1fr);
}

/* Product Card */
.crp-product{
    position:relative;
    border:1px solid #eee;
    border-radius:0;
    overflow:hidden;
    background:#fff;
}

.crp-product-no-border{
    border-color:transparent;
}

.crp-product a{
    color:#000;
    text-decoration:none;
}

.crp-product a:hover{
    color:#cf0a2c;
}

.crp-product img{
    width:100%;
    display:block;
    aspect-ratio:var(--crp-card-image-ratio, 1/1);
    object-fit:contain;
    border-radius:0;
}

.crp-sale-badge{
    position:absolute;
    top:12px;
    left:12px;
    z-index:2;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:26px;
    padding:0 10px;
    border-radius:0;
    background:#cf0a2c;
    color:#fff;
    font-size:12px;
    font-weight:700;
    line-height:1;
    pointer-events:none;
}

.crp-product-category{
    padding:16px 16px 0;
    margin:0;
    color:#cf0a2c;
    font-size:14px;
    font-weight:500;
    line-height:1.3;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.crp-product-category-link{
    color:inherit;
    text-decoration:none;
}

.crp-product-category-link:hover{
    color:#cf0a2c;
}

.crp-product h3{
    padding:8px 16px 0;
    margin:0;
    font-family:"Londrina Solid", sans-serif;
    font-size:22px;
    font-weight:400;
    line-height:1.15;
    color:#000;
}

.crp-product h3:hover{
    color:#cf0a2c;
}

.crp-price{
    padding:8px 16px 16px;
    font-weight:bold;
    color:#cf0a2c;
}

.crp-price-wrap{
    display:flex;
    flex-wrap:wrap;
    align-items:baseline;
    gap:8px;
}

.crp-regular-price{
    color:#777;
    font-weight:500;
    text-decoration:line-through;
    text-decoration-thickness:1.5px;
    text-decoration-color:currentColor;
}

.crp-sale-price,
.crp-current-price{
    color:#cf0a2c;
    font-weight:700;
    text-decoration:none;
}

.crp-price ins{
    background:transparent;
}

/* Product Sections */
.crp-related-products,
.crp-best-seller-products{
    width:100%;
}

.crp-related-title,
.crp-best-seller-title{
    margin:0 0 24px;
    color:#000;
    font-family:"Londrina Solid", sans-serif;
    font-size:32px;
    font-weight:400;
    line-height:1.1;
}

/* Pagination */
.crp-pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    margin:48px auto 24px;
}

.crp-page-button,
.crp-page-dots{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:42px;
    height:42px;
    padding:0 14px;
    border:1px solid #ddd;
    border-radius:0;
    background:transparent;
    color:#000;
    font-size:14px;
    font-weight:500;
    line-height:1;
    text-decoration:none;
    transition:all .2s ease;
}

.crp-page-button:hover{
    border-color:#cf0a2c;
    color:#cf0a2c;
}

.crp-page-button.crp-active{
    background:#000;
    border-color:#000;
    color:#fff;
}

.crp-page-arrow{
    font-size:18px;
}

.crp-disabled{
    opacity:.35;
    pointer-events:none;
}

.crp-page-dots{
    border-color:transparent;
    padding:0 6px;
    min-width:auto;
    color:#000;
}

/* Single Product */
.crp-single-product{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    max-width:1200px;
    margin:60px auto;
    color:#000;
}

.crp-single-image-wrap{
    position:relative;
    display:block;
    width:100%;
}

.crp-gallery img{
    width:100%;
    border-radius:0;
}

.crp-single-image{
    width:100%;
    display:block;
    border-radius:0;
}

.crp-gallery-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.crp-gallery-grid img{
    width:100%;
    display:block;
    aspect-ratio:1/1;
    object-fit:contain;
    border-radius:0;
}

/* Buttons */
.crp-direct-cart-form{
    display:inline-block;
    margin:0;
}

.crp-direct-cart-button{
    cursor:pointer;
}

.crp-direct-cart-button.is-loading{
    opacity:.72;
    pointer-events:none;
}

.crp-buy-button,
.crp-direct-cart-button,
.crp-page-button{
    border-radius:0;
}

/* Tablet */
@media(max-width:1024px){
    .crp-grid{
        grid-template-columns:repeat(var(--crp-tablet-columns, 2), minmax(0, 1fr));
    }
}

/* Mobile */
@media(max-width:767px){
    .crp-grid{
        grid-template-columns:repeat(var(--crp-mobile-columns, 1), minmax(0, 1fr));
    }

    .crp-product-category{
        padding:14px 14px 0;
        font-size:12px;
    }

    .crp-product h3{
        padding:7px 14px 0;
        font-size:19px;
    }

    .crp-sale-badge{
        top:10px;
        left:10px;
        min-height:24px;
        padding:0 8px;
        font-size:11px;
    }

    .crp-related-title,
    .crp-best-seller-title{
        margin-bottom:18px;
        font-size:26px;
    }

    .crp-pagination{
        gap:6px;
        margin-top:32px;
    }

    .crp-page-button,
    .crp-page-dots{
        min-width:36px;
        height:36px;
        padding:0 10px;
        font-size:13px;
    }

    .crp-single-product{
        grid-template-columns:1fr;
    }
}
