* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*html {
    scroll-behavior: smooth;
}*/

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    --primary: #3B322C;
    --secondary: #8B7355;
    --light: #FAF7F2;
    --white: #FFFFFF;
    --text: #2B2B2B;
    --border: #E7DED3;
}

body {
    background: var(--light);
    color: var(--text);
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Accent Colors */

.accent {
    color: var(--secondary);
}

.accent-bg {
    background: var(--primary);
}

.accent-border {
    border-color: var(--secondary);
}

/* Hero */

.hero-bg {
    background: linear-gradient( rgba(250,247,242,.88), rgba(250,247,242,.88)), url('/images/granite-banner.jpg');
    background-size: cover;
    background-position: center;
}

/* Cards */

.glass {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(59,50,44,.08);
    transition: .4s;
}

    .glass:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(59,50,44,.15);
    }

/* Product Cards */

.product-card {
    transition: .4s;
    border: 1px solid var(--border);
}

    .product-card:hover {
        transform: translateY(-10px);
    }

    .product-card img {
        transition: .7s;
    }

    .product-card:hover img {
        transform: scale(1.08);
    }

/* FAQ */

.faq-content {
    display: none;
}

.faq.active .faq-content {
    display: block;
}

.faq.active i {
    transform: rotate(45deg);
}

.faq i {
    transition: .3s;
    color: var(--secondary);
}

/* Counter Cards */

.counter-card {
    background: white;
    border: 1px solid var(--border);
    transition: .4s;
}

    .counter-card:hover {
        transform: translateY(-5px);
    }

/* Why Us */

.why-card {
    background: white;
    border: 1px solid var(--border);
    transition: .4s;
}

    .why-card:hover {
        transform: translateY(-10px);
    }

/* Section Titles */

.section-subtitle {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-title {
    color: var(--primary);
}

/* Buttons */

.btn-primary {
    background: var(--primary);
    color: white;
    transition: .3s;
}

    .btn-primary:hover {
        background: #2d2621;
    }

.btn-outline {
    border: 1px solid var(--secondary);
    color: var(--primary);
    transition: .3s;
}

    .btn-outline:hover {
        background: var(--secondary);
        color: white;
    }

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: #fff;
}

.heroSwiper .swiper-pagination-bullet {
    background: #fff;
    opacity: .7;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: #8B7355;
    opacity: 1;
}

.classes {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

@media(max-width:992px){

    .gap-class{
        gap:25px;
    }
}

@media(max-width:540px){
    .premium{
        font-size:34px !important;
    }

    .classes{
        display: flex;
        flex-direction: column;
    }

    .gap-class{
        gap:25px;
    }
}

.testimonialSwiper {
    overflow: hidden;
    padding: 20px 5px 60px;
}

    .testimonialSwiper .swiper-slide {
        height: auto;
    }

        .testimonialSwiper .swiper-slide > div {
            height: 100%;
        }

    .testimonialSwiper .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: #C79A63;
        opacity: .35;
    }

    .testimonialSwiper .swiper-pagination-bullet-active {
        opacity: 1;
        background: #8B7355;
    }

.floating-icons {
    position: fixed;
    right: 20px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

    .floating-icons a {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 22px;
        color: white!important;
        text-decoration: none;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        transition: 0.3s;
    }

/* WhatsApp button */
.whatsapp-btn {
    background: #25D366;
}

/* Hover effect */
.floating-icons a:hover {
    transform: scale(1.1);
}