body {

    font-family: Arial, sans-serif;

    margin: 0;

}



/* container */

.container {

    max-width: 1100px;

    margin: auto;

    padding: 20px;

}



/* hero */




.btn {

    display: inline-block;

    margin-top: 20px;

    padding: 12px 25px;

    background: black;

    color: white;

    text-decoration: none;

}



/* sections */

.categories, .products {

    padding: 50px 0;

    text-align: center;

}



/* grid */

.grid {

    display: grid;

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

    gap: 20px;

}



/* cards */

.card {

    border: 1px solid #ddd;

    padding: 30px;

    background: #fff;

}



/* product */

.product-card {

    border: 1px solid #ddd;

    padding: 15px;

}



.product-card img {

    width: 100%;

}



/* CTA */

.cta {

    background: black;

    color: white;

    text-align: center;

    padding: 60px 20px;

}



/* responsive */

@media(max-width: 768px){

    .grid {

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

    }

}



/* HEADER */

.header {

    background: black;

    color: white;

    padding: 15px 0;

}



.nav {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.nav a {

    color: white;

    margin-left: 20px;

    text-decoration: none;

}



/* HERO */

.hero {

    background: linear-gradient(to right, #000, #333);

    color: white;

    text-align: center;

    padding: 100px 20px;

}



.hero h1 {

    font-size: 48px;

}



/* CATEGORY CARDS */

.card {

    border: 1px solid #eee;

    padding: 30px;

    background: white;

    font-weight: bold;

    transition: 0.3s;

}



.card:hover {

    transform: translateY(-5px);

}



/* CATEGORY IMAGE FIX */
.cat-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* GRID FIX */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD IMPROVEMENT */
.card {
    border: 1px solid #eee;
    background: white;
    text-align: center;
    padding: 10px;
    overflow: hidden;
}

/* TEXT */
.card p {
    margin-top: 10px;
    font-weight: bold;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* CATEGORY IMAGE CONTAINER */
.card-img {
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s;
}

/* OVERLAY */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 15px;
    text-align: center;
}

/* HOVER EFFECT */
.card-img:hover img {
    transform: scale(1.05);
}

.container {
    max-width: 1200px;
}

.hero {
    background: url('/wp-content/uploads/banner.jpg') center/cover no-repeat;
    color: white;
}
/* PRODUCT CARD */
.product-card {
    border: 1px solid #eee;
    background: white;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-info h3 {
    font-size: 16px;
    margin: 10px 0;
}

.price {
    font-weight: bold;
    margin-bottom: 10px;
}

.btn-small {
    display: inline-block;
    padding: 10px 20px;
    background: black;
    color: white !important;
    margin-top: 10px;
    font-size: 14px;
    border-radius: 3px;
    text-decoration: none;
    text-align: center;
}
/* WHATSAPP BUTTON */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
/* REMOVE BLUE LINKS */
.product-card a {
    text-decoration: none;
    color: black;
}

/* PRODUCT TITLE */
.product-info h3 {
    font-size: 16px;
    font-weight: 600;
}

/* PRICE */
.price {
    color: #000;
    font-weight: bold;
}

/* BUTTON */
.btn-small {
    display: inline-block;
    padding: 8px 15px;
    background: black;
    color: white;
    margin-top: 10px;
}
.product-card a {
    color: inherit;
}

.product-card a.btn-small {
    color: white !important;
}
.btn-small:hover {
    background: #333;
}
/* PRODUCT PAGE */
.product-layout {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.product-left img {
    width: 100%;
}

.product-right {
    width: 50%;
}

.product-right select,
.product-right input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

.btn-main {
    background: #25D366;
    color: white;
    padding: 15px;
    border: none;
    width: 100%;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
}
/* REMOVE DEFAULT WOOCOMMERCE */
.woocommerce div.product form.cart,
.woocommerce .product_meta,
.woocommerce div.product .woocommerce-tabs {
    display: none !important;
}
.product-layout {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    align-items: flex-start;
}

.product-left {
    width: 50%;
}

.product-right {
    width: 50%;
}

/* MOBILE */
@media(max-width:768px){
    .product-layout {
        flex-direction: column;
    }
}
.product-right label {
    font-weight: bold;
    margin-top: 15px;
    display: block;
}

.product-right select,
.product-right input {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #ccc;
}
.bulk-form {
    max-width: 500px;
    margin: auto;
}

.bulk-form input,
.bulk-form select,
.bulk-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
}

.bulk-form button {
    width: 100%;
}
body {
    font-family: 'Poppins', sans-serif;
}

.hero {
    background: url('/wp-content/uploads/banner.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 140px 20px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 600;
}

.hero p {
    font-size: 18px;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 30px;
    font-size: 14px;
}

h2 {
    margin-bottom: 20px;
}

section {
    margin-bottom: 40px;
}
/* GLOBAL */
body {
    background: #fafafa;
}

section {
    padding: 80px 0;
}

/* HERO */
.hero {
    background: url('/wp-content/uploads/banner.jpg') center/cover no-repeat;
    position: relative;
    color: white;
    text-align: center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 52px;
    font-weight: 600;
}

.hero p {
    font-size: 18px;
    margin-top: 10px;
}

/* BUTTONS */
.hero-btns {
    margin-top: 20px;
}

.btn {
    background: #ff3c00;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    margin: 5px;
    display: inline-block;
}

.btn-outline {
    border: 2px solid white;
    padding: 12px 25px;
    color: white;
}

/* TRUST */
.trust {
    background: white;
    text-align: center;
    font-weight: 500;
}

/* CATEGORY */
.card-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.card-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.3s;
}

.card-img span {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    font-weight: bold;
}

.card-img:hover img {
    transform: scale(1.05);
}

/* PRODUCTS */
.product-card {
    border-radius: 10px;
    overflow: hidden;
    background: white;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* CTA */
.cta {
    background: #111;
    color: white;
    text-align: center;
}

/* MOBILE */
@media(max-width:768px){
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 30px;
    }
}
/* HERO SLIDER */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    color: white;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

/* overlay */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}