/*======================================
KERMAN PART V4
======================================*/

*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:"Vazirmatn";

background:#f6f7fb;

color:#222;

overflow-x:hidden;

line-height:1.8;

}

/*======================================
CONTAINER
======================================*/

.container{

width:min(95%,1400px);

margin:auto;

}

/*======================================
LINKS
======================================*/

a{

text-decoration:none;

color:inherit;

}

button{

font-family:inherit;

cursor:pointer;

border:none;

outline:none;

}

input,

textarea{

font-family:inherit;

outline:none;

}

/*======================================
CUSTOM SCROLLBAR
======================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#ececec;

}

::-webkit-scrollbar-thumb{

background:#BF4646;

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#a33939;

}

/*======================================
LOADER
======================================*/

#loader{

position:fixed;

inset:0;

background:#fff;

display:flex;

justify-content:center;

align-items:center;

z-index:999999;

transition:.5s;

}

.loader-box{

display:flex;

flex-direction:column;

align-items:center;

gap:25px;

}

.loader-box img{

width:95px;

animation:none;

}

.loader-bar{

width:240px;

height:7px;

background:#ececec;

border-radius:50px;

overflow:hidden;

}

.loader-bar span{

display:block;

height:100%;

width:0;

background:#BF4646;

animation:loading 2s infinite;

}

.loader-box p{

font-size:15px;

font-weight:600;

color:#666;

}

@keyframes loading{

0%{

width:0;

}

100%{

width:100%;

}

}

@keyframes logoRotate{

0%{

transform:rotate(0);

}

100%{

transform:rotate(360deg);

}

}

/*======================================
HEADER
======================================*/

#header{

position:fixed;

top:0;

right:0;

left:0;

z-index:9999;

padding:18px 0;

transition:.35s;

background:rgba(255,255,255,.88);

backdrop-filter:blur(14px);

box-shadow:0 6px 24px rgba(0,0,0,.06);

}

#header.hide{

transform:translateY(-100%);

}

.header-container{

display:flex;

align-items:center;

justify-content:space-between;

gap:20px;

}

.logo{

display:flex;

align-items:center;

gap:14px;

}

.logo img{

width:58px;

height:58px;

object-fit:contain;

}

.logo h2{

font-size:24px;

font-weight:800;

color:#BF4646;

}

.logo span{

display:block;

font-size:13px;

color:#666;

margin-top:4px;

}
/*======================================
DESKTOP MENU
======================================*/

.desktop-menu{

display:flex;

align-items:center;

gap:35px;

}

.desktop-menu a{

position:relative;

font-size:15px;

font-weight:600;

color:#444;

transition:.3s;

}

.desktop-menu a:hover{

color:#BF4646;

}

.desktop-menu a::after{

content:"";

position:absolute;

right:0;

bottom:-8px;

width:0;

height:2px;

background:#BF4646;

transition:.3s;

}

.desktop-menu a:hover::after{

width:100%;

}

/*======================================
HEADER ACTIONS
======================================*/

.header-actions{

display:flex;

align-items:center;

gap:12px;

}

.icon-btn{

    
    display:flex;
    align-items:center;
    justify-content:center;


.icon-btn img,
.icon-btn svg,
.icon-btn i{
    width:20px;
    height:20px;
}
position:relative;

width:48px;

height:48px;

border:none;

border-radius:50%;

background:#fff;

display:flex;

justify-content:center;

align-items:center;

font-size:20px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.3s;

}

.icon-btn:hover{

background:#BF4646;

color:#fff;

transform:translateY(-3px);

}

#cartCount{

position:absolute;

top:-4px;

left:-4px;

width:22px;

height:22px;

background:#BF4646;

color:#fff;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:11px;

font-weight:700;

}

.mobile-only{

display:none;

}

/*======================================
MOBILE MENU
======================================*/

#mobileMenu{

position:fixed;

top:0;

right:-300px;

width:280px;

height:100vh;

background:#fff;

z-index:99999;

padding:120px 30px;

transition:.35s;

box-shadow:-10px 0 30px rgba(0,0,0,.12);

}

#mobileMenu.active{

right:0;

}

#mobileMenu nav{

display:flex;

flex-direction:column;

gap:22px;

}

#mobileMenu a{

font-size:17px;

font-weight:700;

color:#333;

transition:.3s;

}

#mobileMenu a:hover{

color:#BF4646;

padding-right:10px;

}

/*======================================
HERO
======================================*/

.hero{

position:relative;

height:680px;

margin-top:95px;

overflow:hidden;

border-radius:0 0 40px 40px;

}

.hero-image{

position:absolute;

inset:0;

width:100%;

height:100%;

object-fit:cover;

}

.hero-overlay{

position:absolute;

inset:0;

background:linear-gradient(

90deg,

rgba(0,0,0,.70),

rgba(0,0,0,.30)

);

}

.hero-content{

position:relative;

z-index:2;

width:min(90%,1300px);

margin:auto;

height:100%;

display:flex;

flex-direction:column;

justify-content:center;

color:#fff;

}

.hero-badge{

display:inline-flex;

width:max-content;

padding:10px 22px;

border-radius:30px;

background:rgba(255,255,255,.15);

backdrop-filter:blur(8px);

font-size:14px;

font-weight:700;

margin-bottom:22px;

}

.hero-content h1{

font-size:64px;

font-weight:900;

margin-bottom:18px;

}

.hero-content p{

font-size:20px;

color:#f2f2f2;

max-width:600px;

margin-bottom:35px;

line-height:2;

}

.hero-buttons{

display:flex;

gap:16px;

flex-wrap:wrap;

}

/*======================================
BUTTONS
======================================*/

.primary-btn,

.secondary-btn{

display:inline-flex;

justify-content:center;

align-items:center;

padding:15px 34px;

border-radius:14px;

font-size:15px;

font-weight:700;

transition:.3s;

}

.primary-btn{

background:#BF4646;

color:#fff;

}

.primary-btn:hover{

background:#a43838;

transform:translateY(-3px);

}

.secondary-btn{

background:#fff;

color:#333;

}

.secondary-btn:hover{

transform:translateY(-3px);

}

/*======================================
SEARCH
======================================*/

.search-section{

padding:50px 0;

}

.search-box{

max-width:700px;

margin:auto;

display:flex;

background:#fff;

border-radius:18px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.search-box input{

flex:1;

border:none;

padding:18px 22px;

font-size:15px;

background:transparent;

}

.search-box button{

width:70px;

background:#BF4646;

color:#fff;

font-size:20px;

transition:.3s;

}

.search-box button:hover{

background:#a43838;

}
/*======================================
CATEGORY PREMIUM V1
======================================*/

.category-section{

position:relative;



overflow:hidden;

padding:45px 0 70px;

background-image:url("./asset/backgrounds/category-bg.svg/ChatGPT\ Image\ Jun\ 29\,\ 2026\,\ 03_01_58\ PM.png");
background-repeat:no-repeat;
background-position:center;
background-size:cover;

/* محو شدن لبه‌های عکس */
-webkit-mask-image:radial-gradient(
ellipse at center,
black 60%,
transparent 100%
);

mask-image:radial-gradient(
ellipse at center,
black 60%,
transparent 100%
);

}


.category-section::before{

content:"";

position:absolute;

top:-120px;

right:-120px;

width:340px;

height:340px;

background:radial-gradient(

circle,

rgba(191,70,70,.14),

transparent 70%

);

filter:blur(80px);

pointer-events:none;

z-index:0;

}

.category-section::after{

content:"";

position:absolute;

bottom:-140px;

left:-140px;

width:380px;

height:380px;

background:radial-gradient(

circle,

rgba(255,255,255,.7),

transparent 70%

);

filter:blur(90px);

pointer-events:none;

z-index:0;

}
.category-wrapper{

position:relative;

z-index:2;

}
.section-title{

position:relative;

z-index:2;

}

/*=========================
TITLE
=========================*/

.section-title{

text-align:center;

margin-bottom:35px;

}

.section-title h2{

font-size:34px;

font-weight:800;

color:#222;

margin-bottom:10px;

}

.section-title p{

font-size:15px;

color:#777;

}

/*=========================
GLASS PANEL
=========================*/

.category-wrapper{

position:relative;

margin:45px 0;

padding:20px;

overflow:hidden;

border-radius:30px;

background:linear-gradient(
180deg,
rgba(255,255,255,.28),
rgba(255,255,255,.12)
);

backdrop-filter:blur(30px) saturate(180%);
-webkit-backdrop-filter:blur(30px) saturate(180%);

border:1px solid rgba(255,255,255,.35);

box-shadow:

0 18px 45px rgba(0,0,0,.08),

inset 0 1px rgba(255,255,255,.45),

inset 0 -1px rgba(255,255,255,.08);


z-index:50;

transition:

background .35s,

box-shadow .35s,

backdrop-filter .35s,

top .35s;

}
.category-wrapper.sticky{

position:sticky;

top:90px;

background:rgba(255,255,255,.35);

backdrop-filter:blur(35px);

-webkit-backdrop-filter:blur(35px);

box-shadow:

0 15px 45px rgba(0,0,0,.15);

}
.products-grid{

transition:

opacity .3s,

transform .3s;

}

.products-grid.loading{

opacity:.35;

transform:translateY(10px);

}




/*=========================
REFLECTION
=========================*/

.category-wrapper::after{

content:"";

position:absolute;

top:-45%;

left:-15%;

width:130%;

height:60%;

background:linear-gradient(
180deg,
rgba(255,255,255,.08),
rgba(255,255,255,.03),
transparent
);

pointer-events:none;

}

/*=========================
TRACK
=========================*/

.category-track{
    

position:relative;


display:flex;

gap:18px;

overflow-x:auto;

padding:10px 4px;

scroll-behavior:smooth;

scrollbar-width:thin;

scrollbar-color:#BF4646 #efefef;

}

.category-track::-webkit-scrollbar{

height:3px;

}

.category-track::-webkit-scrollbar-track{

background:#ececec;

border-radius:30px;

}

.category-track::-webkit-scrollbar-thumb{

background:#BF4646;

border-radius:30px;

}
/*======================================
SLIDING ACTIVE
======================================*/

.category-active-bg{

position:absolute;

top:50%;

transform:translateY(-50%);

height:48px;

border-radius:18px;

background:#BF4646;

box-shadow:

0 12px 30px rgba(191,70,70,.28);

transition:

transform .35s cubic-bezier(.22,1,.36,1),

width .35s cubic-bezier(.22,1,.36,1);

z-index:1;

pointer-events:none;

}

/*=========================
CARD
=========================*/

.category-card{
    position:relative;

min-width:150px;

height:60px;

padding:0 22px;

display:flex;

justify-content:center;

align-items:center;

position:relative;

flex:none;

display:flex;

justify-content:center;

align-items:center;

min-width:150px;

height:72px;

padding:0 24px;

border-radius:20px;

background:transparent;

border:1px solid transparent;

cursor:pointer;

overflow:hidden;

transition:.35s;

white-space:nowrap;

z-index:2;

}

/*=========================
Badge
=========================*/

.category-badge{
position:absolute;

top:8px;

left:8px;

min-width:22px;

height:22px;

padding:0 6px;

display:flex;

align-items:center;

justify-content:center;

border-radius:999px;

background:#BF4646;

color:#fff;

font-size:11px;

font-weight:700;

line-height:1;

box-shadow:0 6px 15px rgba(191,70,70,.25);
position:absolute;

top:10px;

left:10px;

min-width:24px;

height:24px;

padding:0 8px;

display:flex;

align-items:center;

justify-content:center;

border-radius:999px;

font-size:11px;

font-weight:800;

background:rgba(255,255,255,.45);

backdrop-filter:blur(12px);

-webkit-backdrop-filter:blur(12px);

border:1px solid rgba(255,255,255,.55);

color:#BF4646;

box-shadow:

0 4px 12px rgba(0,0,0,.08);

transition:.35s;

}
.category-card.active .category-badge{

background:#fff;

color:#BF4646;

}

/*=========================
Title
=========================*/

.category-name{
    font-size:15px;

font-weight:700;

color:#555;

font-size:15px;

font-weight:700;

color:#555;

transition:.35s;

}

/*=========================
Reflection
=========================*/

.category-card::before{

content:"";

position:absolute;

top:0;

left:-150%;

width:70%;

height:100%;

background:linear-gradient(

90deg,

transparent,

rgba(255,255,255,.45),

transparent

);

transform:skewX(-25deg);

transition:.75s;

pointer-events:none;

}

.category-card:hover::before{

left:180%;

}

/*=========================
Hover
=========================*/

.category-card:hover{

background:rgba(255,255,255,.20);

backdrop-filter:blur(14px);

-webkit-backdrop-filter:blur(14px);

border:1px solid rgba(255,255,255,.35);

transform:translateY(-5px);

box-shadow:

0 15px 30px rgba(0,0,0,.10);

}

/*=========================
Active
=========================*/

.category-card.active{

background:#BF4646;

border-color:#BF4646;

box-shadow:

0 15px 35px rgba(191,70,70,.28);

}

.category-card.active .category-name{

color:#fff;

}

.category-card.active .category-badge{

background:rgba(255,255,255,.20);

border-color:rgba(255,255,255,.25);

color:#fff;

}

/*=========================
Hide icon
=========================*/

.category-card img{

display:none;

}
/*======================================
PRODUCTS
======================================*/

.products-section{

padding:20px 0 90px;

}

.products-grid{

display:grid;

grid-template-columns:repeat(auto-fill,minmax(220px,1fr));

gap:24px;

}

/*======================================
PRODUCT CARD
======================================*/

.product-card{

background:#fff;

border-radius:22px;

overflow:hidden;

position:relative;

transition:.35s;

box-shadow:0 12px 30px rgba(0,0,0,.06);

display:flex;

flex-direction:column;

}

.product-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(0,0,0,.12);

}

/*======================================
BADGES
======================================*/

.product-badge{

position:absolute;

top:14px;

right:14px;

padding:6px 12px;

border-radius:20px;

font-size:12px;

font-weight:700;

color:#fff;

z-index:5;

}

.badge-sale{

background:#e53935;

}

.badge-new{

background:#43a047;

}

.badge-out{

background:#757575;

}

/*======================================
PRODUCT IMAGE
======================================*/

.product-image{

height:190px;

display:flex;

justify-content:center;

align-items:center;

padding:18px;

background:#fafafa;

}

.product-image img{

width:100%;

height:100%;

object-fit:contain;

transform:scale(.92);

transition:.35s;

}

.product-card:hover .product-image img{

transform:scale(1);

}

/*======================================
PRODUCT INFO
======================================*/

.product-info{

padding:18px;

display:flex;

flex-direction:column;

flex:1;

}

.product-code{

font-size:12px;

color:#999;

margin-bottom:8px;

}

.product-title{

font-size:16px;

font-weight:800;

line-height:1.9;

height:58px;

overflow:hidden;

margin-bottom:8px;

}

.product-price{

margin-top:auto;

font-size:22px;

font-weight:800;

color:#BF4646;

margin-bottom:15px;

}

/*======================================
PRODUCT ACTIONS
======================================*/

.product-actions{

display:flex;

gap:10px;

}

.product-actions button{

flex:1;

height:45px;

border-radius:12px;

font-size:14px;

font-weight:700;

transition:.3s;

}

.add-cart{

background:#BF4646;

color:#fff;

}

.add-cart:hover{

background:#a73838;

}

.quick-view{

background:#f2f2f2;

color:#333;

}

.quick-view:hover{

background:#e3e3e3;

}

/*======================================
EMPTY PRODUCTS
======================================*/

.empty-products{

grid-column:1/-1;

background:#fff;

padding:80px 20px;

border-radius:20px;

text-align:center;

font-size:20px;

font-weight:700;

color:#888;

}
/*======================================
PRODUCT MODAL
======================================*/

.modal{

position:fixed;

inset:0;

background:rgba(0,0,0,.55);

backdrop-filter:blur(8px);

display:flex;

justify-content:center;

align-items:center;

padding:20px;

opacity:0;

visibility:hidden;

transition:.35s;

z-index:99999;

}

.modal.active{

opacity:1;

visibility:visible;

}

.modal-content{

width:min(950px,95%);

background:#fff;

border-radius:24px;

overflow:hidden;

display:grid;

grid-template-columns:420px 1fr;

position:relative;

animation:modalShow .35s ease;

}

@keyframes modalShow{

from{

opacity:0;

transform:scale(.9);

}

to{

opacity:1;

transform:scale(1);

}

}

.close-btn{

position:absolute;

top:15px;

left:15px;

width:45px;

height:45px;

border-radius:50%;

background:#BF4646;

color:#fff;

font-size:20px;

z-index:5;

transition:.3s;

}

.close-btn:hover{

transform:rotate(90deg);

}

.modal-image{

display:flex;

justify-content:center;

align-items:center;

padding:35px;

background:#fafafa;

}

.modal-image img{

width:90%;

height:90%;

object-fit:contain;

}

.modal-info{

padding:35px;

display:flex;

flex-direction:column;

}

#modalCode{

color:#888;

font-size:13px;

margin-bottom:10px;

}

#modalTitle{

font-size:30px;

font-weight:800;

margin-bottom:15px;

}

#modalInfo{

font-size:15px;

color:#666;

line-height:2;

margin-bottom:20px;

}

#modalPrice{

font-size:30px;

font-weight:800;

color:#BF4646;

margin-bottom:30px;

}

/*======================================
QUANTITY
======================================*/

.quantity-box{

display:flex;

align-items:center;

gap:12px;

margin-bottom:30px;

}

.quantity-box button{

width:45px;

height:45px;

background:#BF4646;

color:#fff;

border-radius:12px;

font-size:20px;

}

.quantity-box input{

width:70px;

height:45px;

text-align:center;

border:1px solid #ddd;

border-radius:12px;

font-size:16px;

}

/*======================================
SIDE CART
======================================*/

#cartOverlay{

position:fixed;

inset:0;

background:rgba(0,0,0,.45);

opacity:0;

visibility:hidden;

transition:.3s;

z-index:99990;

}

#cartOverlay.active{

opacity:1;

visibility:visible;

}

.side-cart{

position:fixed;

top:0;

left:-430px;

width:420px;

max-width:100%;

height:100vh;

background:#fff;

display:flex;

flex-direction:column;

transition:.35s;

z-index:99991;

box-shadow:10px 0 30px rgba(0,0,0,.12);

}

.side-cart.active{

left:0;

}

.cart-header{

padding:22px;

display:flex;

justify-content:space-between;

align-items:center;

border-bottom:1px solid #eee;

}

.cart-header h2{

font-size:24px;

font-weight:800;

}

.cart-items{

flex:1;

overflow:auto;

padding:20px;

}

.cart-item{

display:flex;

gap:15px;

background:#fafafa;

border-radius:16px;

padding:15px;

margin-bottom:15px;

}

.cart-item img{

width:70px;

height:70px;

object-fit:contain;

}

.cart-item-info{

flex:1;

}

.cart-item-title{

font-size:15px;

font-weight:700;

margin-bottom:6px;

}

.cart-item-price{

font-size:14px;

color:#BF4646;

font-weight:700;

margin-bottom:8px;

}

.cart-item-actions{

display:flex;

align-items:center;

gap:8px;

}

.cart-item-actions button{

width:30px;

height:30px;

border-radius:8px;

background:#BF4646;

color:#fff;

font-size:16px;

}

.remove-item{

background:#e53935 !important;

}

.cart-footer{

padding:20px;

border-top:1px solid #eee;

}

.cart-total{

display:flex;

justify-content:space-between;

font-size:18px;

font-weight:800;

margin-bottom:20px;

}

/*======================================
CUSTOMER FORM
======================================*/

.customer-box{

padding:35px;

display:flex;

flex-direction:column;

gap:18px;

}

.customer-box h2{

text-align:center;

margin-bottom:10px;

font-size:28px;

}

.customer-box input,

.customer-box textarea{

padding:14px 18px;

border:1px solid #ddd;

border-radius:12px;

font-size:15px;

}

.customer-box textarea{

height:120px;

resize:none;

}

.customer-buttons{

display:grid;

grid-template-columns:1fr 1fr;

gap:12px;

margin-top:10px;

}
/*======================================
TOAST
======================================*/

#toast{

position:fixed;

bottom:30px;

left:50%;

transform:translateX(-50%) translateY(120px);

background:#BF4646;

color:#fff;

padding:16px 28px;

border-radius:50px;

font-size:14px;

font-weight:700;

box-shadow:0 15px 35px rgba(191,70,70,.3);

opacity:0;

visibility:hidden;

transition:.35s;

z-index:999999;

}

#toast.show{

opacity:1;

visibility:visible;

transform:translateX(-50%) translateY(0);

}

/*======================================
BACK TO TOP
======================================*/

#backTop{

position:fixed;

left:25px;

bottom:25px;

width:56px;

height:56px;

border-radius:50%;

background:#BF4646;

color:#fff;

font-size:22px;

display:flex;

justify-content:center;

align-items:center;

box-shadow:0 12px 30px rgba(0,0,0,.15);

opacity:0;

visibility:hidden;

transition:.3s;

z-index:999;

}

#backTop.show{

opacity:1;

visibility:visible;

}

#backTop:hover{

transform:translateY(-5px);

}

/*======================================
FLOATING BUTTONS
======================================*/

.floating-buttons{

position:fixed;

right:25px;

bottom:25px;

display:flex;

flex-direction:column;

gap:14px;

z-index:999;

}

.float-btn{

width:58px;

height:58px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:24px;

color:#fff;

text-decoration:none;

transition:.3s;

box-shadow:0 12px 30px rgba(0,0,0,.18);

}

.float-btn:hover{

transform:translateY(-5px);

}

.float-whatsapp{

background:#25D366;

}

.float-call{

background:#BF4646;

}

/*======================================
FOOTER
======================================*/

footer{

background:#1f1f1f;

color:#fff;

padding:70px 0 0;

margin-top:90px;

}

.footer-container{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:50px;

}

.footer-about img{

width:85px;

margin-bottom:18px;

}

.footer-about h2{

font-size:28px;

margin-bottom:12px;

font-weight:800;

}

.footer-about p{

color:#ccc;

line-height:2;

}

.footer-links,

.footer-contact{

display:flex;

flex-direction:column;

}

.footer-links h3,

.footer-contact h3{

margin-bottom:20px;

font-size:20px;

}

.footer-links a{

margin-bottom:12px;

color:#ddd;

transition:.3s;

}

.footer-links a:hover{

color:#BF4646;

padding-right:8px;

}

.footer-contact p{

margin-bottom:14px;

color:#ddd;

}

.copyright{

margin-top:50px;

padding:22px;

text-align:center;

border-top:1px solid rgba(255,255,255,.08);

color:#bbb;

font-size:14px;

}

/*======================================
SCROLL ANIMATION
======================================*/

.fade-up{

opacity:0;

transform:translateY(40px);

transition:.7s;

}

.fade-up.show{

opacity:1;

transform:translateY(0);

}

/*======================================
RESPONSIVE
======================================*/

@media(max-width:1200px){

.products-grid{

grid-template-columns:repeat(4,1fr);

}

}

@media(max-width:992px){

.desktop-menu{

display:none;

}

.mobile-only{

display:flex;

}

.hero{

height:540px;

}

.hero-content h1{

font-size:46px;

}

.modal-content{

grid-template-columns:1fr;

}

.modal-image{

height:300px;

}

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.side-cart{

width:380px;

}

}

@media(max-width:768px){
    

.products-grid{

grid-template-columns:repeat(3,1fr);

gap:18px;

}

.hero{

height:430px;

}

.hero-content{

align-items:center;

text-align:center;

}

.hero-content h1{

font-size:34px;

}

.hero-content p{

font-size:15px;

}

.hero-buttons{

justify-content:center;

}

.search-box{

width:100%;

}

.category-card{

min-width:100px;

height:115px;

}

.category-card img{

width:45px;

height:45px;

}

}

@media(max-width:576px){
    

.products-grid{

grid-template-columns:repeat(2,1fr);

gap:14px;

}

.product-image{

height:135px;

padding:12px;

}

.product-title{

font-size:13px;

height:44px;

}

.product-price{

font-size:18px;

}

.product-actions{

flex-direction:column;

}

.product-actions button{

width:100%;

}

.side-cart{

width:100%;

left:-100%;

}

.hero{

height:360px;

}

.hero-content h1{

font-size:28px;

}

.hero-content p{

font-size:14px;

}

.footer-about img{

width:70px;

}

.float-btn{

width:52px;

height:52px;

font-size:20px;

}

#backTop{

width:50px;

height:50px;

}

}
@media screen and (max-width:576px){

.product-actions{
display:block;
}

.add-cart{
display:none !important;
}

.quick-view{
display:block;
width:100%;
background:#BF4646;
color:#fff;
}

.quick-view:hover{
background:#a73838;
}

}
.quick-view{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:#BF4646;
    color:#fff;
    border:none;
}

.quick-view img{
    width:18px;
    height:18px;
    object-fit:contain;
}

.quick-view:hover{
    background:#a73838;
}
/*======================================
BACKGROUND TEXTURE
======================================*/

.category-section::before{

content:"";

position:absolute;

inset:0;

z-index:0;

opacity:.22;

background-image:

radial-gradient(circle at 1px 1px,
rgba(191,70,70,.18) 1px,
transparent 1px);

background-size:28px 28px;

transform:scale(1.15);

pointer-events:none;

}
.category-section::after{

content:"";

position:absolute;

inset:0;

z-index:0;

background:

radial-gradient(circle at top right,
rgba(191,70,70,.10),
transparent 35%),

radial-gradient(circle at bottom left,
rgba(255,255,255,.8),
transparent 40%);

filter:blur(70px);

pointer-events:none;

}


/*======================================
END
======================================*/