/* @import 'tailwindcss'; */
/* ===== 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: 1.6;
    color: #777;
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

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

/* ===== HERO SLIDER (Revolution Slider clone) ===== */
.revslider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: #000;
}

.rev-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.rev-slide.active {
    opacity: 1;
    visibility: visible;
}

.rev-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* filter: brightness(0.35); */
}

.rev-slide-inner {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    height: 100%;
    display: flex;
    align-items: center;
}

.rev-slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.rev-slide-img-wrap {
    position: relative;
    transform: translateX(-80px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.rev-slide.active .rev-slide-img-wrap {
    transform: translateX(0);
    opacity: 1;
}

.rev-slide-img {
    width: 100%;
    max-width: 500px;
    height: 380px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.rev-slide-text {
    transform: translateX(60px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.rev-slide.active .rev-slide-text {
    transform: translateX(0);
    opacity: 1;
}

.rev-label {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    margin-bottom: 20px;
    display: block;
}

.rev-label.pink {
    color: #ea0d80;
}

.rev-label.yellow {
    color: #fcee21;
}

.rev-label.green {
    color: #13b24a;
}

.rev-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 56px;
    color: #fff;
    margin-bottom: 35px;
    max-width: 430px;
}

.rev-btn {
    display: inline-block;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #fff;
    border: 2px solid #fff;
    padding: 16px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
}

.rev-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.3s ease;
}

.rev-btn:hover {
    color: #fff;
}

.rev-btn.pink-hover::before {
    background: #ea0d80;
}

.rev-btn.pink-hover:hover {
    border-color: #ea0d80;
}

.rev-btn.yellow-hover::before {
    background: #fcee21;
}

.rev-btn.yellow-hover:hover {
    border-color: #fcee21;
    color: #000;
}

.rev-btn::before {
    transform: translateX(-101%);
}

.rev-btn:hover::before {
    transform: translateX(0);
}

/* Slider bullets (Hermes style) */
.tp-bullets {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 32px;
    z-index: 100;
}

.tp-bullet {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tp-bullet::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #fff;
    transition: height 0.3s ease;
    border-radius: 50%;
}

.tp-bullet.selected::after,
.tp-bullet.active::after {
    height: 100%;
}

.tp-bullet:hover {
    border-color: #fff;
}

/* Slider arrows (Uranus style) */
.tparrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0);
    font-size: 32px;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tparrows:hover {
    color: rgba(255, 255, 255, 0.75);
}

.tp-leftarrow {
    left: 30px;
}

.tp-rightarrow {
    right: 30px;
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
    position: relative;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

/* About Section */
.about-section {
    background: #fff;
    text-align: center;
    padding: 100px 0;
}

.section-subtitle {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #000;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 1.3;
    color: #000;
    margin-bottom: 25px;
}

.section-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    max-width: 700px;
    margin: 0 auto 35px;
}

.btn-outline {
    display: inline-block;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: #000;
    border: 2px solid #000;
    padding: 16px 32px 16px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    transform: translateX(-101%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn-outline:hover {
    color: #fff;
}

.btn-outline:hover::before {
    transform: translateX(0);
}

/* =========================
   CATALOG SECTION
========================= */

.catalog-section {
    background: #1c1a20;
    padding: 90px 0;
}

.catalog-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.catalog-img-wrap {
    flex: 1;
}

.catalog-img {
    width: 100%;
    max-width: 470px;
    display: block;
}

.catalog-content {
    flex: 1;
}

.catalog-content .section-subtitle {
    color: #ffe600;
    font-size: 18px;
    font-weight: 400;
    text-transform: none;
    margin-bottom: 20px;
}

.catalog-content .section-title {
    color: #fff;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.catalog-content .section-desc {
    color: rgba(255,255,255,.75);
    font-size: 18px;
    line-height: 1.8;
    max-width: 520px;
}

/* =========================
   Responsive
========================= */

@media (max-width:991px){

    .catalog-grid{
        flex-direction: column;
        text-align:center;
        gap:50px;
    }

    .catalog-img{
        margin:auto;
    }

    .catalog-content .section-desc{
        margin:auto;
    }

    .catalog-content .section-title{
        font-size:42px;
    }

}

@media (max-width:576px){

    .catalog-section{
        padding:60px 0;
    }

    .catalog-content .section-title{
        font-size:32px;
    }

    .catalog-content .section-subtitle{
        font-size:18px;
    }

    .catalog-content .section-desc{
        font-size:16px;
    }

    .btn-outline{
        width:100%;
        padding:18px;
        font-size:16px;
    }

}

/* Products Section */
.products-section {
    background: #000 !important;
    padding: 100px 0 !important;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.product-item {
    background: #fff;
    text-align: center;
    padding: 0;
    transition: all 0.4s ease;
    border-right: 1px solid #eee;
    margin: 10px;
}

.product-item:last-child {
    border-right: none;
}

.product-item:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    z-index: 2;
    position: relative;
}

.product-img-wrap {
    /* padding: 40px 30px 20px; */
    overflow: hidden;
}

.product-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    transition: transform 0.6s ease;
}

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

.product-info {
    padding: 20px 30px 40px;
}

.product-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #13B24A !important;
    margin-bottom: 12px;
}

.product-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #777;
}

.products-cta {
    text-align: center;
    margin-top: 50px;
}

/* CTA Section */
.cta-section {
    background: #F2D741;
    padding: 80px 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.cta-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFF;
    line-height: 1.3;
    margin-bottom: 10px;
}

.cta-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #FFFF;
}

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

.btn-filled {
    display: inline-block;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: #fff;
    background: #000;
    padding: 16px 32px 16px 32px;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.btn-filled:hover {
    background: transparent;
    color: #000;
}

/* ===== 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) {
    .menu-toggle {
        display: block;
    }

    .main-nav,
    .header-cta {
        display: none;
    }

    .header-inner {
        height: 70px;
    }

    .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;
    }
}

/* Mobile nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 30px;
    overflow-y: auto;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000;
}

.mobile-nav-links {
    list-style: none;
    margin-top: 50px;
}

.mobile-nav-links li {
    margin-bottom: 5px;
}

.mobile-nav-links a {
    display: block;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: #4178F2;
}

/* 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);
    }
}


/* ============================================
           PAGE TITLE / TITLE BAR
        ============================================ */
.title-bar {
    background: #f8f8f8;
    padding: 140px 0 50px;
    text-align: center;
    border-bottom: 1px solid #eeeeee;
    position: relative;
}

.title-bar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #4178F2;
}

.page-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
    letter-spacing: 1px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.breadcrumb {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: #999999;
    line-height: 1.6;
}

.breadcrumb a {
    color: #777777;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #4178F2;
}

.breadcrumb-sep {
    margin: 0 8px;
    color: #cccccc;
}

/* ============================================
    PRODUCT CATEGORIES GRID
    Layout: 2 colonnes, image | content
============================================ */
.products-section {
    padding: 0;
    background: #000;
}

.products-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
}

.product-cat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #eeeeee;
    min-height: 500px;
}

.product-cat-row:nth-child(even) .product-cat-img-wrap {
    order: 2;
}

.product-cat-row:nth-child(even) .product-cat-content {
    order: 1;
}

/* Image Side */
.product-cat-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.product-cat-img {
    max-width: 100%;
    max-height: 380px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-cat-row:hover .product-cat-img {
    transform: scale(1.05);
}

/* Content Side */
.product-cat-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    background: #ffffff;
}

.product-cat-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.product-cat-list {
    margin-bottom: 25px;
}

.product-cat-list li {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 2.2;
    color: #777777;
    position: relative;
    padding-left: 18px;
}

.product-cat-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    top: 0;
    color: #4178F2;
    font-weight: bold;
    font-size: 16px;
}

.product-cat-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    line-height: 1.9;
    color: #999999;
    font-style: italic;
}

.product-cat-desc p {
    margin-bottom: 8px;
}

.product-cat-desc p:last-child {
    margin-bottom: 0;
}

/* ============================================
    SUB-CATEGORIES SECTION
============================================ */
.sub-cats-section {
    background: #f8f8f8;
    padding: 80px 0;
}

.sub-cats-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

.sub-cats-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #ffffff;
    border: 1px solid #eeeeee;
}

.sub-cat-item {
    padding: 40px 25px;
    text-align: center;
    border-right: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    transition: all 0.35s ease;
    cursor: pointer;
}

.sub-cat-item:nth-child(4n) {
    border-right: none;
}

.sub-cat-item:nth-last-child(-n+4) {
    border-bottom: none;
}

.sub-cat-item:hover {
    background: #fafafa;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    z-index: 2;
    position: relative;
}

.sub-cat-icon {
    font-size: 32px;
    color: #4178F2;
    margin-bottom: 15px;
    opacity: 0.7;
    transition: all 0.35s ease;
}

.sub-cat-item:hover .sub-cat-icon {
    opacity: 1;
    transform: translateY(-3px);
}

.sub-cat-name {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
    letter-spacing: 0.5px;
    line-height: 1.4;
}
