/* =====================================
   UGUR CERAMIC
   PREMIUM COMPLETE STYLE
===================================== */


/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}


html{
    scroll-behavior:smooth;
}


body{

    background:
    linear-gradient(rgba(255,255,255,0.75), rgba(255,255,255,0.75)),
    url("../images/ceramic-bg.jpg");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}




.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}






/* HEADER */


header{

    position:sticky;

    top:0;

    z-index:1000;

    background:white;

    box-shadow:0 5px 20px rgba(0,0,0,.1);

}



.header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 0;

}





.logo h1{

    font-size:32px;

    letter-spacing:3px;

    color:#222;

}



.logo span{

    color:#b8860b;

}



.logo p{

    font-size:12px;

    letter-spacing:2px;

    color:#777;

}





nav ul{

    display:flex;

    list-style:none;

    gap:30px;

}



nav a{

    text-decoration:none;

    color:#333;

    font-size:17px;

    transition:.3s;

}



nav a:hover,
nav a.active{

    color:#b8860b;

}





.menu-btn{

    display:none;

    font-size:30px;

    cursor:pointer;

}







/* HERO */


.hero{

    height:650px;

    background:

    linear-gradient(
    rgba(0,0,0,.55),
    rgba(0,0,0,.55)
    ),

    url("../images/hero.jpg");


    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    color:white;

}



.hero-content{

    background:rgba(0,0,0,.35);

    padding:40px;

    border-radius:15px;

}



.hero h1{

    font-size:65px;

}



.hero h2{

    margin:20px 0;

    font-size:30px;

}



.hero p{

    font-size:20px;

    margin-bottom:30px;

}








/* BUTTON */


.btn{

    display:inline-block;

    padding:14px 35px;

    background:#b8860b;

    color:white;

    border:none;

    border-radius:6px;

    text-decoration:none;

    cursor:pointer;

    transition:.3s;

}



.btn:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(184,134,11,.4);

}









/* SECTIONS */


.products,
.gallery,
.contact,
.reviews,
.about{

    padding:80px 0;

}





.products h2,
.gallery h2,
.contact h2,
.reviews h2,
.about h2{

    text-align:center;

    font-size:38px;

    margin-bottom:40px;

}








/* PRODUCTS */


.product-container{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

}






.product-card{

    width:320px;

    background:white;

    padding:25px;

    border-radius:15px;

    box-shadow:

    0 5px 20px rgba(0,0,0,.1);


    transition:.4s;

    overflow:hidden;

    position:relative;

}




.product-card:hover{

    transform:translateY(-10px);

}






.product-card img{

    width:100%;

    height:230px;

    object-fit:cover;

    border-radius:10px;

}




.product-card h3{

    margin:20px 0;

    color:#b8860b;

}



.product-card p{

    line-height:1.6;

}





.product-info{

    list-style:none;

    margin:15px 0;

}



.product-info li{

    padding:5px 0;

}




.price{

    display:block;

    font-size:22px;

    font-weight:bold;

    margin:15px 0;

}








.product-buttons{

    display:flex;

    flex-direction:column;

    gap:10px;

}








/* SEARCH */


.search{

    text-align:center;

    margin-bottom:30px;

}



.search input,
input,
textarea{

    width:100%;

    max-width:600px;

    padding:15px;

    border:1px solid #ccc;

    border-radius:8px;

    font-size:16px;

}








/* CATEGORIES */


.categories{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

    margin-bottom:40px;

}



.categories button{

    padding:12px 25px;

    border:none;

    background:#b8860b;

    color:white;

    cursor:pointer;

    border-radius:5px;

}








/* ABOUT PREMIUM */


.about{

    position:relative;

    padding:120px 0;

    background:
    linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.65)
    ),
    url("../images/about-bg.jpg");

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

    text-align:center;

    overflow:hidden;

}


.about::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(
    circle at top right,
    rgba(184,134,11,.28),
    transparent 45%
    );

    pointer-events:none;

}


.about .container{

    position:relative;

    z-index:1;

    max-width:900px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    -webkit-backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.25);

    border-radius:20px;

    padding:60px 40px;

    box-shadow:0 15px 40px rgba(0,0,0,.35);

}


.about h2{

    color:#ffffff;

    font-size:42px;

    margin-bottom:30px;

    letter-spacing:2px;

}


.about p{

    color:#f5f5f5;

    font-size:21px;

    line-height:2;

    font-weight:300;

}








/* GALLERY */


.gallery-container{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

}



.gallery-container img{

    width:300px;

    height:250px;

    object-fit:cover;

    border-radius:10px;

}








/* REVIEWS */


.reviews{

    background:#eee;

}



.review-box{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

}



.review-box div{

    background:white;

    padding:30px;

    width:300px;

    border-radius:10px;

}








/* CONTACT */


.contact form{

    max-width:600px;

    margin:auto;

}



.contact input,
.contact textarea{

    margin:10px 0;

}



textarea{

    height:150px;

}





/* CART */


.cart-total{

    margin:40px auto;

    padding:30px;

    background:white;

    text-align:center;

    border-radius:15px;

    max-width:600px;

}







/* ANIMATION */


.hidden{

    opacity:0;

    transform:translateY(40px);

    transition:.8s;

}



.show{

    opacity:1;

    transform:translateY(0);

}








/* WHATSAPP */


.fixed-whatsapp{

    position:fixed;

    right:25px;

    bottom:90px;

    width:60px;

    height:60px;

    background:#25D366;

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    text-decoration:none;

    z-index:1000;

}








/* TOP BUTTON */


#topBtn{

    position:fixed;

    right:25px;

    bottom:25px;

    width:50px;

    height:50px;

    background:#b8860b;

    color:white;

    border:none;

    border-radius:50%;

    cursor:pointer;

    z-index:1000;

}








/* FOOTER */


footer{

    background:#222;

    color:white;

    padding:30px;

    text-align:center;

}










/* LOGO */

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo-img{

    width:70px;

    height:70px;

    object-fit:contain;

}


/* SEARCH */

.search{

    text-align:center;

    margin:0 auto 30px;

}

.search input{

    max-width:500px;

    padding:15px 20px;

    border:2px solid #ddd;

    border-radius:10px;

    transition:.3s;

}

.search input:focus{

    border-color:#b8860b;

    outline:none;

    box-shadow:0 0 10px rgba(184,134,11,.3);

}


/* =================================
   UGUR CERAMIC
   CAMPAIGN DESIGN
================================= */


/* Kampaniya etiketi */

.campaign-badge {

    position:absolute;

    top:15px;

    left:15px;

    background:#c62828;

    color:white;

    padding:8px 14px;

    border-radius:20px;

    font-size:14px;

    font-weight:bold;

    z-index:2;

}


/* Köhnə qiymət */

.old-price {

    text-decoration:line-through;

    color:#888;

    font-size:16px;

    margin-right:10px;

}


/* Yeni kampaniya qiyməti */

.new-price {

    color:#c62828;

    font-size:24px;

    font-weight:bold;

}


/* Endirim faizi */

.discount {

    display:inline-block;

    margin-left:10px;

    background:#222;

    color:white;

    padding:5px 10px;

    border-radius:15px;

    font-size:13px;

}


/* Kampaniya qiymət bloku */

.campaign-price {

    margin:15px 0;

}


/* MOBILE */

@media(max-width:768px){

    .container{

        width:92%;

    }

    .menu-btn{

        display:block;

    }

    nav{

        display:none;

        position:absolute;

        top:75px;

        left:0;

        width:100%;

        background:#fff;

    }

    nav.active{

        display:block;

    }

    nav ul{

        flex-direction:column;

        text-align:center;

        padding:25px;

    }

    .hero{

        height:550px;

    }

    .hero h1{

        font-size:38px;

    }

    .hero h2{

        font-size:22px;

    }

    .product-card{

        width:100%;

    }

    .logo h1{

        font-size:24px;

    }

    .logo-img{

        width:50px;

        height:50px;

    }

    .about{

        padding:70px 0;

        background-attachment:scroll;

    }

    .about .container{

        padding:35px 25px;

    }

    .about h2{

        font-size:30px;

    }

    .about p{

        font-size:17px;

        line-height:1.8;

    }

    .campaign-badge {

        font-size:12px;

        padding:6px 10px;

    }

    .new-price {

        font-size:20px;

    }

}

.uc-store-footer{background:#171717;color:#fff;padding:42px 0}.uc-store-footer a{color:#fff}.uc-store-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:28px;align-items:center}.uc-map{width:100%;height:340px;border:0;border-radius:16px}.uc-social{display:flex;gap:8px;flex-wrap:wrap}.badge-new,.badge-campaign,.badge-passive{display:inline-block;padding:6px 10px;border-radius:999px;font-weight:700;margin:4px}.badge-new{background:#127a3a;color:#fff}.badge-campaign{background:#b8860b;color:#fff}.badge-passive{background:#777;color:#fff}.gallery-thumbs{display:flex;gap:8px;overflow:auto}.gallery-thumbs img{width:82px;height:65px;object-fit:cover;cursor:pointer}.ask-price{font-weight:800;color:#b8860b;font-size:20px}@media(max-width:760px){.uc-store-grid{grid-template-columns:1fr}}


/* Ana səhifə kateqoriya kolleksiyaları */
.home-collections-section{padding-top:76px;padding-bottom:76px;background:#f7f5ef}
.home-collections-heading{text-align:center;max-width:760px;margin:0 auto 38px}
.home-collections-heading h2{margin:8px 0 12px;font-size:38px}
.home-collections-heading p{line-height:1.7}
.home-collections-kicker{color:#a87712;font-weight:800;letter-spacing:2px;font-size:13px}
.home-category-collections{display:grid;gap:34px}
.home-category-collection{background:#fff;border:1px solid rgba(184,134,11,.16);border-radius:22px;padding:26px;box-shadow:0 14px 45px rgba(35,29,18,.08)}
.home-category-header{display:flex;justify-content:space-between;align-items:center;gap:18px;margin-bottom:22px;padding-bottom:17px;border-bottom:1px solid rgba(0,0,0,.08)}
.home-category-header>div{display:flex;align-items:center;gap:14px}
.home-category-header h3{margin:0 0 4px;font-size:27px}
.home-category-header p{margin:0;color:#777;font-weight:600}
.home-category-icon{display:grid;place-items:center;width:54px;height:54px;border-radius:16px;background:#f3ead4;font-size:26px}
.home-category-link{display:inline-flex;align-items:center;gap:8px;padding:11px 16px;border-radius:999px;background:#171717;color:#fff;text-decoration:none;font-weight:800;white-space:nowrap}
.home-category-link:hover{background:#b8860b}
.home-category-products{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.home-category-products .product-card{width:auto;margin:0}
.home-category-products .product-card img{width:100%;height:205px;object-fit:cover}
.home-collections-empty{text-align:center;background:#fff;padding:34px;border-radius:18px}
@media(max-width:1050px){.home-category-products{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:650px){.home-collections-section{padding-top:48px;padding-bottom:48px}.home-collections-heading h2{font-size:30px}.home-category-collection{padding:18px}.home-category-header{align-items:flex-start;flex-direction:column}.home-category-link{width:100%;justify-content:center}.home-category-products{grid-template-columns:1fr}.home-category-header h3{font-size:23px}}

/* Mobil məhsul görünüşü düzəlişi */
@media (max-width: 768px){
  #productContainer,.product-container,.home-category-products,.home-category-collections{display:grid!important;visibility:visible!important;opacity:1!important;height:auto!important;overflow:visible!important;}
  #productContainer,.product-container,.home-category-products{grid-template-columns:1fr!important;}
  .product-card{display:block!important;visibility:visible!important;opacity:1!important;width:100%!important;max-width:100%!important;}
  .product-card img{display:block!important;max-width:100%!important;height:auto!important;min-height:180px;object-fit:cover;}
}

/* Şəkil nisbəti, mobil qalereya və dil seçimi */
.product-card{display:flex;flex-direction:column}
.product-card img,.home-category-products .product-card img{
 width:100%;height:260px!important;object-fit:contain!important;object-position:center;background:#f5f3ee;border-radius:12px;padding:6px
}
.language-switcher{margin-left:auto;display:flex;align-items:center;gap:7px}
.language-switcher label{font-size:12px;font-weight:800;color:#7d641f}
.language-select{min-width:92px;height:38px;border:1px solid #d8c28a;border-radius:9px;background:#fff;padding:0 9px;font-weight:700;color:#222;cursor:pointer}
.detail-image{overflow:hidden}
.detail-image img{width:100%;height:min(65vh,620px)!important;object-fit:contain!important;object-position:center;background:#f5f3ee;touch-action:pan-y;user-select:none}
.product-gallery-thumbs{display:flex;gap:10px;overflow-x:auto;padding:12px 2px 2px;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch}
.product-gallery-thumbs button{flex:0 0 84px;height:70px;border:2px solid transparent;border-radius:10px;background:#f5f3ee;padding:3px;cursor:pointer;scroll-snap-align:start}
.product-gallery-thumbs button.active{border-color:#b8860b}
.product-gallery-thumbs img{width:100%;height:100%!important;object-fit:contain!important;border-radius:7px;background:#fff}
@media(max-width:768px){
 .premium-header-inner{gap:10px;flex-wrap:wrap}
 .language-switcher{order:2;margin-left:0}
 .language-select{min-width:82px;height:36px}
 .product-card img,.home-category-products .product-card img{height:230px!important;min-height:0!important;object-fit:contain!important}
 .product-detail{padding:25px 0}
 .product-detail-container{grid-template-columns:1fr!important;gap:20px!important}
 .detail-image{padding:8px!important;border-radius:12px!important}
 .detail-image img{height:58vh!important;max-height:520px;min-height:300px;object-fit:contain!important}
 .product-gallery-thumbs button{flex-basis:76px;height:64px}
 .detail-content{padding:20px!important}
 .detail-content h1{font-size:27px!important}
 .product-actions{display:grid!important;grid-template-columns:1fr!important}
 .product-actions .btn,.product-actions .whatsapp-btn{width:100%}
}

/* ADMIN-DƏN İDARƏ OLUNAN QALEREYA */
.gallery-container .gallery-item{margin:0;width:300px;text-align:center}
.gallery-container .gallery-item img{width:300px;height:250px;object-fit:cover;border-radius:10px;display:block}
.gallery-container .gallery-item figcaption{padding:9px 4px;color:#555;font-size:14px}
@media(max-width:768px){.gallery-container .gallery-item,.gallery-container .gallery-item img{width:100%}.gallery-container .gallery-item img{height:auto;max-height:360px}}


/* =================================
   ANA SƏHİFƏ QALEREYA / KOLLEKSİYA KARTLARI
================================= */
.gallery-container .gallery-collection-card{
    position:relative;
    width:300px;
    min-height:250px;
    margin:0;
    display:block;
    overflow:hidden;
    border-radius:16px;
    background:#111;
    text-decoration:none;
    box-shadow:0 12px 30px rgba(0,0,0,.15);
    transition:transform .3s ease,box-shadow .3s ease;
}
.gallery-container .gallery-collection-card:hover{
    transform:translateY(-7px);
    box-shadow:0 20px 44px rgba(0,0,0,.22);
}
.gallery-container .gallery-collection-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
    border-radius:0;
    transition:transform .45s ease;
}
.gallery-container .gallery-collection-card:hover img{transform:scale(1.055)}
.gallery-collection-overlay{
    position:absolute;
    left:0;right:0;bottom:0;
    min-height:98px;
    padding:30px 18px 16px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:flex-start;
    gap:7px;
    color:#fff;
    background:linear-gradient(transparent,rgba(0,0,0,.86));
}
.gallery-collection-overlay strong{font-size:19px;letter-spacing:.2px}
.gallery-collection-overlay em{
    font-style:normal;
    font-size:13px;
    color:#f2cf78;
    border-bottom:1px solid rgba(242,207,120,.65);
}
@media(max-width:768px){
    .gallery-container .gallery-collection-card{width:100%;min-height:220px}
    .gallery-container .gallery-collection-card img{width:100%;height:260px;max-height:none}
}

/* =================================
   PREMIUM CONTACT PAGE
================================= */
.premium-contact-page{
    padding:64px 0 88px;
    background:
      radial-gradient(circle at 12% 4%,rgba(184,134,11,.08),transparent 30%),
      linear-gradient(180deg,#fbfaf7 0%,#fff 46%,#f7f3ea 100%);
}
.contact-hero-card{
    position:relative;
    overflow:hidden;
    margin-bottom:28px;
    padding:46px 48px;
    border:1px solid rgba(184,134,11,.18);
    border-radius:24px;
    color:#fff;
    background:
      linear-gradient(120deg,rgba(17,17,17,.96),rgba(42,33,18,.92)),
      url('../images/hero.jpg') center/cover;
    box-shadow:0 22px 60px rgba(24,20,12,.16);
}
.contact-hero-card::after{
    content:"";
    position:absolute;
    width:270px;height:270px;
    right:-95px;top:-125px;
    border:1px solid rgba(218,174,67,.34);
    border-radius:50%;
    box-shadow:0 0 0 32px rgba(218,174,67,.05),0 0 0 70px rgba(218,174,67,.035);
}
.contact-hero-kicker,.contact-form-kicker{
    display:inline-block;
    margin-bottom:10px;
    color:#cfa53a;
    font-size:12px;
    font-weight:800;
    letter-spacing:2.2px;
}
.contact-hero-card h1{position:relative;z-index:1;margin:0 0 12px;font-size:44px;letter-spacing:.2px}
.contact-hero-card p{position:relative;z-index:1;max-width:780px;margin:0;color:rgba(255,255,255,.78);font-size:17px;line-height:1.8}
.premium-contact-grid{
    display:grid;
    grid-template-columns:minmax(320px,.82fr) minmax(0,1.35fr);
    gap:24px;
    align-items:stretch;
}
.contact-details-panel,.contact-form-panel,.contact-map-panel{
    border:1px solid rgba(184,134,11,.16);
    border-radius:22px;
    background:rgba(255,255,255,.94);
    box-shadow:0 15px 42px rgba(29,24,15,.08);
}
.contact-details-panel{padding:12px 26px}
.contact-detail-card{
    display:grid;
    grid-template-columns:52px 1fr;
    gap:15px;
    align-items:center;
    padding:20px 0;
    border-bottom:1px solid rgba(32,32,32,.08);
}
.contact-detail-card:last-child{border-bottom:0}
.contact-detail-icon{
    width:52px;height:52px;
    display:flex;align-items:center;justify-content:center;
    color:#a97812;
    border:1px solid rgba(184,134,11,.20);
    border-radius:15px;
    background:linear-gradient(145deg,#fff9e9,#f3e4b8);
    box-shadow:inset 0 1px 0 #fff;
}
.contact-detail-icon svg,.contact-submit-btn svg{width:23px;height:23px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.contact-detail-label{display:block;margin-bottom:4px;color:#897a5f;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.9px}
.contact-detail-card strong,.contact-primary-link{display:block;color:#222;font-size:15px;font-weight:700;line-height:1.45;text-decoration:none}
.contact-primary-link:hover,.contact-mini-link:hover{color:#a97812}
.contact-mini-link{display:inline-block;margin-top:5px;color:#a97812;font-size:13px;font-weight:700;text-decoration:none}
.contact-form-panel{padding:34px 36px}
.contact-form-panel h2,.contact-map-header h2{margin:0 0 8px;color:#25221d;font-size:30px;line-height:1.2}
.contact-form-intro{margin:0 0 23px;color:#746e65;line-height:1.65}
.contact-field-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.contact-field{display:block;margin-bottom:14px}
.contact-field>span{display:block;margin:0 0 7px;color:#4a443b;font-size:13px;font-weight:700}
.contact-form-panel .contact-field input,.contact-form-panel .contact-field textarea{
    width:100%;max-width:none;margin:0;
    border:1px solid #ddd5c5;
    border-radius:13px;
    background:#fcfbf8;
    color:#252525;
    font-size:15px;
    outline:none;
    transition:border-color .22s,box-shadow .22s,background .22s;
}
.contact-form-panel .contact-field input{height:52px;padding:0 16px}
.contact-form-panel .contact-field textarea{min-height:135px;height:135px;padding:15px 16px;resize:vertical}
.contact-form-panel .contact-field input:focus,.contact-form-panel .contact-field textarea:focus{
    border-color:#c89a26;
    background:#fff;
    box-shadow:0 0 0 4px rgba(184,134,11,.10);
}
.contact-submit-btn{
    min-height:52px;
    display:inline-flex;align-items:center;justify-content:center;gap:10px;
    border-radius:13px;
    font-weight:800;
    background:linear-gradient(135deg,#d3a629,#9f700d);
    box-shadow:0 10px 24px rgba(184,134,11,.25);
}
.contact-submit-btn:hover{box-shadow:0 14px 30px rgba(184,134,11,.34)}
.contact-map-panel{margin-top:24px;padding:22px;overflow:hidden}
.contact-map-header{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:8px 6px 20px}
.contact-map-header p{margin:0;color:#6f685e;line-height:1.55}
.contact-route-btn{white-space:nowrap;border-radius:12px}
.premium-contact-map{display:block;width:100%;height:430px;border:0;border-radius:17px;background:#eee}
@media(max-width:900px){
    .premium-contact-grid{grid-template-columns:1fr}
    .contact-hero-card{padding:38px 30px}
    .contact-hero-card h1{font-size:36px}
}
@media(max-width:600px){
    .premium-contact-page{padding:32px 0 60px}
    .contact-hero-card{padding:30px 22px;border-radius:18px}
    .contact-hero-card h1{font-size:30px}
    .contact-hero-card p{font-size:15px}
    .contact-details-panel{padding:8px 18px}
    .contact-form-panel{padding:25px 20px}
    .contact-field-grid{grid-template-columns:1fr;gap:0}
    .contact-form-panel h2,.contact-map-header h2{font-size:24px}
    .contact-map-panel{padding:14px}
    .contact-map-header{align-items:flex-start;flex-direction:column;padding:7px 3px 15px}
    .contact-route-btn{width:100%;text-align:center}
    .premium-contact-map{height:340px}
}


/* Mobil kateqoriya accordion — kateqoriyalar qapalı başlayır */
.home-category-toggle{
 display:none;
 border:0;
 background:transparent;
 padding:0;
 color:inherit;
 font:inherit;
 text-align:left;
}
.home-category-toggle-main{display:flex;align-items:center;gap:14px}
.home-category-title-wrap h3,.home-category-title-wrap p{pointer-events:none}
.home-category-chevron{font-size:27px;line-height:1;color:#a87712;transition:transform .25s ease}
.home-category-collapse{display:block}
@media(max-width:768px){
 .home-category-collections{gap:12px!important}
 .home-category-collection{padding:0!important;border-radius:16px!important;overflow:hidden}
 .home-category-header{display:grid!important;grid-template-columns:1fr auto;align-items:center!important;gap:8px!important;margin:0!important;padding:12px 12px!important;border-bottom:0!important}
 .home-category-header>div{display:none!important}
 .home-category-toggle{display:flex!important;align-items:center;justify-content:space-between;width:100%;min-width:0;cursor:pointer;padding:2px 4px}
 .home-category-toggle-main{min-width:0}
 .home-category-icon{width:46px!important;height:46px!important;min-width:46px;border-radius:13px!important;font-size:22px!important}
 .home-category-title-wrap{min-width:0}
 .home-category-title-wrap h3{font-size:18px!important;line-height:1.2;margin:0 0 3px!important;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
 .home-category-title-wrap p{font-size:12px!important;margin:0!important}
 .home-category-link{width:auto!important;padding:9px 11px!important;font-size:12px!important;border-radius:10px!important}
 .home-category-link span{display:none}
 .home-category-collapse{display:grid;grid-template-rows:0fr;opacity:0;transition:grid-template-rows .3s ease,opacity .2s ease;border-top:1px solid transparent}
 .home-category-collapse>.home-category-products{min-height:0;overflow:hidden;padding:0 14px!important}
 .home-category-collection.is-open .home-category-collapse{grid-template-rows:1fr;opacity:1;border-top-color:rgba(184,134,11,.16)}
 .home-category-collection.is-open .home-category-collapse>.home-category-products{padding:14px!important}
 .home-category-collection.is-open .home-category-chevron{transform:rotate(180deg)}
 .home-category-products{display:grid!important;grid-template-columns:1fr!important;gap:12px!important}
}
