/* ============================================================
   VAPORE – FULL SITE CSS (HEADER #1F1A17, FULL-WIDTH FOOTER)
============================================================ */

/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================================
   HEADER + NAVIGATION (#1F1A17)
============================================================ */

.main-header {
    width: 100%;
    background: #1F1A17;
    border-bottom: 1px solid #332820;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 4px 18px rgba(0,0,0,0.45);
}

.jac-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.jac-logo {
    flex-shrink: 0;
}
.jac-logo img {
    height: 48px;
    width: auto;
    display: block;
}

/* Main menu */
.jac-menu {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.jac-menu > li {
    position: relative;
}

.jac-menu > li > a {
    font-size: 15px;
    font-weight: 600;
    color: #f28b2f;
    text-decoration: none;
    padding: 12px 0;
    display: block;
    white-space: nowrap;
    transition: color 0.3s, border-color 0.3s;
}

.jac-menu > li > a:hover {
    color: #ffffff;
    border-bottom: 2px solid #f28b2f;
}

/* Mega menu */
.mega-item {
    position: relative;
    padding: 0 6px;
}

.mega-menu {
    position: fixed;
    top: 98px;
    left: 50%;
    transform: translateX(-50%);
    width: min(95vw, 1400px);
    background: #ffffff;
    padding: 40px 60px;
    display: flex;
    gap: 60px;
    border-radius: 0 0 16px 16px;
    border: 1px solid #e5e5e5;
    border-top: none;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 9998;
}

.mega-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-left {
    flex: 2;
}
.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.m-item {
    text-align: center;
    cursor: pointer;
}
.m-item img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    border-radius: 10px;
}
.m-item p {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.mega-info {
    flex: 1;
    padding: 28px;
    background: #f6f6f6;
    border-radius: 14px;
}
.mega-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111;
}
.mega-info p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
    color: #555;
}
.info-btn {
    display: inline-block;
    background: #E7791D;
    color: #fff;
    padding: 12px 22px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s, transform 0.3s;
}
.info-btn:hover {
    background: #c05d14;
    transform: translateY(-2px);
}

/* Hamburger */
.jac-hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #f28b2f;
    padding: 6px;
    border-radius: 4px;
}
.jac-hamburger:hover {
    background: #2b211b;
}

/* Desktop padding tweaks */
@media (min-width: 1400px) {
    .jac-nav { padding: 18px 60px; }
}

/* MOBILE NAVIGATION */
@media (max-width: 900px) {
    .jac-nav {
        padding: 14px 18px;
        height: 70px;
    }

    .jac-hamburger {
        display: block;
    }

    .jac-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: #1F1A17;
        flex-direction: column;
        padding: 24px 20px;
        transform: translateX(-100%);
        transition: transform 0.35s ease;
        overflow-y: auto;
        z-index: 9998;
    }

    .jac-menu.show {
        transform: translateX(0);
    }

    .jac-menu > li {
        width: 100%;
        border-bottom: 1px solid #333;
        padding: 12px 0;
    }

    .jac-menu > li > a {
        font-size: 18px;
        border-bottom: none;
    }

    .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 14px;
        padding: 24px 18px;
        flex-direction: column;
        box-shadow: 0 10px 30px rgba(0,0,0,0.35);
        border-radius: 14px;
        display: none;
        opacity: 1;
        visibility: visible;
    }

    .mega-item.active .mega-menu {
        display: flex;
    }

    .mega-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Extra small */
@media (max-width: 480px) {
    .mega-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HERO SLIDER
============================================================ */

:root {
    --slider-height: 80vh;
}

.hero {
    width: 100%;
    height: var(--slider-height);
    overflow: hidden;
    position: relative;
    background: #000;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}
.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text overlay */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    background: rgba(0,0,0,0.65);
    padding: 28px 36px;
    border-radius: 14px;
    max-width: 85%;
    text-align: center;
    opacity: 0;
    transition: all 0.7s ease;
}
.slide.active .hero-text {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.hero-text h1 {
    font-size: 40px;
    margin-bottom: 14px;
    font-weight: 700;
}
.hero-text p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #eee;
}
.cta-button {
    display: inline-block;
    background: #E7791D;
    color: #fff;
    padding: 12px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: rgba(0,0,0,0.45);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}
.arrow.prev { left: 18px; }
.arrow.next { right: 18px; }
.arrow:hover {
    background: rgba(0,0,0,0.7);
}

/* Dots */
.dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}
.dot.active {
    background: #E7791D;
}

/* Slider responsive */
@media (max-width: 900px) {
    :root { --slider-height: 70vh; }
    .hero-text h1 { font-size: 30px; }
    .hero-text p  { font-size: 16px; }
}
@media (max-width: 600px) {
    :root { --slider-height: 60vh; }
    .hero-text { padding: 18px 20px; }
    .hero-text h1 { font-size: 24px; }
    .hero-text p  { font-size: 14px; }
}

/* ============================================================
   AFTER SLIDER HEADING
============================================================ */

.after-slider-heading {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
}
.after-slider-heading h1 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
}
.after-slider-heading .highlight {
    color: #E7791D;
}
@media (max-width: 768px) {
    .after-slider-heading h1 { font-size: 26px; }
}

/* ============================================================
   PRODUCT INTRO
============================================================ */

.product-intro {
    background: #f8f8f8;
    text-align: center;
    padding: 60px 20px;
}
.product-intro h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}
.product-intro p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    color: #555;
}

/* ============================================================
   PRODUCT SHOWCASE
============================================================ */

.product-showcase {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}
.product-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 70px;
}
.product-block.reverse {
    flex-direction: row-reverse;
}
.product-image {
    flex: 1;
}
.product-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.12);
}
.product-details {
    flex: 1;
}
.product-details h3 {
    font-size: 28px;
    margin-bottom: 12px;
}
.product-details p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 18px;
}
.learn-more {
    display: inline-block;
    background: #E7791D;
    padding: 10px 22px;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}
.learn-more:hover {
    background: #c05d14;
}

/* Product block mobile */
@media (max-width: 768px) {
    .product-block,
    .product-block.reverse {
        flex-direction: column;
        text-align: center;
    }
    .product-image img { height: 280px; }
}

/* ============================================================
   PRODUCT CATEGORIES
============================================================ */

.product-categories {
    padding: 60px 20px;
    background: #f8f8f8;
    text-align: center;
}
.product-categories h2 {
    font-size: 30px;
    margin-bottom: 30px;
    color: #1F1A17;
}
.categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px;
}
.category-card {
    background: #fff;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: 0.3s ease;
}
.category-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}
.category-card h3 {
    padding: 14px;
    font-size: 18px;
    color: #1F1A17;
}
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

/* ============================================================
   ABOUT SECTION
============================================================ */

.about-us {
    padding: 60px 20px;
    text-align: center;
    background: #e0f2f1;
}
.about-us h2 {
    font-size: 30px;
    margin-bottom: 16px;
    color: #1F1A17;
}
.about-us p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
}

/* ============================================================
   CONTACT INFO
============================================================ */

.contact-info {
    padding: 60px 20px;
    text-align: center;
    background: #1F1A17;
    color: #fff;
}
.contact-info h2 {
    font-size: 30px;
    margin-bottom: 16px;
}
.contact-info p {
    font-size: 17px;
    margin-bottom: 8px;
}
.contact-info a {
    color: #E7791D;
    font-weight: 600;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: #1F1A17;
    color: #ccc;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    color: #E7791D;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul { list-style: none; }
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}
.footer-col ul li a:hover { color: #E7791D; }

.certifications {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    justify-content: center;
}
.certifications img {
    width: 60px;
    background: #fff;
    padding: 4px;
    border-radius: 4px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    section, .product-intro, .product-categories, .about-us, .contact-info { padding: 60px 20px; }
    .product-block { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .product-image img { height: 350px; }
    .categories-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
}

@media (max-width: 600px) {
    section, .product-intro, .product-categories, .about-us, .contact-info { padding: 40px 15px; }
    .product-showcase { padding: 40px 15px; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
}

/* UTILITY CLASSES */
.container, .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img { image-rendering: auto; transition: all 0.3s ease; }

/* REMOVE OLD CONFLICTING STYLES */
.navbar, .nav-links, .hamburger, .dropdown, .dropdown-menu,
.slick-prev, .slick-next { display: none !important; }
