/*==================================================
    ROOT VARIABLES
==================================================*/

:root{

    --primary:#d71920;
    --primary-dark:#b51218;

    --secondary:#071b38;

    --dark:#08111d;
    --dark-light:#132236;

    --white:#ffffff;

    --text:#d9dee6;
    --muted:#a9b3bf;

    --border:rgba(255,255,255,.08);

    --card-bg:rgba(255,255,255,.05);

    --radius:24px;

    --shadow-sm:0 10px 30px rgba(0,0,0,.18);
    --shadow-md:0 20px 50px rgba(0,0,0,.25);
    --shadow-lg:0 30px 70px rgba(0,0,0,.35);

    --transition:.35s ease;

}


/*==================================================
    RESET
==================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}


/*==================================================
    WORDPRESS LAYOUT
==================================================*/

.site-content,
.content-area,
.site-main{

    width:100% !important;

    max-width:100% !important;

    padding:0 !important;

}

.container{

    width:min(1750px,99%);

    margin:auto;

    padding:0 10px;

}


/*==================================================
    PAGE BACKGROUND
==================================================*/

#content{

    background:

    linear-gradient(

        rgba(5,11,20,.92),

        rgba(5,11,20,.92)

    ),

    url("../images10/16.webp");

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

}


/*==================================================
    TYPOGRAPHY
==================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--white);

    font-weight:800;

    line-height:1.15;

}

p{

    color:var(--text);

    line-height:1.8;

}

a{

    text-decoration:none;

    color:inherit;

    transition:var(--transition);

}

img{

    display:block;

    max-width:100%;

    height:auto;

}


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

.product-card a{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    min-width:190px;

    height:52px;

    padding:0 28px;

    background:var(--primary);

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.product-card a:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

    box-shadow:var(--shadow-md);

}


/*==================================================
    COMMON SECTION
==================================================*/

section{

    position:relative;

    padding:110px 0;

}


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

@media(max-width:991px){

    section{

        padding:90px 0;

    }

}

@media(max-width:768px){

    section{

        padding:70px 0;

    }

}
/*==================================================
    HERO SECTION
==================================================*/

.centralizer-hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    padding:140px 0 110px;

}


/* Decorative Grid */

.centralizer-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),

        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

    background-size:60px 60px;

    opacity:.45;

    pointer-events:none;

}


/* Red Glow */

.centralizer-hero::after{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    top:-180px;

    right:-180px;

    background:

        radial-gradient(circle,

        rgba(215,25,32,.18),

        transparent 72%);

    pointer-events:none;

}


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

.hero-content{

    position:relative;

    z-index:2;

    text-align:center;

    max-width:1200px;

    margin:auto;

}


.hero-title{

    font-size:clamp(3.5rem,7vw,6.8rem);

    line-height:.95;

    font-weight:900;

    letter-spacing:-3px;

    color:#fff;

    margin-bottom:35px;

}


.hero-desc{

    max-width:820px;

    margin:0 auto;

    font-size:1.15rem;

    line-height:1.9;

    color:var(--text);

}


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

.hero-image{

    margin-top:70px;

}


.hero-image img{

    width:100%;

    max-width:720px;

    margin:auto;

    filter:drop-shadow(0 30px 60px rgba(0,0,0,.45));

    transition:.5s ease;

}


.hero-image img:hover{

    transform:translateY(-8px) scale(1.02);

}


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

@media(max-width:992px){

    .centralizer-hero{

        min-height:auto;

        padding:120px 0 90px;

    }

    .hero-title{

        font-size:4.5rem;

    }

}


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

@media(max-width:768px){

    .centralizer-hero{

        padding:110px 0 70px;

    }

    .hero-title{

        font-size:3rem;

        letter-spacing:-1px;

        line-height:1.05;

    }

    .hero-desc{

        font-size:1rem;

        line-height:1.8;

    }

    .hero-image{

        margin-top:50px;

    }

    .hero-image img{

        max-width:90%;

    }

}


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

@media(max-width:480px){

    .hero-title{

        font-size:2.4rem;

    }

}
/*==================================================
    PRODUCT CATEGORY
==================================================*/

.product-category{

    position:relative;

    padding:100px 0;

    overflow:hidden;

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

    border-top:1px solid rgba(255,255,255,.05);

}


/* Alternate Background */

.product-category:nth-of-type(even){

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

}


/* Decorative Glow */

.product-category::before{

    content:"";

    position:absolute;

    top:-160px;

    right:-160px;

    width:360px;

    height:360px;

    border-radius:50%;

    background:

        radial-gradient(

            circle,

            rgba(215,25,32,.08),

            transparent 72%

        );

    pointer-events:none;

}


/*==================================================
    CATEGORY HEADER
==================================================*/

.category-header{

    text-align:center;

    margin-bottom:70px;

}


.category-header h2{

    position:relative;

    display:inline-block;

    font-size:clamp(2.2rem,4vw,3.8rem);

    font-weight:800;

    color:#fff;

    letter-spacing:-1px;

    line-height:1.15;

    padding-bottom:18px;

}


/* Underline */

.category-header h2::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:0;

    transform:translateX(-50%);

    width:90px;

    height:4px;

    border-radius:20px;

    background:linear-gradient(

        90deg,

        var(--primary),

        #ff6b6b

    );

}


/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:768px){

    .product-category{

        padding:70px 0;

    }

    .category-header{

        margin-bottom:50px;

    }

    .category-header h2{

        font-size:2rem;

    }

}


@media(max-width:480px){

    .category-header h2{

        font-size:1.7rem;

        line-height:1.3;

    }

}
/*==================================================
    PRODUCT GRID
==================================================*/

.product-grid{

    display:grid;

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

    gap:35px;

    align-items:stretch;

}


/* 4-column categories */

.product-grid:has(.product-card:nth-child(4)){

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

}


/* 6-column categories */

.product-grid:has(.product-card:nth-child(6)){

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

}


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

.product-card{

    position:relative;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    min-height:520px;

    padding:35px 28px;

    border-radius:26px;

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

    backdrop-filter:blur(18px);

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

    transition:all .35s ease;

    overflow:hidden;

}


/* Top Accent */

.product-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        var(--primary),
        #ff6666
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}


.product-card:hover::before{

    transform:scaleX(1);

}


.product-card:hover{

    transform:translateY(-10px);

    border-color:rgba(215,25,32,.35);

    box-shadow:0 25px 60px rgba(0,0,0,.35);

}


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

.product-image{

    height:240px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:30px;

}


.product-image img{

    max-width:100%;

    max-height:210px;

    object-fit:contain;

    transition:.45s ease;

}


.product-card:hover .product-image img{

    transform:scale(1.06);

}


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

.product-card h3{

    font-size:1.7rem;

    color:#fff;

    margin-bottom:16px;

}


.product-card p{

    color:var(--text);

    line-height:1.8;

    margin-bottom:30px;

    flex-grow:1;

}


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

.product-card a{

    margin-top:auto;

}


/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:1400px){

    .product-grid{

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

    }

}


@media(max-width:1100px){

    .product-grid{

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

    }

}


@media(max-width:768px){

    .product-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .product-card{

        min-height:auto;

        padding:30px 22px;

    }

    .product-image{

        height:210px;

    }

    .product-image img{

        max-height:180px;

    }

    .product-card h3{

        font-size:1.45rem;

    }

}


@media(max-width:480px){

    .product-card{

        padding:24px 18px;

    }

    .product-image{

        height:180px;

    }

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

.footer{
    background:#050505;
    color:#fff;
    position:relative;
    overflow:hidden;
}

/* Top Border */

.footer::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#d32f2f,#ff5a5a,#d32f2f);
}

/* Footer Layout */

.footer-top{
    max-width:1400px;
    margin:auto;
    padding:80px 8% 60px;
    display:grid;
    grid-template-columns:1.6fr 1fr 1fr 1fr;
    gap:45px;
    position:relative;
    z-index:2;
}

/* Footer Column */

.footer-box{
    padding-right:20px;
}

/* Main Heading */

.footer-box h3{
    color:#d32f2f;
    font-size:22px;
    font-weight:700;
    margin-bottom:22px;
    position:relative;
    display:inline-block;
}

/* Underline */

.footer-box h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:45px;
    height:3px;
    background:#d32f2f;
    border-radius:20px;
}

/* Company Name */

.footer-box h4{
    color:#fff;
    font-size:18px;
    line-height:1.5;
    margin-bottom:18px;
    font-weight:600;
}

/* Paragraph */

.footer-box p{
    color:#b8b8b8;
    line-height:1.9;
    font-size:15px;
    margin-bottom:14px;
}

/* Lists */

.footer-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-box ul li{
    margin-bottom:14px;
}

/* Links */

.footer-box ul li a{
    color:#cfcfcf;
    text-decoration:none;
    display:inline-block;
    transition:all .3s ease;
}

.footer-box ul li a:hover{
    color:#d32f2f;
    transform:translateX(6px);
}

/* Sub Sections */

.footer-sub-box{
    margin-bottom:40px;
}

.footer-sub-box:last-child{
    margin-bottom:0;
}
/* ==========================
   SOCIAL ICONS
========================== */

.footer-social{
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:30px;
    flex-wrap:wrap;
}

.footer-social a{
    width:46px;
    height:46px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    transition:all .35s ease;
}

.footer-social a:hover{
    background:#d32f2f;
    border-color:#d32f2f;
    transform:translateY(-5px) scale(1.08);
    box-shadow:0 15px 30px rgba(211,47,47,.35);
}

/* ==========================
   CONTACT LINKS
========================== */

.contact-link,
.phone-link,
.whatsapp-link,
.website-link,
.footer-address{

    display:flex;
    align-items:flex-start;
    gap:12px;

    width:100%;

    color:#cfcfcf;

    text-decoration:none;

    margin-bottom:14px;

    transition:all .3s ease;

}

/* Icons */

.contact-link i,
.phone-link i,
.whatsapp-link i{

    min-width:20px;

    font-size:18px;

    margin-top:2px;

}

/* Phone */

.phone-link i{
    color:#d32f2f;
}

.phone-link:hover{
    color:#fff;
    transform:translateX(5px);
}

/* Email */

.contact-link i{
    color:#d32f2f;
}

.contact-link:hover{
    color:#fff;
    transform:translateX(5px);
}

/* WhatsApp */

.whatsapp-link i{
    color:#25D366;
}

.whatsapp-link:hover{
    color:#25D366;
    transform:translateX(5px);
}

.whatsapp-link:hover i{
    transform:scale(1.15);
}

/* Website */

.website-link{
    color:#cfcfcf;
}

.website-link:hover{
    color:#d32f2f;
    transform:translateX(5px);
}

/* Address */

.footer-address{
    color:#cfcfcf;
}

.footer-address:hover{
    color:#d32f2f;
    transform:translateX(5px);
}

/* Supplier Logo */

.supplier-logo{

    width:150px;

    height:auto;

    display:block;

    margin-top:12px;

    padding:8px;

    background:#fff;

    border-radius:8px;

    transition:.35s ease;

}

.supplier-logo:hover{

    transform:scale(1.05);

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

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

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding:30px 8%;
    text-align:center;
    background:#030303;
}

.footer-links{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:30px;
    margin-bottom:18px;
}

.footer-links a{
    color:#bfbfbf;
    text-decoration:none;
    font-size:15px;
    transition:all .3s ease;
}

.footer-links a:hover{
    color:#d32f2f;
}

.footer-bottom p{
    color:#8d8d8d;
    font-size:14px;
    line-height:1.8;
    margin:0;
}

/* ==========================
   FLOATING SOCIAL
========================== */

.floating-social{
    position:fixed;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9999;
}

.floating-social a{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    background:#071b38;
    box-shadow:0 10px 25px rgba(0,0,0,.18);
    transition:all .35s ease;
}

.floating-social a:hover{
    background:#d32f2f;
    transform:translateX(-6px) scale(1.08);
}

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

@media(max-width:991px){

    .footer-top{

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

        gap:45px;

    }

    .footer-box{

        padding-right:0;

    }

}

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

@media(max-width:768px){

    .footer-top{

        grid-template-columns:1fr;

        text-align:center;

        padding:60px 25px;

    }

    .footer-box{

        padding:0;

    }

    .footer-box h3::after{

        left:50%;

        transform:translateX(-50%);

    }

    .footer-social{

        justify-content:center;

    }

    .contact-link,
    .phone-link,
    .whatsapp-link,
    .website-link,
    .footer-address{

        justify-content:center;

        text-align:center;

    }

    .footer-links{

        flex-direction:column;

        gap:12px;

    }

    .floating-social{

        right:12px;

    }

    .floating-social a{

        width:44px;

        height:44px;

        font-size:17px;

    }

}

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

@media(max-width:480px){

    .footer-top{

        padding:50px 20px;

    }

    .footer-box h3{

        font-size:20px;

    }

    .footer-box h4{

        font-size:17px;

    }

    .footer-box p{

        font-size:14px;

    }

    .footer-links a{

        font-size:14px;

    }

}