/* Custom inline styles extracted from index.html */

/* ============================================================
   LENIS SMOOTH SCROLL REQUIRED STYLES
   ============================================================ */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* ============================================================
   SAFETY: Ensure all key elements are visible by default.
   GSAP will set opacity:0 itself before animating.
   This prevents invisible content when JS/CDN libraries fail.
   ============================================================ */
.single-product,
.rt-service-v5-card,
.rt-choose-v2-card,
.rt-about-v3-main,
h1,
h2,
h3,
h4,
h5,
p {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Hero Slider Base Styles */
/* Slider wrapper in hero section */
.rt-hero-v13-main>div:last-child {
    position: relative;
    min-height: 150px;
}

/* Hero Slider Base Styles */
.rt-hero-v13-description {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    pointer-events: none;
}

/* Active slide should be visible */
.rt-hero-v13-description.active-slide {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.rt-hero-v13-description.inactive-slide {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    position: absolute;
}

/* Hero Background Image Slider Container */
.rt-hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

/* Hero Background Image Slider */
.rt-hero-v13-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease-in-out;
}

.rt-hero-v13-bg-image.rt-one {
    opacity: 1;
    z-index: 1;
}

.rt-hero-v13-bg-image.rt-two {
    opacity: 0;
    z-index: 0;
}

.rt-hero-v13-bg-image.active {
    opacity: 1;
    z-index: 2;
}

.rt-hero-v13-bg-image.inactive {
    opacity: 0;
    z-index: 1;
}

/* Hero Counter Animation */
.rt-hero-v13-counter {
    position: relative;
    z-index: 10;
}

.rt-hero-v13-counter>div:first-child,
.rt-hero-v13-counter>div:last-child {
    transition: all 0.5s ease;
}

/* Slider Progress Indicator */
.rt-hero-slider-progress {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.rt-hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.rt-hero-slider-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.rt-hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Ensure proper content alignment */
.rt-hero-v13-main {
    position: relative;
    z-index: 10;
}

.rt-hero-v13-heading {
    position: relative;
    z-index: 11;
}

/* Add hover effects to existing OLED button - preserve original orange style */
.rt-button-v1 {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Shine effect on hover */
.rt-button-v1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.6s ease;
    z-index: 2;
}

.rt-button-v1:hover::before {
    left: 100%;
}

/* Hover effects - preserve orange background */
.rt-button-v1:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

/* Bebas Neue font for button text */
.rt-button-font {
    font-family: var(--bebas-neue, "Bebas Neue", sans-serif) !important;
    position: relative;
    z-index: 3;
    letter-spacing: 1.5px;
    font-weight: 400;
    text-transform: uppercase;
}

/* Arrow wrapper animation */
.rt-button-arrow-wrapper {
    position: relative;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rt-button-v1:hover .rt-button-arrow-wrapper {
    transform: translateX(6px);
}

.rt-button-arrow {
    width: 15px;
    height: auto;
    transition: transform 0.4s ease;
}

.rt-button-v1:hover .rt-button-arrow {
    transform: rotate(-45deg);
}

/* Card Hover Effects */
.rt-provide-v2-card {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.5s ease;
}

.rt-provide-v2-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.rt-provide-v2-card:hover .rt-full-width-image {
    transform: scale(1.08);
    filter: brightness(0.7);
}

.rt-provide-v2-card:hover .rt-provide-v2-card-text {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.rt-full-width-image {
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        filter 0.5s ease;
}

.rt-provide-v2-card-text {
    transition: background 0.5s ease;
}

/* GSAP Handles Scroll Animations now */
/* Hero section container */
.rt-hero-v1 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.rt-hero-v1 .w-container {
    position: relative;
    z-index: 10;
}

/* Slider wrapper positioning */
.rt-hero-v13-main {
    position: relative;
    z-index: 10;
}

.rt-hero-v13-heading {
    position: relative;
    z-index: 11;
}

.rt-hero-v13-main>div:last-child {
    position: relative;
    z-index: 11;
}

/* ============================================
   PRODUCT CARDS SECTION (rt-service-v5)
   ============================================ */

/* Product Card Base Styles */
.rt-service-v5-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #1a1a1a;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.rt-service-v5-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Product Card Image */
.rt-service-v5-card-image {
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.rt-service-v5-card:hover .rt-service-v5-card-image {
    transform: scale(1.15);
    filter: brightness(0.5);
}

/* Product Card Text Overlay */
.rt-service-v5-card-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    transition: all 0.5s ease;
    z-index: 2;
}

.rt-service-v5-card:hover .rt-service-v5-card-text {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0.4) 100%);
    padding-bottom: 40px;
}

/* Product Card Button */
.rt-service-v5-card-button-wrapper {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 0;
}

.rt-service-v5-card:hover .rt-service-v5-card-button-wrapper {
    max-height: 60px;
    opacity: 1;
    margin-top: 20px;
}

.rt-service-v5-card-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--button-bg, #FF6B00);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.rt-service-v5-card-button:hover {
    background: var(--button-hover-bg, #FF8533);
    transform: translateX(5px);
}

.rt-service-v5-card-button .rt-button-arrow {
    transition: transform 0.3s ease;
}

.rt-service-v5-card-button:hover .rt-button-arrow {
    transform: translateX(5px) rotate(-45deg);
}

/* Card Title Animation */
.rt-service-v5-card-text .rt-heading-top-text,
.rt-service-v5-card-text .rt-text-style-h4 {
    transition: all 0.4s ease;
}

.rt-service-v5-card:hover .rt-heading-top-text,
.rt-service-v5-card:hover .rt-text-style-h4 {
    transform: translateY(-5px);
}

/* GSAP handles staggering for product cards now */

/* Icon/Badge overlay on hover */
.rt-service-v5-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.rt-service-v5-card:hover::before {
    opacity: 1;
}

/* Border glow effect on hover */
.rt-service-v5-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #FF6B00, #FF8533, #FF6B00);
    border-radius: 14px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.rt-service-v5-card:hover::after {
    opacity: 0.6;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

/* Featured Products Section */
.section-products {
    padding: 80px 0;
    background: #ffffff;
}

.section-products .header {
    margin-bottom: 50px;
}

.section-products .header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #f36f21;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.section-products .header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Single Product Card */
.single-product {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid #e8e8e8;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.single-product.rt-visible {
    opacity: 1;
    transform: translateY(0);
}

.single-product:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #f36f21;
}

/* Product Image/Part 1 */
.single-product .part-1 {
    position: relative;
    background: #f8f9fa;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-product .part-1 ul {
    position: absolute;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
}

.single-product:hover .part-1 ul {
    transform: translate(-50%, -50%) scale(1);
}

.single-product .part-1 ul li {
    display: block;
}

.single-product .part-1 ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #1a1a1a;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.single-product .part-1 ul li a:hover {
    background: #f36f21;
    color: #ffffff;
    transform: scale(1.1);
}

.single-product .part-1 ul li a i {
    font-size: 14px;
}

/* Discount Badge */
.single-product .discount,
.single-product .new {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #f36f21;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.single-product .new {
    background: #28a745;
}

/* Product Info / Part 2 */
.single-product:hover .part-1::before {
    transform: scale(1.2) translateY(-50%) translateX(-50%);
    transition: all 0.3s ease;
}

.single-product .product-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.single-product .product-old-price {
    font-size: 16px;
    font-weight: 500;
    color: #999999;
    text-decoration: line-through;
    margin-right: 8px;
    display: inline-block;
}

.single-product .product-price {
    font-size: 20px;
    font-weight: 700;
    color: #f36f21;
    display: inline-block;
}

/* GSAP handles staggered delays for single-product now */

/* Responsive Design */
@media (max-width: 768px) {
    .section-products {
        padding: 60px 0;
    }

    .section-products .header h2 {
        font-size: 28px;
    }

    .single-product .part-1 {
        height: 250px;
    }

    .single-product .product-title {
        font-size: 16px;
    }

    .single-product .product-price {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .section-products {
        padding: 50px 0;
    }

    .section-products .header h2 {
        font-size: 24px;
    }

    .single-product .part-1 {
        height: 220px;
    }

    .single-product .part-2 {
        padding: 15px;
    }
}

/* Products Catalog Section */
.rt-products-catalog {
    padding: 80px 0;
    background: #ffffff;
}

.rt-product-category {
    margin-bottom: 60px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #f36f21;
    transition: all 0.3s ease;
}

.rt-product-category:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.rt-category-header {
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.rt-category-number {
    font-size: 48px;
    font-weight: 700;
    color: #f36f21;
    line-height: 1;
    min-width: 60px;
}

.rt-category-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.rt-category-desc {
    font-size: 15px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

.rt-product-list {
    gap: 15px;
}

.rt-product-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.rt-product-col {
    flex: 1;
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rt-product-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #f36f21;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.rt-product-col:hover {
    border-color: #f36f21;
    box-shadow: 0 4px 15px rgba(243, 111, 33, 0.15);
    transform: translateX(5px);
}

.rt-product-col:hover::before {
    transform: scaleY(1);
}

.rt-product-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.rt-product-spec {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

/* Fade-in animation for categories */
.rt-product-category.rt-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .rt-products-catalog {
        padding: 50px 0;
    }

    .rt-product-category {
        margin-bottom: 40px;
        padding: 20px;
    }

    .rt-category-header {
        flex-direction: column;
        gap: 10px;
    }

    .rt-category-number {
        font-size: 36px;
        min-width: auto;
    }

    .rt-category-title {
        font-size: 22px;
    }

    .rt-category-desc {
        font-size: 14px;
    }

    .rt-product-row {
        flex-direction: column;
        gap: 10px;
    }

    .rt-product-col {
        padding: 15px;
    }

    .rt-product-name {
        font-size: 15px;
    }

    .rt-product-spec {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .rt-category-number {
        font-size: 28px;
    }

    .rt-category-title {
        font-size: 20px;
    }

    .rt-product-category {
        padding: 15px;
    }
}

/* ============================================
   TESTIMONIAL SLIDER STYLES
   ============================================ */

.rt-testimonial-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.rt-testimonial-slider {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.rt-testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.rt-testimonial-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.rt-testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8e8e8;
    text-align: center;
}

.rt-testimonial-stars {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.rt-testimonial-stars img {
    width: 100px;
    height: 20px;
}

.rt-testimonial-card .rt-text-style-h5 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-style: italic;
}

.rt-testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 30px;
}

.rt-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.rt-testimonial-author-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f36f21;
}

.rt-testimonial-author-info {
    text-align: left;
}

.rt-testimonial-author-info .rt-text-style-h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.rt-testimonial-role {
    font-size: 14px;
    color: #999999;
}

/* Slider Controls */
.rt-testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.rt-testimonial-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1a1a1a;
}

.rt-testimonial-btn:hover {
    background: #f36f21;
    border-color: #f36f21;
    color: #ffffff;
    transform: scale(1.1);
}

.rt-testimonial-dots {
    display: flex;
    gap: 10px;
}

.rt-testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e8e8e8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rt-testimonial-dot.active {
    background: #f36f21;
    width: 32px;
    border-radius: 6px;
}

.rt-testimonial-dot:hover {
    background: #f36f21;
}

/* Responsive */
@media (max-width: 768px) {
    .rt-testimonial-card {
        padding: 30px 20px;
    }

    .rt-testimonial-card .rt-text-style-h5 {
        font-size: 20px;
    }

    .rt-testimonial-card p {
        font-size: 15px;
    }

    .rt-testimonial-slider-container {
        padding: 30px 10px;
    }
}

@media (max-width: 480px) {
    .rt-testimonial-card {
        padding: 25px 15px;
    }

    .rt-testimonial-card .rt-text-style-h5 {
        font-size: 18px;
    }

    .rt-testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .rt-testimonial-author-info {
        text-align: center;
    }

    .rt-testimonial-btn {
        width: 40px;
        height: 40px;
    }
}

/* ============================================================
   CRZ RESPONSIVE HEADER & MEGA MENU
   ============================================================ */

/* ── Design tokens ── */
:root {
    --crz-header-h: 76px;
    --crz-brand: #f36f21;
    --crz-brand-dk: #d45c10;
    --crz-dark: #1a1a1a;
    --crz-mid: #444444;
    --crz-light: #f8f8f6;
    --crz-border: #e8e8e8;
    --crz-white: #ffffff;
    --crz-drawer-w: 320px;
    --crz-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Header shell ── */
.crz-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: var(--crz-header-h);
    background: var(--crz-white);
    border-bottom: 1px solid var(--crz-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.crz-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.crz-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0;
}

/* ── Logo ── */
.crz-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: auto;
    transition: opacity 0.2s ease;
}

.crz-logo:hover {
    opacity: 0.85;
}

.crz-logo img {
    display: block;
}

/* ── Desktop nav ── */
.crz-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 24px;
}

.crz-nav-link,
.crz-dropdown-toggle {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--crz-dark);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.crz-nav-link:hover,
.crz-dropdown-toggle:hover,
.crz-dropdown-toggle[aria-expanded="true"] {
    color: var(--crz-brand);
    background: rgba(243, 111, 33, 0.07);
}

/* Chevron rotate */
.crz-chevron {
    flex-shrink: 0;
    transition: transform 0.3s var(--crz-ease);
}

.crz-dropdown-toggle[aria-expanded="true"] .crz-chevron {
    transform: rotate(180deg);
}

/* CTA button wrapper */
.crz-header-cta {
    flex-shrink: 0;
}

/* ── Dropdown container ── */
.crz-dropdown {
    position: static;
}

/* ══════════════════════════════════════════
   DESKTOP SIMPLE MENU
══════════════════════════════════════════ */
.crz-simple-menu {
    position: absolute;
    top: calc(100% + 5px);
    /* left: -20px; */
    background: var(--crz-white);
    min-width: 260px;
    border-top: 3px solid var(--crz-brand);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    padding: 12px 0;
    margin: 0;
    list-style: none;
    z-index: 9998;

    /* hidden state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
        opacity 0.28s var(--crz-ease),
        visibility 0.28s,
        transform 0.28s var(--crz-ease);
    pointer-events: none;
}

/* open state toggled by JS */
.crz-simple-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.crz-simple-menu li {
    padding: 0;
    margin: 0;
}

.crz-simple-menu li a {
    display: block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--crz-dark);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.crz-simple-menu li a:hover,
.crz-simple-menu li a:focus {
    background: rgba(243, 111, 33, 0.08);
    color: var(--crz-brand);
    padding-left: 28px;
}

/* ══════════════════════════════════════════
   HAMBURGER BUTTON
══════════════════════════════════════════ */
.crz-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--crz-border);
    border-radius: 8px;
    background: none;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.crz-hamburger:hover {
    border-color: var(--crz-brand);
}

.crz-ham-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--crz-dark);
    border-radius: 2px;
    transition: transform 0.32s var(--crz-ease), opacity 0.2s ease;
}

/* X state */
.crz-hamburger.is-active .crz-ham-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.crz-hamburger.is-active .crz-ham-line:nth-child(2) {
    opacity: 0;
}

.crz-hamburger.is-active .crz-ham-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════════════
   MOBILE DRAWER OVERLAY
══════════════════════════════════════════ */
.crz-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.crz-drawer-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* ══════════════════════════════════════════
   MOBILE SLIDE-IN DRAWER
══════════════════════════════════════════ */
.crz-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--crz-drawer-w);
    max-width: 88vw;
    background: var(--crz-white);
    z-index: 10001;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.36s var(--crz-ease);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 40px rgba(0, 0, 0, 0.18);
}

.crz-mobile-drawer.is-open {
    transform: translateX(0);
}

/* drawer header */
.crz-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--crz-border);
    flex-shrink: 0;
}

.crz-drawer-close {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--crz-border);
    border-radius: 50%;
    background: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: var(--crz-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.crz-drawer-close:hover {
    background: var(--crz-brand);
    border-color: var(--crz-brand);
    color: #fff;
}

/* drawer nav */
.crz-drawer-nav {
    padding: 12px 0 24px;
    flex: 1;
}

.crz-drawer-link {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--crz-dark);
    text-decoration: none;
    padding: 13px 24px;
    border-bottom: 1px solid var(--crz-border);
    transition: color 0.18s, background 0.18s;
}

.crz-drawer-link:hover {
    color: var(--crz-brand);
    background: rgba(243, 111, 33, 0.05);
}

/* drawer CTA */
.crz-drawer-cta {
    padding: 20px 24px;
    border-top: 1px solid var(--crz-border);
}

/* ── Accordion (outer: "Our Products") ── */
.crz-accordion {
    border-bottom: 1px solid var(--crz-border);
}

.crz-accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 500;
    color: var(--crz-dark);
    padding: 13px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.18s, background 0.18s;
}

.crz-accordion-toggle:hover,
.crz-accordion-toggle[aria-expanded="true"] {
    color: var(--crz-brand);
    background: rgba(243, 111, 33, 0.05);
}

.crz-accordion-toggle[aria-expanded="true"] .crz-acc-chevron {
    transform: rotate(180deg);
}

.crz-acc-chevron {
    flex-shrink: 0;
    transition: transform 0.3s var(--crz-ease);
}

.crz-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--crz-ease);
    background: var(--crz-light);
}

.crz-accordion-body.is-open {
    max-height: 2400px;
}

/* ── Sub-accordion (per category) ── */
.crz-sub-accordion {
    border-bottom: 1px solid var(--crz-border);
}

.crz-sub-acc-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--crz-mid);
    padding: 11px 24px 11px 32px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.18s, background 0.18s;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.crz-sub-acc-toggle:hover,
.crz-sub-acc-toggle[aria-expanded="true"] {
    color: var(--crz-brand);
    background: rgba(243, 111, 33, 0.05);
}

.crz-sub-acc-toggle[aria-expanded="true"] .crz-acc-chevron {
    transform: rotate(180deg);
}

.crz-sub-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--crz-ease);
    background: var(--crz-white);
}

.crz-sub-acc-body.is-open {
    max-height: 800px;
}

.crz-sub-acc-body a {
    display: block;
    font-size: 13.5px;
    font-weight: 400;
    color: var(--crz-mid);
    text-decoration: none;
    padding: 9px 24px 9px 44px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: color 0.18s, padding-left 0.18s;
}

.crz-sub-acc-body a:hover {
    color: var(--crz-brand);
    padding-left: 52px;
}

.crz-sub-acc-body a:last-child {
    border-bottom: none;
}

/* ══════════════════════════════════════════
   PRODUCTS PAGE STYLES
══════════════════════════════════════════ */
.crz-products-section {
    padding: 80px 0 100px;
    background: var(--crz-light);
}

.crz-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.crz-product-card {
    background: var(--crz-white);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: transform 0.4s var(--crz-ease), box-shadow 0.4s var(--crz-ease);
    display: flex;
    flex-direction: column;
}

.crz-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(243, 111, 33, 0.12);
    border-color: rgba(243, 111, 33, 0.2);
}

.crz-product-card-inner {
    padding: 40px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.crz-pc-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(243, 111, 33, 0.1);
    color: var(--crz-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: background 0.3s ease, color 0.3s ease;
}

.crz-product-card:hover .crz-pc-icon {
    background: var(--crz-brand);
    color: var(--crz-white);
}

.crz-pc-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--crz-dark);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.crz-pc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.crz-pc-list li {
    font-size: 15px;
    color: var(--crz-mid);
    padding: 8px 0;
    border-bottom: 1px solid var(--crz-border);
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.4;
}

.crz-pc-list li:last-child {
    border-bottom: none;
}

.crz-pc-list li i {
    color: var(--crz-brand);
    font-size: 12px;
    opacity: 0.8;
}

/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════ */

/* Tablet & smaller – hide desktop nav, show hamburger */
@media (max-width: 1024px) {

    .crz-nav,
    .crz-header-cta,
    .crz-mega-menu {
        display: none !important;
    }

    .crz-hamburger {
        display: flex;
    }
}

/* Large desktop – ensure mega-menu shows */
@media (min-width: 1025px) {

    .crz-hamburger,
    .crz-mobile-drawer,
    .crz-drawer-overlay {
        display: none !important;
    }
}

/* Adjust mega-menu grid at 1200px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .crz-mega-menu-inner {
        grid-template-columns: repeat(4, 1fr);
        padding: 28px 24px 32px;
    }

    .crz-mm-cta {
        display: none;
    }

    .crz-mm-col:last-of-type {
        border-right: none;
    }
}

/* ── Scroll compensation for fixed header ── */
main {
    padding-top: var(--crz-header-h);
}