/*====================================================
    UP GAS - PRODUCTS PAGE CSS
    Premium LPG Product Catalogue
=====================================================*/

/*====================================================
    GLOBAL PRODUCTS PAGE SETTINGS
=====================================================*/

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;
}

/*====================================================
    HEADER MOBILE MENU BUTTON
=====================================================*/

#menu-btn{

    display:none;

    width:48px;
    height:48px;

    border:none;

    background:transparent;

    color:#ffffff;

    font-size:28px;

    cursor:pointer;

    z-index:1100;

    transition:.3s ease;

}

#menu-btn:hover{

    color:var(--primary);

}

/*====================================================
    COMMON BUTTON
=====================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    position:relative;

    overflow:hidden;

    padding:16px 38px;

    border:none;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        var(--primary),
        #fb923c
    );

    color:#ffffff;

    font-size:16px;

    font-weight:700;

    text-decoration:none;

    cursor:pointer;

    box-shadow:

        0 15px 35px
        rgba(249,115,22,.30);

    transition:

        transform .35s ease,
        box-shadow .35s ease;

}

.btn:hover{

    transform:translateY(-5px);

    box-shadow:

        0 20px 40px
        rgba(249,115,22,.40);

}

/*====================================================
    SECTION TITLE
=====================================================*/

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    display:inline-block;

    margin-bottom:14px;

    color:var(--primary);

    font-size:14px;

    font-weight:800;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-title h2{

    margin-bottom:18px;

    color:var(--secondary);

    font-size:clamp(32px,5vw,48px);

    line-height:1.15;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:var(--text);

    font-size:17px;

    line-height:1.8;

}

/*====================================================
    SCROLL REVEAL
=====================================================*/

.reveal{

    opacity:0;

    transform:translateY(45px);

    transition:

        opacity .8s ease,

        transform .8s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

/*====================================================
    PRODUCTS HERO
=====================================================*/

/*====================================================
    ORDER HERO
=====================================================*/

.products-hero {

    min-height: 100vh;

    display: grid;

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

    align-items: center;

    gap: 70px;

    position: relative;

    overflow: hidden;

    background:

        linear-gradient(
            rgba(17, 24, 39, .88),
            rgba(17, 24, 39, .88)
        ),

        url("../images/Hero.jpeg");

    background-position: center;

    background-size: cover;

}

.products-hero::before{

    content:"";

    position:absolute;

    top:-180px;

    right:-100px;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(247, 246, 246, 0.25);

    filter:blur(100px);

}

.products-hero::after{

    content:"";

    position:absolute;

    bottom:-200px;

    left:-150px;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(251,146,60,.12);

    filter:blur(100px);

}


.hero-content{

    position:relative;

    z-index:2;

}

.tag{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:12px 24px;

    margin-bottom:30px;

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

    border-radius:50px;

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

    backdrop-filter:blur(12px);

    font-weight:600;

}

.tag i{

    color:var(--primary);

}

.hero-content h1{

    margin-bottom:25px;

    font-size:64px;

    line-height:1.1;

    font-weight:800;

}

.hero-content h1 span{

    display:block;

    color:var(--primary);

}

.hero-content p{

    max-width:650px;

    color:#e5e7eb;

    font-size:20px;

    line-height:1.7;

}

/*====================================================
    HERO CONTENT
=====================================================*/

.hero-content{

    position:relative;

    z-index:2;

}

.tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-bottom:28px;

    padding:12px 22px;

    border:1px solid

        rgba(255,255,255,.18);

    border-radius:50px;

    background:

        rgba(255,255,255,.10);

    backdrop-filter:blur(12px);

    color:#ffffff;

    font-size:14px;

    font-weight:700;

}

.tag i{

    color:var(--primary);

}

/*====================================================
    HERO HEADING
=====================================================*/

.hero-content h1{

    max-width:700px;

    margin-bottom:25px;

    color:#ffffff;

    font-size:clamp(42px,6vw,70px);

    font-weight:800;

    line-height:1.08;

}

.hero-content h1 span{

    display:block;

    color:var(--primary);

}

.hero-content p{

    max-width:650px;

    margin-bottom:38px;

    color:#e5e7eb;

    font-size:18px;

    line-height:1.8;

}

/*====================================================
    HERO IMAGE
=====================================================*/

.hero-image{

    position:relative;

    z-index:2;

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:450px;

}

.hero-image::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:

        rgba(249,115,22,.16);

    filter:blur(40px);

}

.hero-image img{

    position:relative;

    z-index:2;

    display:block;

    width:min(100%,500px);

    max-height:520px;

    object-fit:contain;

    filter:

        drop-shadow(

            0 35px 35px

            rgba(0,0,0,.45)

        );

    animation:

        floatCylinder 4s ease-in-out infinite;

    transition:.3s ease;

}

@keyframes floatCylinder{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

/*====================================================
    SEARCH SECTION
=====================================================*/

.search-section{

    padding:55px 8% 25px;

    background:var(--light);

}

.search-box{

    display:flex;

    align-items:center;

    max-width:800px;

    margin:auto;

    padding:18px 28px;

    border:1px solid

        rgba(0,0,0,.05);

    border-radius:60px;

    background:#ffffff;

    box-shadow:

        0 15px 40px

        rgba(0,0,0,.08);

    transition:.3s ease;

}

.search-box:focus-within{

    border-color:var(--primary);

    box-shadow:

        0 15px 40px

        rgba(249,115,22,.18);

}

.search-box i{

    margin-right:16px;

    color:var(--primary);

    font-size:21px;

}

.search-box input{

    width:100%;

    border:none;

    outline:none;

    background:transparent;

    color:var(--secondary);

    font-family:inherit;

    font-size:17px;

}

.search-box input::placeholder{

    color:#9ca3af;

}

/*====================================================
    FILTER SECTION
=====================================================*/

.filter-section{

    padding:25px 8% 70px;

    background:var(--light);

}

.filter-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

}

.filter-btn{

    padding:13px 25px;

    border:1px solid

        rgba(0,0,0,.06);

    border-radius:50px;

    background:#ffffff;

    color:var(--secondary);

    font-family:inherit;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    box-shadow:

        0 8px 20px

        rgba(0,0,0,.06);

    transition:.3s ease;

}

.filter-btn:hover{

    transform:translateY(-3px);

    background:var(--primary);

    color:#ffffff;

}

.filter-btn.active{

    background:

        linear-gradient(

            135deg,

            var(--primary),

            #fb923c

        );

    color:#ffffff;

    box-shadow:

        0 12px 25px

        rgba(249,115,22,.30);

}

/*====================================================
    PRODUCTS SECTION
=====================================================*/

.products{

    padding:100px 8%;

    background:#ffffff;

}

.products-grid{

    display:grid;

    grid-template-columns:

        repeat(

            auto-fit,

            minmax(290px,1fr)

        );

    gap:30px;

}

/*====================================================
    PRODUCT CARD
=====================================================*/

.product-card{

    position:relative;

    display:flex;

    flex-direction:column;

    padding:32px 28px;

    overflow:hidden;

    border:1px solid

        rgba(0,0,0,.06);

    border-top:5px solid

        var(--primary);

    border-radius:24px;

    background:#ffffff;

    box-shadow:

        0 15px 40px

        rgba(0,0,0,.08);

    transition:

        transform .4s ease,

        box-shadow .4s ease;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:

        0 25px 55px

        rgba(0,0,0,.14);

}

/* Category Border */

.product-card.home{

    border-top-color:#10b981;

}

.product-card.business{

    border-top-color:#3b82f6;

}

.product-card.commercial{

    border-top-color:#f97316;

}

/*====================================================
    PRODUCT BADGE
=====================================================*/

.product-badge{

    position:absolute;

    top:20px;

    right:20px;

    z-index:3;

    padding:7px 15px;

    border-radius:30px;

    background:

        linear-gradient(

            135deg,

            var(--primary),

            #fb923c

        );

    color:#ffffff;

    font-size:12px;

    font-weight:700;

    box-shadow:

        0 8px 20px

        rgba(249,115,22,.25);

}

.product-badge.premium{

    background:

        linear-gradient(

            135deg,

            #111827,

            #374151

        );

}

/*====================================================
    PRODUCT IMAGE
=====================================================*/

.product-card img{

    display:block;

    width:180px;

    height:230px;

    margin:15px auto 25px;

    object-fit:contain;

    filter:

        drop-shadow(

            0 20px 25px

            rgba(0,0,0,.18)

        );

    transition:.4s ease;

}

.product-card:hover img{

    transform:

        scale(1.07)

        rotate(-3deg);

}

/*====================================================
    PRODUCT TITLE
=====================================================*/

.product-card h3{

    margin-bottom:14px;

    color:var(--secondary);

    font-size:25px;

    line-height:1.3;

    text-align:center;

}

/*====================================================
    PRODUCT DESCRIPTION
=====================================================*/

.product-desc{

    min-height:85px;

    margin-bottom:25px;

    color:var(--text);

    font-size:15px;

    line-height:1.7;

    text-align:center;

}

/*====================================================
    FEATURES
=====================================================*/

.product-features{

    margin:0 0 25px;

    padding:0;

    list-style:none;

}

.product-features li{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:12px;

    color:var(--secondary);

    font-size:14px;

}

.product-features i{

    color:#10b981;

    font-size:17px;

}

/*====================================================
    PRICE
=====================================================*/

.price{

    margin-top:auto;

    margin-bottom:25px;

    padding:18px;

    border:1px solid

        #fed7aa;

    border-radius:16px;

    background:#fff7ed;

    text-align:center;

}

.price span{

    display:block;

    margin-bottom:5px;

    color:#9a3412;

    font-size:13px;

}

.price h2{

    color:var(--primary);

    font-size:34px;

    font-weight:800;

}

/*====================================================
    WHATSAPP ORDER BUTTON
=====================================================*/

.order-btn{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    width:100%;

    padding:15px 20px;

    overflow:hidden;

    border-radius:50px;

    background:#25D366;

    color:#ffffff;

    font-size:15px;

    font-weight:700;

    text-decoration:none;

    box-shadow:

        0 12px 25px

        rgba(37,211,102,.22);

    transition:.3s ease;

}

.order-btn:hover{

    transform:translateY(-4px);

    background:#1fba59;

    box-shadow:

        0 18px 35px

        rgba(37,211,102,.32);

}

.order-btn i{

    font-size:20px;

}

/*====================================================
    DELIVERY INFORMATION
=====================================================*/

.delivery-info{

    padding:100px 8%;

    background:var(--light);

}

.delivery-grid{

    display:grid;

    grid-template-columns:

        repeat(

            auto-fit,

            minmax(230px,1fr)

        );

    gap:25px;

}

.delivery-card{

    padding:35px 25px;

    border:1px solid

        rgba(0,0,0,.05);

    border-radius:20px;

    background:#ffffff;

    text-align:center;

    box-shadow:

        0 12px 30px

        rgba(0,0,0,.07);

    transition:.35s ease;

}

.delivery-card:hover{

    transform:translateY(-8px);

    box-shadow:

        0 20px 40px

        rgba(0,0,0,.12);

}

.delivery-card i{

    margin-bottom:20px;

    color:var(--primary);

    font-size:42px;

}

.delivery-card h3{

    margin-bottom:12px;

    color:var(--secondary);

    font-size:21px;

}

.delivery-card p{

    color:var(--text);

    font-size:15px;

    line-height:1.7;

}

/*====================================================
    FAQ SECTION
=====================================================*/

.faq{

    padding:100px 8%;

    background:#ffffff;

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq-item{

    margin-bottom:16px;

    overflow:hidden;

    border-radius:16px;

    background:#ffffff;

    box-shadow:

        0 10px 30px

        rgba(0,0,0,.07);

}

.faq-question{

    display:flex;

    align-items:center;

    justify-content:space-between;

    width:100%;

    padding:22px 25px;

    border:none;

    background:#ffffff;

    color:var(--secondary);

    font-family:inherit;

    font-size:16px;

    font-weight:700;

    text-align:left;

    cursor:pointer;

    transition:.3s ease;

}

.faq-question:hover{

    color:var(--primary);

}

.faq-question i{

    color:var(--primary);

    transition:.3s ease;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    background:#fafafa;

    transition:

        max-height .4s ease;

}

.faq-answer p{

    padding:

        0

        25px

        25px;

    color:var(--text);

    font-size:15px;

    line-height:1.8;

}

/*====================================================
    CTA SECTION
=====================================================*/

.cta-section{

    margin:80px 8%;

    padding:75px 30px;

    border-radius:28px;

    background:

        linear-gradient(

            135deg,

            var(--primary),

            var(--primary-dark)

        );

    color:#ffffff;

    text-align:center;

}

.cta-content h2{

    margin-bottom:18px;

    font-size:clamp(32px,5vw,48px);

}

.cta-content p{

    max-width:650px;

    margin:0 auto 30px;

    font-size:18px;

    line-height:1.7;

}

.cta-section .btn{

    background:#ffffff;

    color:var(--primary);

}

.cta-section .btn:hover{

    background:#f3f4f6;

}

/*====================================================
    FOOTER
=====================================================*/

footer{

    padding:75px 8% 25px;

    background:#111827;

    color:#ffffff;

}

.footer-container{

    display:grid;

    grid-template-columns:

        repeat(

            auto-fit,

            minmax(220px,1fr)

        );

    gap:40px;

}

.footer-box h3{

    margin-bottom:20px;

    color:var(--primary);

    font-size:21px;

}

.footer-box p{

    margin-bottom:14px;

    color:#d1d5db;

    line-height:1.7;

}

.footer-box a{

    display:block;

    margin-bottom:12px;

    color:#d1d5db;

    text-decoration:none;

    transition:.3s ease;

}

.footer-box a:hover{

    padding-left:6px;

    color:var(--primary);

}

.social-icons{

    display:flex;

    gap:12px;

}

.social-icons a{

    display:flex;

    align-items:center;

    justify-content:center;

    width:45px;

    height:45px;

    border-radius:50%;

    background:#1f2937;

    color:#ffffff;

    font-size:18px;

    transition:.3s ease;

}

.social-icons a:hover{

    transform:translateY(-5px);

    background:var(--primary);

}

/*====================================================
    FOOTER BOTTOM
=====================================================*/

.footer-bottom{

    margin-top:55px;

    padding-top:25px;

    border-top:1px solid

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

    color:#9ca3af;

    text-align:center;

}

/*====================================================
    FLOATING WHATSAPP
=====================================================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    z-index:999;

    display:flex;

    align-items:center;

    justify-content:center;

    width:62px;

    height:62px;

    border-radius:50%;

    background:#25D366;

    color:#ffffff;

    font-size:32px;

    text-decoration:none;

    box-shadow:

        0 15px 35px

        rgba(37,211,102,.35);

    animation:

        whatsappPulse 2s infinite;

    transition:.3s ease;

}

.whatsapp:hover{

    transform:scale(1.1);

}

@keyframes whatsappPulse{

    0%{

        box-shadow:

            0 0 0 0

            rgba(37,211,102,.65);

    }

    70%{

        box-shadow:

            0 0 0 18px

            rgba(37,211,102,0);

    }

    100%{

        box-shadow:

            0 0 0 0

            rgba(37,211,102,0);

    }

}

/*====================================================
    BACK TO TOP
=====================================================*/

#topBtn{

    position:fixed;

    right:25px;

    bottom:100px;

    z-index:998;

    display:none;

    align-items:center;

    justify-content:center;

    width:52px;

    height:52px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#ffffff;

    font-size:18px;

    cursor:pointer;

    box-shadow:

        0 10px 25px

        rgba(0,0,0,.18);

    transition:.3s ease;

}

#topBtn:hover{

    transform:translateY(-5px);

    background:var(--primary-dark);

}

/*====================================================
    RIPPLE EFFECT
=====================================================*/

.ripple{

    position:absolute;

    border-radius:50%;

    background:

        rgba(255,255,255,.35);

    transform:scale(0);

    pointer-events:none;

    animation:

        rippleAnimation .6s linear;

}

@keyframes rippleAnimation{

    to{

        transform:scale(4);

        opacity:0;

    }

}

/*====================================================
    TABLET
=====================================================*/

@media(max-width:991px){

    .products-hero{

        grid-template-columns:1fr;

        min-height:auto;

        padding:

            150px

            6%

            90px;

        text-align:center;

    }

    .hero-content p{

        margin-left:auto;

        margin-right:auto;

    }

    .hero-image{

        min-height:350px;

    }

    .hero-image img{

        width:min(100%,400px);

    }

    .products,

    .delivery-info,

    .faq{

        padding-left:6%;

        padding-right:6%;

    }

}

/*====================================================
    MOBILE
=====================================================*/

@media(max-width:768px){

    #menu-btn{

        display:flex;

        align-items:center;

        justify-content:center;

    }

    #navbar{

        position:fixed;

        top:0;

        right:-100%;

        z-index:1000;

        display:flex;

        align-items:center;

        justify-content:center;

        width:280px;

        height:100vh;

        background:#111827;

        box-shadow:

            -15px 0 40px

            rgba(0,0,0,.25);

        transition:.4s ease;

    }

    #navbar.active{

        right:0;

    }

    #navbar ul{

        display:flex;

        flex-direction:column;

        gap:28px;

        padding:0;

        list-style:none;

    }

    #navbar ul li a{

        color:#ffffff;

        font-size:18px;

    }

    .nav-btn{

        display:none;

    }

    .products-hero{

        padding-top:130px;

    }

    .hero-content h1{

        font-size:42px;

    }

    .hero-content p{

        font-size:16px;

    }

    .products-grid{

        grid-template-columns:1fr;

    }

    .cta-section{

        margin:

            50px 5%;

        padding:

            60px 25px;

    }

    .footer-container{

        grid-template-columns:1fr;

        text-align:center;

    }

    .social-icons{

        justify-content:center;

    }

}

/*====================================================
    SMALL MOBILE
=====================================================*/

@media(max-width:480px){

    .products-hero{

        padding:

            120px

            20px

            70px;

    }

    .hero-content h1{

        font-size:34px;

    }

    .tag{

        padding:10px 16px;

        font-size:12px;

    }

    .hero-image{

        min-height:280px;

    }

    .hero-image img{

        width:280px;

    }

    .search-section{

        padding-left:20px;

        padding-right:20px;

    }

    .search-box{

        padding:15px 18px;

    }

    .search-box input{

        font-size:15px;

    }

    .filter-section{

        padding-left:20px;

        padding-right:20px;

    }

    .filter-buttons{

        flex-direction:column;

    }

    .filter-btn{

        width:100%;

    }

    .products,

    .delivery-info,

    .faq{

        padding:

            70px 20px;

    }

    .product-card{

        padding:25px 20px;

    }

    .product-card img{

        width:160px;

        height:210px;

    }

    .product-card h3{

        font-size:23px;

    }

    .whatsapp{

        right:18px;

        bottom:18px;

        width:58px;

        height:58px;

        font-size:28px;

    }

    #topBtn{

        right:18px;

        bottom:90px;

        width:48px;

        height:48px;

    }

}
/*====================================================
    SHARED MOBILE NAVIGATION - MATCH HOME PAGE
=====================================================*/
@media (max-width: 992px){
    #menu-btn{
        display:flex;
        align-items:center;
        justify-content:center;
        width:50px;
        height:50px;
        border:none;
        border-radius:12px;
        background:rgba(255,255,255,.08);
        color:#fff;
        font-size:28px;
        cursor:pointer;
        transition:.35s ease;
        z-index:1200;
    }

    #navbar{
        position:fixed;
        top:0;
        right:-100%;
        width:320px;
        max-width:85%;
        height:100vh;
        padding:110px 35px 40px;
        background:rgba(17,24,39,.98);
        backdrop-filter:blur(20px);
        -webkit-backdrop-filter:blur(20px);
        transition:.4s ease;
        z-index:1100;
        overflow-y:auto;
        display:block;
    }

    #navbar.active{ right:0; }

    #navbar ul{
        display:flex;
        flex-direction:column;
        gap:10px;
        padding:0;
        margin:0;
        list-style:none;
    }

    #navbar ul li{ width:100%; }

    #navbar ul li a{
        display:flex;
        align-items:center;
        width:100%;
        padding:16px 20px;
        border-radius:14px;
        color:#fff;
        font-size:17px;
        font-weight:600;
        transition:.35s ease;
        text-decoration:none;
    }

    #navbar ul li a::after{ display:none; }

    #navbar ul li a:hover,
    #navbar ul li a.active{
        background:rgba(249,115,22,.12);
        color:var(--primary);
    }

    .nav-btn{ display:none; }
}

@media (max-width:576px){
    #navbar{ width:100%; max-width:100%; }
}


/* FAQ accordion fallback: active questions always reveal their answers. */
.faq-item.active .faq-answer{
    max-height:500px;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
}


/* Product information modal */
.product-modal{position:fixed;inset:0;z-index:3000;display:none;align-items:center;justify-content:center;padding:24px;}
.product-modal.active{display:flex;}
.product-modal-backdrop{position:absolute;inset:0;background:rgba(15,23,42,.78);backdrop-filter:blur(8px);}
.product-modal-dialog{position:relative;z-index:1;width:min(900px,100%);max-height:90vh;overflow:auto;display:grid;grid-template-columns:320px 1fr;background:#fff;border-radius:26px;box-shadow:0 30px 80px rgba(0,0,0,.35);}
.product-modal-close{position:absolute;right:16px;top:16px;width:44px;height:44px;border-radius:50%;background:#111827;color:#fff;font-size:20px;z-index:3;}
.product-modal-image-wrap{display:flex;align-items:center;justify-content:center;padding:40px;background:linear-gradient(145deg,#f8fafc,#eef2f7);min-height:420px;}
.product-modal-image-wrap img{max-height:340px;width:auto;object-fit:contain;}
.product-modal-content{padding:48px 42px;}
.modal-kicker{display:inline-block;color:#f97316;font-weight:700;font-size:12px;letter-spacing:1.2px;margin-bottom:8px;}
.product-modal-content h2{font-size:32px;color:#111827;margin-bottom:12px;}
.product-modal-content>p{color:#4b5563;line-height:1.8;}
.modal-price-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin:24px 0;}
.modal-price-grid>div{padding:18px;border:1px solid #e5e7eb;border-radius:16px;background:#f8fafc;}
.modal-price-grid span{display:block;font-size:13px;color:#6b7280;margin-bottom:5px;}
.modal-price-grid strong{font-size:22px;color:#111827;}
.modal-use-box{display:flex;gap:14px;padding:18px;border-radius:16px;background:#fff7ed;margin-bottom:18px;}
.modal-use-box>i{color:#f97316;font-size:24px;padding-top:4px;}
.modal-use-box h3{margin-bottom:4px;color:#111827;}
.modal-use-box p{margin:0;color:#4b5563;line-height:1.6;}
.modal-note{font-size:12px!important;color:#6b7280!important;margin-bottom:22px;}
.modal-order-btn{display:inline-flex;align-items:center;gap:9px;padding:14px 22px;border-radius:12px;background:#f97316;color:#fff;font-weight:700;}
.info-btn{border:0;cursor:pointer;font-family:inherit;width:100%;}
@media(max-width:700px){.product-modal{padding:14px;}.product-modal-dialog{grid-template-columns:1fr;max-height:92vh;border-radius:20px;}.product-modal-image-wrap{min-height:230px;padding:25px;}.product-modal-image-wrap img{max-height:190px;}.product-modal-content{padding:28px 22px 30px;}.product-modal-content h2{font-size:26px;}.modal-price-grid{grid-template-columns:1fr;}.product-modal-close{right:12px;top:12px;}}

/* Product info links behave visually like buttons and navigate to a detail page. */
a.info-btn{display:flex;align-items:center;justify-content:center;text-decoration:none;}
