/* @import 'tailwind.css'; */

/* ============================================
           RESET & BASE
        ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 26px;
    color: #777777;
    background: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
    line-height: 1.2;
    margin: 0;
}

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

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

ul {
    list-style: none;
}

p {
    margin: 0;
}

/* ============================================
           CUSTOM SCROLLBAR
        ============================================ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #4178F2;
    border-radius: 3px;
}


/* ===== ANIMATIONS ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .rev-slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .rev-slide-img {
        margin: 0 auto;
        max-width: 400px;
        height: 300px;
    }

    .rev-title {
        margin: 0 auto 30px;
        font-size: 32px;
        line-height: 44px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-item {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .catalog-img {
        min-height: 350px;
    }

    .catalog-content {
        padding: 60px 25px;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-btn-wrap {
        text-align: center;
    }
}

@media (max-width: 768px) {

    .revslider-container {
        min-height: 600px;
        height: auto;
        padding: 120px 0 80px;
    }

    .rev-title {
        font-size: 26px;
        line-height: 36px;
    }

    .rev-slide-img {
        max-width: 280px;
        height: 220px;
    }

    .tp-bullets {
        gap: 20px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .tparrows {
        display: none;
    }

    .rev-slide-inner {
        padding: 0 15px;
    }
}


/* Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.done {
    opacity: 0;
    visibility: hidden;
}

.page-loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #eee;
    border-top-color: #4178F2;
    border-radius: 50%;
    animation: loaderSpin 0.8s linear infinite;
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}

/* catalog banner */
.catalog-banner{
    background: #1f1b20;
    color: #fff;
    text-align: center;
    height: 42px;
    line-height: 42px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Catalog Wrapper */
.catalog-wrapper {
    width: 100%;
    height: calc(100vh - 120px);
}

.catalog-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}