/*=====================================================
        DWARKADHEESH VASTU SHOP
======================================================*/

:root{

    --primary:#7d1238;
    --secondary:#d4af37;
    --dark:#151515;
    --light:#fafafa;
    --gray:#666;
    --border:#ececec;

}


/*=====================================================
HERO
======================================================*/

.shop-hero{

    position:relative;

    min-height:250px;

    display:flex;

    align-items:center;

    background-size:cover;

    background-position:center;

    overflow:hidden;

}

.shop-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(90deg,
        rgba(7,20,45,.92),
        rgba(7,20,45,.78),
        rgba(7,20,45,.25));

}

.shop-hero .container{

    position:relative;

    z-index:2;

}

.shop-hero-content{

    color:#fff;

    max-width:700px;

}

.shop-hero-content h1{

    font-size:58px;

    margin:0px 0;

    font-weight:700;

    line-height:1.2;

}

.shop-hero-content p{

    font-size:15px; 

    color:#eee;

}

/*=====================================================
BREADCRUMB
======================================================*/

.breadcrumb{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    align-items:center;

}

.breadcrumb a{

    color:#fff;

    text-decoration:none;

}

.breadcrumb span{

    color:#ddd;

}

/*=====================================================
SHOP
======================================================*/

.shop-section{

    padding:50px 0;

    background:#f8f8f8;

}

.shop-wrapper{

    display:grid;

    grid-template-columns:300px 1fr;

    gap:40px;

    align-items:start;

}

/*=====================================================
SIDEBAR
======================================================*/

.shop-sidebar{

    position:sticky;

    top:110px;

}

/*=====================================================
FILTER BOX
======================================================*/

.filter-box{

    background:#fff;
    border-radius:18px;
    padding:20px;
    margin-bottom:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    border:1px solid var(--border);

}

.filter-box h3{

    font-size:20px;
    margin:0px 0px 10px 0px !important;
    color:var(--primary);

}

/*=====================================================
SEARCH
======================================================*/

.search-input{

    width:100%;

    height:48px;

    border:1px solid #ddd;

    border-radius:10px;

    padding:0 15px;

    font-size:15px;

    transition:.35s;

}

.search-input:focus{

    border-color:var(--primary);

    outline:none;

}

/*=====================================================
CATEGORY LIST
======================================================*/

.category-list{

    list-style:none;

    margin:0;

    padding:0;

}

.category-list li{

    margin-bottom:12px;

}

.category-list a{

    display:flex;

    justify-content:space-between;

    align-items:center;

    text-decoration:none;

    padding:10px;

    border-radius:12px;

    color:#333;

    transition:.3s;

}

.category-left{

    display:flex;

    align-items:center;

    gap:12px;

}

.category-list img{

    width:42px;

    height:42px;

    border-radius:8px;

    object-fit:cover;

}

.category-list strong{

    font-size:15px;

}

.category-list span{

    width:30px;

    height:30px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#efefef;

    font-size:12px;

    font-weight:700;

}

.category-list a:hover{

    background:#f8edf2;

}

.category-list a.active{

    background:var(--primary);

    color:#fff;

}

.category-list a.active span{

    background:#fff;

    color:var(--primary);

}

/*=====================================================
PRICE
======================================================*/

.price-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:12px;

}

.price-grid input{

    width:100%;

    height:46px;

    border:1px solid #ddd;

    border-radius:8px;

    padding:0 12px;

}

.price-note{

    margin-top:12px;

    color:#777;

    font-size:13px;

}

/*=====================================================
SORT
======================================================*/

.sort-select{

    width:100%;

    height:48px;

    border:1px solid #ddd;

    border-radius:8px;

    padding:0 12px;

}

/*=====================================================
CONSULT CARD
======================================================*/

.consult-card{

    background:linear-gradient(135deg,
        #7d1238,
        #a61f4d);

    border-radius:20px;

    padding:30px;

    text-align:center;

    color:#fff;

}

.consult-card h3{

    color:#fff;

    margin-bottom:15px;

}

.consult-card p{

    color:#f1f1f1;

    margin-bottom:20px;

}

.consult-card .btn{

    width:100%;

    margin-bottom:12px;

}

/*=====================================================
CONTENT
======================================================*/

.shop-content{

    width:100%;

}

/*=====================================================
TOOLBAR
======================================================*/

.shop-toolbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:#fff;

    padding:0px 20px;

    border-radius:18px;

    margin-bottom:35px;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

}

.toolbar-left h2{

    font-size:32px;

    margin-bottom:6px;

}

.toolbar-left p{

    color:#666;

}

/*=====================================================
            PRODUCT GRID
======================================================*/

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:30px;
}

/*=====================================================
            PRODUCT CARD
======================================================*/

.product-card{
    position:relative;
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    border:1px solid #ececec;
    box-shadow:0 15px 40px rgba(0,0,0,.07);
    transition:all .35s ease;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 70px rgba(0,0,0,.16);
}

/*=====================================================
IMAGE
======================================================*/

.product-image{
    position:relative;
    overflow:hidden;
    background:#fafafa;
}

.product-image img{
    width:100%;
    height:160px;
    object-fit:cover;
    transition:.6s;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}

.product-image::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.08);
    opacity:0;
    transition:.35s;
    z-index:1;
}

.product-card:hover .product-image::before{
    opacity:1;
}

.product-image::after{
    content:"View";
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    background:rgba(0,0,0,.75);
    color:#fff;
    padding:10px 18px;
    border-radius:40px;
    font-size:13px;
    opacity:0;
    transition:.35s;
    z-index:2;
}

.product-card:hover .product-image::after{
    opacity:1;
}

/*=====================================================
SALE BADGE
======================================================*/

.sale-badge{
    position:absolute;
    top:10px;
    right:10px;
    background:#ffef00;
    color:#111;
    padding:0px 8px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    z-index:5;
    box-shadow:0 10px 20px rgba(0,0,0,.15);
}

/*=====================================================
STOCK BADGE
======================================================*/

.stock-badge{
    position:absolute;
    top:15px;
    left:15px;
    padding:2px 9px;
    border-radius:30px;
    font-size:11px;
    font-weight:600;
    color:#fff;
    z-index:5;
}

.stock-badge.in{
    background:#1a9b4a;
}

.stock-badge.out{
    background:#d63c3c;
}

/*=====================================================
BODY
======================================================*/

.product-body{
    padding:20px;
}

.product-category{
    display:inline-block;
    background:#f8edf2;
    color:#7d1238;
    padding:5px 14px;
    border-radius:30px;
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:15px;
}

.product-body h3{
    margin:0 0 10px;
    font-size:16px;
    line-height:1.4;
    min-height:auto;
}

.product-body h3 a{
    color:#111;
    text-decoration:none;
    transition:.3s;
}

.product-body h3 a:hover{
    color:#7d1238;
}

/*=====================================================
RATING
======================================================*/

.rating{
    color:#ffb400;
    font-size:14px;
    margin-bottom:12px;
}

.rating span{
    color:#777;
    margin-left:5px;
}

/*=====================================================
DESCRIPTION
======================================================*/

.product-body p{
    color:#666;
    font-size:14px;
    line-height:1.7;
    margin-bottom:15px;
    min-height:auto;
}

/*=====================================================
PRICE
======================================================*/

.price-box{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
}

.old-price{
    text-decoration:line-through;
    color:#999;
    font-size:15px;
}

.new-price{
    font-size:20px;
    font-weight:700;
    color:#7d1238;
}

/*=====================================================
PRODUCT META
======================================================*/

.product-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
    margin-bottom:18px;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
    font-size:13px;
    color:#666;
}

.product-meta span{
    white-space:nowrap;
}

/*=====================================================
BUTTONS
======================================================*/

.product-buttons{
    display:flex;
    gap:10px;
}

.btn-cart{
    flex:1;
    height:42px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    background:#7d1238;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    transition:.35s;
}

.btn-cart:hover{
    background:#111;
    color:#fff;
}

.btn-view{
    width:95px;
    height:42px;
    display:flex;
    justify-content:center;
    align-items:center;
    border:1px solid #7d1238;
    color:#7d1238;
    border-radius:50px;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    transition:.35s;
}

.btn-view:hover{
    background:#7d1238;
    color:#fff;
}

/*=====================================================
EMPTY PRODUCTS
======================================================*/

.empty-products{
    grid-column:1/-1;
    background:#fff;
    border-radius:20px;
    padding:80px 40px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.empty-products img{
    max-width:180px;
    margin-bottom:25px;
}

.empty-products h2{
    margin-bottom:12px;
    font-size:34px;
}

.empty-products p{
    color:#666;
    margin-bottom:25px;
    font-size:16px;
}

/*=====================================================
WHY SHOP
======================================================*/

.why-shop{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-item{
    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:.35s;
}

.why-item:hover{
    transform:translateY(-8px);
}

.why-item i{
    font-size:42px;
    color:#7d1238;
    margin-bottom:18px;
}

.why-item h4{
    margin-bottom:10px;
    font-size:20px;
}

.why-item p{
    color:#666;
    line-height:1.7;
}

/*=====================================================
                PAGINATION
======================================================*/

.pagination-wrapper{
    margin-top:60px;
    display:flex;
    justify-content:center;
}

.pagination{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.pagination a{
    min-width:45px;
    height:45px;
    padding:0 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#333;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    border:1px solid #ececec;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.35s;
}

.pagination a:hover,
.pagination a.active{
    background:#7d1238;
    color:#fff;
    border-color:#7d1238;
    transform:translateY(-3px);
}

/*=====================================================
BUTTONS
======================================================*/

.btn,
.btn-cart,
.btn-view{
    transition:all .35s ease;
}

.btn:hover,
.btn-cart:hover,
.btn-view:hover{
    transform:translateY(-3px);
}

/*=====================================================
FORM ELEMENTS
======================================================*/

input,
select,
textarea{
    transition:.35s;
}

input:focus,
select:focus,
textarea:focus{
    outline:none;
    border-color:#7d1238;
    box-shadow:0 0 0 4px rgba(125,18,56,.08);
}

/*=====================================================
SCROLLBAR
======================================================*/

::-webkit-scrollbar{
    width:8px;
    height:8px;
}

::-webkit-scrollbar-thumb{
    background:#7d1238;
    border-radius:50px;
}

::-webkit-scrollbar-track{
    background:#efefef;
}

/*=====================================================
ANIMATION
======================================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.product-card{

    animation:fadeUp .7s ease both;

}

/*=====================================================
HOVER GLOW
======================================================*/

.product-card:hover{

    border-color:#d4af37;

}

.new-price{

    text-shadow:0 0 8px rgba(125,18,56,.15);

}

/*=====================================================
SHOP SIDEBAR MOBILE
======================================================*/

@media(max-width:992px){

.shop-wrapper{

grid-template-columns:1fr;

}

.shop-sidebar{

position:relative;

top:0;

order:2;

}

.shop-content{

order:1;

}

.shop-toolbar{

flex-direction:column;

align-items:flex-start;

gap:20px;

}

}

/*=====================================================
4 → 3 COLUMNS
======================================================*/

@media(max-width:1200px){

.product-grid{

grid-template-columns:repeat(3,1fr);

}

}

/*=====================================================
3 → 2 COLUMNS
======================================================*/

@media(max-width:991px){

.product-grid{

grid-template-columns:repeat(2,1fr);

}

.why-shop{

grid-template-columns:repeat(2,1fr);

}

.shop-hero{

min-height:260px;

}

.shop-hero-content h1{

font-size:42px;

}

}

/*=====================================================
MOBILE
======================================================*/

@media(max-width:767px){

.shop-section{

padding:50px 0;

}

.shop-toolbar{

padding:20px;

}

.toolbar-left h2{

font-size:28px;

}

.shop-hero-content h1{

font-size:34px;

}

.shop-hero-content p{

font-size:15px;

}

.product-image img{

height:240px;

}

.filter-box{

padding:20px;

}

}

/*=====================================================
SMALL MOBILE
======================================================*/

@media(max-width:576px){

.product-grid{

grid-template-columns:1fr;

gap:20px;

}

.why-shop{

grid-template-columns:1fr;

}

.product-buttons{

flex-direction:column;

}

.btn-view{

width:100%;

}

.shop-hero{

min-height:220px;

}

.shop-hero-content h1{

font-size:30px;

}

.shop-hero-content p{

font-size:15px;

}

.price-grid{

grid-template-columns:1fr;

}

.pagination{

justify-content:center;

}

.shop-toolbar{

padding:18px;

}

.toolbar-left h2{

font-size:24px;

}

}

/*=====================================================
PRINT
======================================================*/

@media print{

.shop-sidebar,
.pagination-wrapper,
.product-buttons,
.consult-card{

display:none;

}

.shop-wrapper{

display:block;

}

.product-grid{

display:block;

}

.product-card{

margin-bottom:20px;

page-break-inside:avoid;

}

}

/*=====================================================
LOADING SHIMMER
======================================================*/

.loading{

position:relative;

overflow:hidden;

background:#f7f7f7;

}

.loading::before{

content:"";

position:absolute;

top:0;

left:-100%;

width:100%;

height:100%;

background:linear-gradient(
90deg,
transparent,
rgba(255,255,255,.65),
transparent
);

animation:loading 1.4s infinite;

}

@keyframes loading{

100%{

left:100%;

}

}

/*=====================================================
IMAGE EFFECT
======================================================*/

.product-image{

cursor:pointer;
max-height: 160px;
}

/*=====================================================
SMOOTH SCROLL
======================================================*/

html{

scroll-behavior:smooth;

}

/*=====================================================
UTILITY
======================================================*/

.text-center{

text-align:center;

}

.mt-30{

margin-top:30px;

}

.mb-30{

margin-bottom:30px;

}

.rounded{

border-radius:20px;

}

/*=====================================================
END OF PRODUCTS CSS
======================================================*/
/* Product sidebar compact category links */
.shop-sidebar .category-list li { margin-bottom: 6px; }
.shop-sidebar .category-list a { padding: 8px 9px; border-radius: 8px; gap: 10px; }
.shop-sidebar .category-list img { width: 34px; height: 34px; border-radius: 7px; }
.shop-sidebar .category-list strong { font-size: 13px; line-height: 1.25; }
.shop-sidebar .category-list span { width: 28px; height: 28px; font-size: 12px; flex: 0 0 auto; }

/* Product category sidebar single filter card */
.shop-sidebar .product-filter-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}
.shop-sidebar .product-filter-card .filter-box{
    background:transparent;
    border:0;
    border-radius:0;
    box-shadow:none;
    margin:0;
    padding:0 0 18px;
}
.shop-sidebar .product-filter-card .filter-box + .filter-box{
    border-top:1px solid var(--border);
    padding-top:18px;
}
.shop-sidebar .product-filter-card .filter-box:last-child{
    padding-bottom:0;
}
.shop-sidebar .product-filter-card .filter-box h3{
    font-size:16px;
    margin-bottom:10px !important;
}
/* Product listing compact card and sidebar refinements */
.shop-sidebar{
    position:static !important;
    top:auto !important;
}
.shop-sidebar > form > .filter-box{
    margin-bottom:18px;
}
.product-grid{
    gap:22px;
}
.product-card{
    border-radius:14px;
}
.product-card:hover{
    transform:translateY(-6px);
}
.product-image{
    max-height:none;
}
.product-image img{
    width:100%;
    height:160px;
    object-fit:cover;
    display:block;
}
.product-body{
    padding:12px 14px 14px;
}
.product-body h3{
    margin-bottom:7px;
    font-size: 16px;
    line-height:1.3;
}
.product-body p{
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    min-height:39px;
    margin-bottom:10px;
    line-height:1.5;
    font-size:13px;
}
.price-box{
    margin-bottom:12px;
}
.new-price{
    font-size:18px;
}
.product-buttons{
    gap:8px;
}
.btn-cart,
.btn-view{
    height:38px;
}
@media(max-width:767px){
    .product-image img{height:160px;}
}
/* Missing product image fallback */
.product-image a{
    display:block;
    height:;
    text-decoration:none;
}
.product-image.no-product-image{
    background:#02133f !important;
    height:160px;
    min-height:160px !important;
}
.product-image.no-product-image a{
    width:100%;
    height:160px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:18px;
    text-align:center;
}
.product-image.no-product-image .missing-product-title{
    color:#fff;
    font-size:20px;
    line-height:1.25;
    font-weight:700;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.product-card:hover .product-image.no-product-image::before,
.product-card:hover .product-image.no-product-image::after{
    opacity:0;
}
@media(max-width:767px){
    .product-image.no-product-image,
    .product-image.no-product-image a{
        height:160px;
        min-height:160px;
    }
}
/* Product name font size consistency */
.product-body h3,
.product-body h3 a,
.home-featured-product-body h3,
.home-featured-product-body h3 a,
.featured-product-body h3,
.featured-product-body h3 a,
.account-product h3,
.cart-product h3,
.checkout-product h4 {
    font-size: 16px;
}
/* ===== Premium category page refinements ===== */
.premium-shop-hero{background:linear-gradient(125deg,#052f25 0%,#006c42 58%,#009c4a 100%)!important;min-height:300px}.premium-shop-hero:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 80% 20%,rgba(229,189,115,.22),transparent 28%),linear-gradient(90deg,rgba(0,0,0,.18),transparent)}.premium-shop-hero .shop-overlay{display:none}.premium-shop-hero .container{position:relative}.shop-hero-content h1{font-family:"Playfair Display";color:#fff}.shop-hero-content p,.shop-hero-content .breadcrumb,.shop-hero-content .breadcrumb a{color:#d9e9e2}
.shop-sidebar form{display:flex;flex-direction:column}.shop-sidebar .search-filter-box{order:1}.shop-sidebar .product-filter-card{order:2;margin-bottom:18px;border-radius:4px;border-color:#dfe7e2;box-shadow:0 14px 35px rgba(6,63,46,.07)}.shop-sidebar .sidebar-categories-box{order:3}.shop-sidebar .filter-box h3{font-family:"Playfair Display";color:#063f2e}.search-input,.sort-select,.price-grid input{border-color:#d5e1dc!important;border-radius:3px!important}.search-input:focus,.sort-select:focus,.price-grid input:focus{border-color:#009c4a!important;box-shadow:0 0 0 3px rgba(0,156,74,.10)}.shop-sidebar input[type=radio]{accent-color:#009c4a}.shop-sidebar .btn.primary{background:#063f2e!important;border-color:#063f2e!important;border-radius:2px!important}.shop-sidebar .btn.primary:hover{background:#d5232a!important;border-color:#d5232a!important}.category-list a.active{background:#063f2e!important;color:#fff!important}.category-list a:hover{border-color:#009c4a!important;color:#006c42}.shop-toolbar{border-radius:3px!important;border-color:#e4e1d9!important}.toolbar-left h3{font-family:"Playfair Display";color:#063f2e}
.product-grid{gap:20px!important}.product-card{border-radius:3px!important;overflow:hidden;border:1px solid #e4e1d9!important;background:#fff;box-shadow:0 10px 30px rgba(6,63,46,.06)}.product-image{height:310px!important;min-height:310px!important;max-height:none!important;background:#fff}.product-image>a{height:100%!important}.product-image img{width:100%!important;height:100%!important;object-fit:contain!important;padding:0!important;margin:0!important}.product-body{padding:17px 16px 18px!important}.product-body h3{height:44px;margin:0 0 12px!important;font-family:"Playfair Display";font-size:16px!important;overflow:hidden}.product-body>p{display:none!important}.price-box{border-top:1px solid #eeeae2;padding-top:12px;margin-bottom:14px!important}.new-price{color:#d5232a!important}.old-price{color:#89938e!important}.product-buttons{display:grid!important;grid-template-columns:1fr 42px 58px;gap:7px!important}.btn-cart,.btn-view,.btn-wishlist{height:40px!important;border-radius:2px!important;display:flex;align-items:center;justify-content:center;border:0;text-decoration:none;font-weight:700;cursor:pointer}.btn-cart{background:#063f2e!important;color:#fff!important}.btn-cart:hover{background:#006c42!important}.btn-view{background:#f2eee6!important;color:#063f2e!important}.btn-wishlist{background:#fff;border:1px solid #d9dfdb;color:#063f2e}.btn-wishlist:hover,.btn-wishlist.active{background:#d5232a;color:#fff;border-color:#d5232a}.cart-count-badge{display:inline-flex;align-items:center;justify-content:center}.cart-count-badge.cart-pulse{animation:cartPulse .45s ease}@keyframes cartPulse{50%{transform:scale(1.45);background:#e5bd73}}
@media(max-width:767px){.product-image{height:270px!important;min-height:270px!important}.premium-shop-hero{min-height:240px}.product-buttons{grid-template-columns:1fr 42px 58px}}

/* Product card click and action refinements */
.product-image::before,
.product-image::after {
    pointer-events: none;
}

.product-image > a {
    position: relative;
    z-index: 3;
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.product-card:hover .product-image::after {
    z-index: 4;
}

.product-buttons {
    grid-template-columns: minmax(0, 1fr) 42px !important;
}
/* Reference-style product imagery: image only; lower card design is unchanged */
.product-card .product-image {
    width:100%!important;
    height:auto!important;
    min-height:0!important;
    max-height:none!important;
    aspect-ratio:4/5;
    overflow:hidden;
    background:#f5f5f3!important;
}
.product-card .product-image>a {display:block;width:100%;height:100%!important}
.product-card .product-image img {
    display:block;
    width:100%!important;
    height:100%!important;
    padding:0!important;
    margin:0!important;
    object-fit:cover!important;
    object-position:center;
}
/* Compact listing cards */
.product-card .product-image{height:auto!important;min-height:0!important;aspect-ratio:1/1!important}.product-card .product-image img{width:100%!important;height:100%!important;object-fit:cover!important;object-position:center!important}.product-body{padding:12px 13px 13px!important}.product-body h3{height:38px!important;margin:0 0 6px!important;line-height:1.2!important}.product-body .product-rating{margin-bottom:5px!important;line-height:1.1}.price-box{padding-top:7px!important;margin-bottom:8px!important}.product-buttons{gap:5px!important}.btn-cart,.btn-view,.btn-wishlist{height:36px!important}