/* Global Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #000;
    --text-color: #333;
    --bg-color: #fff;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

/* Safety for all structural elements */
.hero-section,
.main-content,
.featured-products-section,
.product-categories-section,
.references-section,
footer {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: #111;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.5px;
    color: #CAC7C7;
    margin-bottom: 20px;
    text-transform: uppercase;
    /* Keeping uppercase as it's standard for the site design */
    /* Highlight effect from screenshot */
    background-image: linear-gradient(0deg, #FAF7F2 30%, transparent 40%);
    background-repeat: no-repeat;
    display: inline-block;
    padding: 0 25px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
        padding: 0 15px;
    }
}

p {
    margin-bottom: 15px;
    color: #9B9B9B;
    font-weight: 200;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.main-content {
    min-height: 100vh;
}

/* Global Container */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1400px;
}

@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 540px;
    }
}

/* Global Swiper Navigation */
.swiper-button-next,
.swiper-button-prev,
.swiper-button-next:after,
.swiper-button-prev:after {
    color: #ffffff !important;
}

/* Lightbox Z-Index Fix */
:root {
    --fancybox-zIndex: 11000;
}

.fancybox__container {
    z-index: 11000 !important;
}