/* ========================================
   El Tayeb Modern Elevators - Premium Styles
   ======================================== */

:root {
    /* Colors - Restored Original Palette */
    --color-bg: #0b0b0d;
    --color-surface: #151518;
    --color-surface-light: #1e1e22;
    --color-gold: #FFE600; /* Bright yellow */
    --color-gold-dim: rgba(255, 230, 0, 0.15);
    --color-text: #F5F5F5;
    --color-text-muted: #A0A0A0;
    
    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --padding-x: 5%;
    
    /* Transitions */
    --transition-smooth: cubic-bezier(0.76, 0, 0.24, 1);
}

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

html {
    background-color: var(--color-bg);
    color: var(--color-text);
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ========================================
   Cinematic Loader
   ======================================== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.loader-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.loader-inverted {
    background-color: #050505; /* Pure black BG */
    z-index: 1;
}

.inverted-logo {
    filter: none; /* Show original color logo on black */
}

.loader-original {
    background-color: var(--color-gold); /* Gold / yellow BG */
    z-index: 2;
    clip-path: circle(0% at 50% 50%); /* Starts as a hidden dot */
}

.loader-original .loader-logo {
    filter: none; /* We use the correct SVG now */
}

.loader-logo {
    height: 80px;
    max-height: 80px;
    opacity: 0; /* Animated in via JS */
    transform: scale(0.9);
}

/* Canvas inherits loader-logo but also needs these overrides */
#swappedLogoCanvas {
    height: 80px;
    width: auto;
}

/* The original logo on the yellow layer: show in real colors (no filter) */
#loaderOriginalLogo {
    /* no filter — original logo colors show through */
}

@media (max-width: 768px) {
    .loader-logo {
        height: 50px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6, .font-display {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* SplitType adjustments */
.char {
    display: inline-block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--padding-x);
}

.section {
    padding: 10vh 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 2rem;
    color: var(--color-text);
}

/* Utility classes */
.text-gold { color: var(--color-gold); }
.text-center { text-align: center; }

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: 1rem;
}

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    margin-bottom: 1rem;
}

.section-header.text-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-gold);
}

.nav {
    display: none;
}

@media (min-width: 992px) {
    .nav {
        display: block;
    }
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--color-gold);
}

.btn-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f4ce42 0%, var(--color-gold) 100%);
    color: var(--color-bg);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(238, 189, 26, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-menu:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 189, 26, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #fae06e 0%, #d8a20e 100%);
}

/* Header right grouping */
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hamburger Button */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 992px) {
    .hamburger { display: none; }
}

/* Mobile Nav Drawer */
@media (max-width: 991px) {
    .nav {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100dvh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255,255,255,0.06);
        flex-direction: column;
        justify-content: center;
        padding: 3rem 2.5rem;
        transform: translateX(100%);
        transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
        z-index: 150;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 2.5rem;
    }

    .nav-link {
        font-size: 2rem;
        color: var(--color-text);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: var(--color-bg);
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.4) 100%);
}

.hero-content {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-badge-wrapper {
    margin-bottom: 1rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-gold-dim);
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
}

.line-inner {
    display: block;
    font-size: clamp(2.5rem, 8vw, 6rem);
    line-height: 1;
    letter-spacing: -0.02em;
}

.line-inner.accent {
    color: var(--color-gold);
}

.hero-bottom {
    margin-top: 2rem;
}

.hero-subtitle {
    max-width: 500px;
    color: var(--color-text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-image-side {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    max-width: 800px;
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 991px) {
    .hero-image-side {
        right: -30%;
        opacity: 0.3;
    }
}

/* Marquee Section */
.marquee-section {
    padding: 3rem 0;
    background: #2a2a2e; /* Lightened dark background to soften contrast with white logo cards */
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee-container {
    display: flex;
    width: max-content;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-right: 4rem; /* Fixes jump by compensating for gap */
    width: max-content;
    animation: marquee var(--duration, 30s) linear infinite;
    will-change: transform;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    width: 160px;
    height: 80px;
    perspective: 1000px;
    flex-shrink: 0;
}

.flip-card-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    position: relative;
    cursor: pointer;
}

.marquee-item:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.flip-card-front {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    padding: 10px;
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    max-width: 85%;
    max-height: 75%;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: opacity(0.85);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.marquee-item:hover .flip-card-front img {
    filter: opacity(1) drop-shadow(0 0 15px rgba(238, 189, 26, 0.4));
    transform: scale(1.05);
}

.flip-card-back {
    background: #f4f9f5;
    transform: rotateY(180deg);
    border: 1px solid rgba(238, 189, 26, 0.3);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.05), 0 0 15px rgba(238, 189, 26, 0.2);
    overflow: hidden;
}

.flag-emoji {
    font-size: 3rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.flag-svg {
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    display: block;
    background: #f4f9f5;
    transform: scale(1.35);
}

/* Italy Flag Animations */
.flag-svg:has(rect[fill="#008c45"]) rect:nth-child(1) {
    transform: translateY(-100%);
    transform-box: fill-box;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 0s;
}
.flag-svg:has(rect[fill="#008c45"]) rect:nth-child(3) {
    transform: translateY(100%);
    transform-box: fill-box;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 0s;
}

.marquee-item:hover .flag-svg:has(rect[fill="#008c45"]) rect:nth-child(1),
.marquee-item:hover .flag-svg:has(rect[fill="#008c45"]) rect:nth-child(3) {
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* Turkey Flag Animations */
.flag-svg:has(rect[fill="#e30a17"]) rect:nth-child(1) {
    transform: scale(0);
    transform-origin: center;
    transform-box: fill-box;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 0s;
}

.flag-svg:has(rect[fill="#e30a17"]) circle:nth-child(2),
.flag-svg:has(rect[fill="#e30a17"]) circle:nth-child(3),
.flag-svg:has(rect[fill="#e30a17"]) polygon:nth-child(4) {
    transform: translateY(-250px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 0s;
}

.marquee-item:hover .flag-svg:has(rect[fill="#e30a17"]) rect:nth-child(1) {
    transform: scale(1);
    transition-delay: 0.15s;
}

.marquee-item:hover .flag-svg:has(rect[fill="#e30a17"]) circle:nth-child(2),
.marquee-item:hover .flag-svg:has(rect[fill="#e30a17"]) circle:nth-child(3),
.marquee-item:hover .flag-svg:has(rect[fill="#e30a17"]) polygon:nth-child(4) {
    transform: translateY(0);
    transition-delay: 0.35s;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.marquee-track-reverse {
    animation: marquee-reverse var(--duration, 15s) linear infinite;
}
.marquee-track-reverse:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .marquee-track {
        animation-duration: calc(var(--duration, 30s) / 2);
    }
    .marquee-track-reverse {
        animation-duration: calc(var(--duration, 15s) / 2) !important;
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

@media (max-width: 991px) {
    .about-image-wrapper {
        margin-top: 2rem;
    }
}

.about-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-num {
    font-size: 2.5rem;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* Products Section */
.products {
    background-color: var(--color-bg); /* Use variable for consistency */
    background-image: none; /* Removed marble, let's use a subtle radial gradient instead */
    position: relative;
    padding: 6rem 0;
}

.products::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(238, 189, 26, 0.05), transparent 70%);
    pointer-events: none;
}

/* Products Header */
.products-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 992px) {
    .products-header {
        flex-direction: row;
        align-items: flex-end;
    }
}

.products-overline {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.products-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin: 0;
}

.products-header-right {
    max-width: 400px;
}

.products-header-right p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 column on mobile to fit flip card text */
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 460px;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8), 0 10px 30px rgba(0,0,0,0.5);
}

.product-card-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 100%, rgba(238, 189, 26, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.product-card:hover .product-card-bg {
    opacity: 1;
}

.product-card:hover {
    border-color: rgba(238, 189, 26, 0.4);
    transform: translateY(-5px);
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8), 0 20px 40px rgba(0,0,0,0.8), 0 0 20px rgba(238, 189, 26, 0.1);
}

.product-card-content {
    position: relative;
    z-index: 2;
    width: 65%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
    padding-bottom: 50px;
}

.product-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(238, 189, 26, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(238, 189, 26, 0.05);
    transition: all 0.3s ease;
}

.product-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.product-card:hover .product-icon {
    background: rgba(238, 189, 26, 0.15);
    transform: scale(1.1);
}

.product-number {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    display: block;
    opacity: 0.3;
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.product-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-arrow {
    margin-top: auto;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
}

.product-card:hover .product-arrow {
    transform: scale(1.1) translateX(5px);
}

.product-3d-img {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 60%;
    max-width: 220px;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(-10px 10px 20px rgba(0,0,0,0.8));
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), right 0.5s ease;
    mix-blend-mode: luminosity; /* Adds a bit of integration with the dark bg */
    opacity: 0.8;
}

.product-card:hover .product-3d-img {
    transform: translateY(-50%) scale(1.05);
    right: -5%;
    mix-blend-mode: normal;
    opacity: 1;
}

@media (max-width: 767px) {
    .products-grid {
        gap: 0.75rem;
    }
    /* Removed .product-card padding override to let flip cards work properly */
    .product-card-front, .product-card-back {
        padding: 1.5rem !important;
    }
    .product-card-content {
        width: 100%;
        position: relative;
        z-index: 2;
    }
    .product-number {
        font-size: 2.2rem;
        margin-bottom: 0.2rem;
    }
    .product-title {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
        letter-spacing: 0;
    }
    .product-desc {
        font-size: 0.75rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    .product-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    .product-arrow {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        /* Float to bottom-left in the empty space beside the image (LTR pages) */
        position: absolute !important;
        bottom: 1.5rem !important;
        left: 1.5rem !important;
        right: auto !important;
        margin-top: 0 !important;
    }
    .product-3d-img {
        /* Visible at bottom-right corner within card bounds */
        top: auto;
        bottom: 0;
        right: 0;
        transform: none;
        width: 50%;
        max-width: 110px;
        opacity: 0.5;
    }
    .product-card:hover .product-3d-img {
        transform: none;
        right: 0;
        opacity: 0.7;
    }
}

/* Products Features Banner */
.products-features-banner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
}

@media (min-width: 600px) {
    .products-features-banner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-features-banner {
        grid-template-columns: repeat(4, 1fr);
        padding: 2rem 3rem;
    }
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(238, 189, 26, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    background: rgba(238, 189, 26, 0.05);
}

.feature-text h4 {
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.feature-text p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* Catalog Section */
.catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.catalog-item {
    background: rgba(15, 15, 15, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.catalog-item:hover {
    transform: translateY(-5px);
    border-color: rgba(238, 189, 26, 0.3);
}

.catalog-item-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.catalog-item-header h3 {
    font-size: 1.4rem;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.catalog-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.catalog-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.catalog-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-gold);
}

.catalog-list li strong {
    color: var(--color-text);
    font-weight: 600;
}


/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    background: var(--color-surface);
    padding: 3rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

@media (min-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        padding: 4rem;
    }
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: var(--color-surface-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.contact-item-text h4 {
    font-size: 0.9rem;
    color: var(--color-text);
}

.contact-item-text p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: var(--color-surface-light);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1rem;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 5px;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.btn-submit {
    background: linear-gradient(135deg, #f4ce42 0%, var(--color-gold) 100%);
    color: var(--color-bg);
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(238, 189, 26, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(238, 189, 26, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #fae06e 0%, #d8a20e 100%);
}

/* Footer */
.footer {
    background: var(--color-bg);
    padding: 5rem 0 3rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 576px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1.5fr;
    }
}

.footer-brand h2 {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-cert {
    font-size: 0.75rem;
    color: var(--color-gold);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.2rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 2px;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.footer-contact-details p {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.5;
}

.footer-contact-details p i {
    color: var(--color-gold);
    margin-top: 0.2rem;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-align: center;
}

/* Utilities */
.reveal-up {
    will-change: opacity, transform;
}

.text-gold {
    color: var(--color-gold);
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1rem;
    font-family: var(--font-body);
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0;
}

.text-center {
    text-align: center;
}

/* ============================================
   Responsive — Mobile-first fixes
   ============================================ */

/* Tighten horizontal padding on very small screens */
@media (max-width: 480px) {
    :root { --padding-x: 4%; }

    .line-inner {
        font-size: clamp(2rem, 9vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .product-card {
        padding: 1.5rem;
        min-height: 220px;
    }

    /* Show images with high visibility on mobile */
    .product-3d-img {
        display: block;
        opacity: 0.75;
        right: 0;
        max-width: 100px;
    }

    .product-card-content {
        width: 100%;
        padding-right: 0;
    }

    .catalog-grid {
        gap: 1rem;
    }

    .catalog-item {
        padding: 1.5rem;
    }

    .modal-container {
        width: 100%;
        max-height: 100dvh;
        border-radius: 0;
    }

    .modal-details {
        padding: 2rem 1.5rem;
    }

    .modal-details h2 {
        font-size: 1.5rem;
    }
}

/* Tablet mid-range */
@media (min-width: 481px) and (max-width: 767px) {
    .product-3d-img {
        opacity: 0.15;
        max-width: 120px;
    }

    .product-card-content {
        width: 100%;
        padding-right: 0;
    }
}

/* Footer responsive */
@media (max-width: 575px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--color-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    z-index: 10;
}

.modal-close:hover {
    background: var(--color-gold);
    color: var(--color-bg);
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 768px) {
    .modal-content {
        grid-template-columns: 1fr 1fr;
    }
}

.modal-image {
    position: relative;
    background: radial-gradient(circle at center, rgba(238, 189, 26, 0.15), transparent 70%);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .modal-image {
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }
}

.modal-image img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6));
}

.modal-details {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
}

.modal-details h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.modal-details h3 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.modal-desc-body {
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.modal-desc-body ul {
    padding-left: 1.2rem;
    margin-top: 1rem;
}

.modal-desc-body li {
    margin-bottom: 0.8rem;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.process-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 4rem;
    position: relative;
}

@media (min-width: 768px) {
    .process-track {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

@media (max-width: 767px) {
    .process-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 0 0 3rem 0;
    }
}

.process-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    color: rgba(238, 189, 26, 0.12);
    line-height: 1;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .process-number {
        font-size: 3rem;
        margin-bottom: 0;
    }
}

.process-connector {
    position: absolute;
    top: 2.5rem;
    left: 50%;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(238,189,26,0.3), transparent);
    display: none;
}

@media (min-width: 768px) {
    .process-connector {
        display: block;
    }
    .process-connector.last {
        display: none;
    }
}

.process-body {
    flex: 1;
}

.process-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(238, 189, 26, 0.1);
    border: 1px solid rgba(238, 189, 26, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-gold);
    margin: 0 auto 1.2rem;
    transition: background 0.3s, border-color 0.3s;
}

@media (max-width: 767px) {
    .process-icon {
        margin: 0 0 0.8rem;
        flex-shrink: 0;
    }
}

.process-step:hover .process-icon {
    background: rgba(238, 189, 26, 0.2);
    border-color: rgba(238, 189, 26, 0.6);
}

.process-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
    font-weight: 700;
}

.process-body p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ============================================
   WHY US
   ============================================ */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 600px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .why-grid { grid-template-columns: repeat(3, 1fr); }
}

.why-card {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    background: rgba(15, 15, 15, 0.5);
    transition: border-color 0.35s, transform 0.35s;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.45s cubic-bezier(0.76, 0, 0.24, 1);
}

.why-card:hover::before { width: 100%; }

.why-card:hover {
    border-color: rgba(238, 189, 26, 0.25);
    transform: translateY(-4px);
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(238, 189, 26, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    transition: background 0.3s;
}

.why-card:hover .why-icon { background: rgba(238, 189, 26, 0.18); }

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
}

.why-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* ============================================
   PROJECTS
   ============================================ */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .projects-grid { grid-template-columns: repeat(3, 1fr); }
}

.project-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(238, 189, 26, 0.3);
}

.project-visual {
    position: relative;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-bg-icon {
    font-size: 5rem;
    color: rgba(238, 189, 26, 0.15);
    transition: transform 0.5s ease, color 0.3s;
}

.project-card:hover .project-bg-icon {
    transform: scale(1.15) rotate(3deg);
    color: rgba(238, 189, 26, 0.28);
}

.project-year {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-gold);
    background: rgba(0,0,0,0.4);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.project-info {
    padding: 1.5rem;
}

.project-type {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    font-weight: 600;
}

.project-info h3 {
    font-size: 1.15rem;
    margin: 0.5rem 0 0.75rem;
    font-family: var(--font-display);
}

.project-info p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tags span {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    background: rgba(238, 189, 26, 0.08);
    color: var(--color-gold);
    border: 1px solid rgba(238, 189, 26, 0.2);
    letter-spacing: 0.5px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 2.5rem 2rem 2rem;
    position: relative;
    transition: border-color 0.35s, transform 0.35s;
}

.testimonial-card:hover {
    border-color: rgba(238, 189, 26, 0.2);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--color-gold);
    opacity: 0.25;
    line-height: 0.7;
    margin-bottom: 1.5rem;
    display: block;
}

.testimonial-text {
    font-size: 0.97rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 1.5rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(238, 189, 26, 0.12);
    border: 1px solid rgba(238, 189, 26, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-text);
    font-family: var(--font-display);
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ============================================
   BRANDS DEEP
   ============================================ */
.brands-deep-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .brands-deep-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .brands-deep-grid { grid-template-columns: repeat(3, 1fr); }
}

.brand-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(15, 15, 15, 0.5);
    transition: border-color 0.35s, transform 0.35s, background 0.35s;
    text-decoration: none;
    color: inherit;
}

.brand-card:hover {
    border-color: rgba(238, 189, 26, 0.35);
    background: rgba(238, 189, 26, 0.03);
    transform: translateY(-5px);
}

.brand-card-flag {
    font-size: 2.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
}

.brand-card-flag .flag-svg {
    width: 40px;
    height: 27px;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-card-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-text);
}

.brand-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    flex: 1;
}

.brand-card-cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    transition: gap 0.3s;
}

.brand-card:hover .brand-card-cta { gap: 0.7rem; }


/* ========================================
   Catalog DNA Reveal Styles
   ======================================== */
.catalog-reveal-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.reveal-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.reveal-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-item.active {
    background: rgba(238, 189, 26, 0.08);
    border-color: var(--color-gold);
    transform: translateX(15px);
}

.reveal-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gold);
    opacity: 0.5;
}

.reveal-item.active .reveal-number { opacity: 1; }

.reveal-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.reveal-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.reveal-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--color-surface);
}

.reveal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.reveal-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent, rgba(238, 189, 26, 0.1));
    pointer-events: none;
}

/* ========================================
   Pipeline Timeline Styles
   ======================================== */
.pipeline-container {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 2rem 0;
}

.pipeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
    transform: translateX(-50%);
}

.pipeline-step {
    display: flex;
    width: 100%;
    margin-bottom: 4rem;
    position: relative;
}

.pipeline-step:nth-child(even) { justify-content: flex-end; }
.pipeline-step:nth-child(odd) { justify-content: flex-start; }

.step-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    position: relative;
}

/* Right-side steps get left text alignment; left-side steps get right alignment */
.pipeline-step:nth-child(even) .step-content { text-align: left; }
.pipeline-step:nth-child(odd) .step-content { text-align: right; }

.step-dot {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 16px;
    height: 16px;
    background: var(--color-gold);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--color-gold);
    z-index: 2;
}

.step-icon {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

/* ========================================
   Bento Grid Styles
   ======================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

.brand-card-cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    transition: gap 0.3s;
}

.brand-card:hover .brand-card-cta { gap: 0.7rem; }


/* ========================================
   Catalog DNA Reveal Styles
   ======================================== */
.catalog-reveal-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.reveal-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.reveal-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-item.active {
    background: rgba(238, 189, 26, 0.08);
    border-color: var(--color-gold);
    transform: translateX(15px);
}

.reveal-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gold);
    opacity: 0.5;
}

.reveal-item.active .reveal-number { opacity: 1; }

.reveal-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.reveal-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.reveal-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--color-surface);
}

.reveal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.reveal-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent, rgba(238, 189, 26, 0.1));
    pointer-events: none;
}

/* ========================================
   Pipeline Timeline Styles
   ======================================== */
.pipeline-container {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 2rem 0;
}

.pipeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
    transform: translateX(-50%);
}

.pipeline-step {
    display: flex;
    width: 100%;
    margin-bottom: 4rem;
    position: relative;
}

.pipeline-step:nth-child(even) { justify-content: flex-end; }
.pipeline-step:nth-child(odd) { justify-content: flex-start; }

.step-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    position: relative;
}

/* Right-side steps get left text alignment; left-side steps get right alignment */
.pipeline-step:nth-child(even) .step-content { text-align: left; }
.pipeline-step:nth-child(odd) .step-content { text-align: right; }

.step-dot {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 16px;
    height: 16px;
    background: var(--color-gold);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--color-gold);
    z-index: 2;
}

.step-icon {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

/* ========================================
   Bento Grid Styles
   ======================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

.bento-item:hover .bento-image img {
    transform: scale(1.1);
    opacity: 0.6;
}

.bento-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.6) 40%, rgba(10, 10, 10, 0) 75%);
    z-index: 1;
}

.bento-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.bento-item:hover {
    border-color: rgba(238, 189, 26, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-medium { grid-column: span 2; }
.bento-tall { grid-column: span 1; grid-row: span 2; }
.bento-square { grid-column: span 1; }

/* OEM Genuine card: show image on all screens */
.bento-square .bento-image { display: block; }

.bento-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    display: block;
}

.bento-item h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.bento-item p { font-size: 0.9rem; color: var(--color-text-muted); }

.bento-bg-icon {
    position: absolute;
    top: -1rem;
    right: -1rem;
    font-size: 10rem;
    opacity: 0.03;
    color: var(--color-gold);
    pointer-events: none;
}

/* ========================================
   Swiper Specific Overrides
   ======================================== */
.projects-swiper { padding: 2rem 0 5rem; }

.project-slide-inner {
    border-radius: 30px;
    overflow: hidden;
    background: var(--color-surface);
    height: 500px;
    position: relative;
}

.project-slide-img { width: 100%; height: 70%; }
.project-slide-img img { width: 100%; height: 100%; object-fit: cover; }

.project-slide-info {
    padding: 2rem;
    position: relative;
}

.project-year {
    position: absolute;
    top: -2rem;
    right: 2rem;
    background: var(--color-gold);
    color: var(--color-bg);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3.5rem;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.testimonial-quote-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    opacity: 0.2;
    margin-bottom: 2rem;
}

.testimonial-body p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    color: var(--color-bg);
    border-radius: 50%;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(238, 189, 26, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(238, 189, 26, 0.05);
    transition: all 0.3s ease;
}

.product-icon i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.testimonial-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.swiper-pagination-bullet { background: rgba(255, 255, 255, 0.2); }
.swiper-pagination-bullet-active { background: var(--color-gold); }
.swiper-button-next, .swiper-button-prev { color: var(--color-gold); }

/* ========================================
   Mobile Overrides for New Components
   ======================================== */
@media (max-width: 991px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; } /* Increased height for better image visibility */
    .bento-large { grid-column: span 2; grid-row: span 2; }
    .pipeline-line { left: 20px; transform: none; }
    .step-dot { left: 20px; transform: translateX(-50%); }
    .step-content { width: calc(100% - 60px); margin-left: 60px; text-align: left !important; }
    
    /* Vertical stack for cards to prevent overlap */
    .product-card {
        display: flex;
        flex-direction: column;
        min-height: 480px !important;
        padding: 0 !important;
        overflow: visible !important;
    }

    .product-card-content {
        width: 100% !important;
        padding-right: 0 !important;
        margin-bottom: 1.5rem;
        z-index: 2;
    }

    .product-3d-img {
        position: relative !important;
        display: block !important;
        opacity: 1 !important;
        right: auto !important;
        left: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 180px !important;
        max-width: 100% !important;
        margin: 2rem auto 0 auto !important;
        align-self: center !important;
        filter: drop-shadow(0 15px 15px rgba(0,0,0,0.4)) !important;
    }
}

@media (max-width: 480px) {
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .bento-large, .bento-medium { grid-column: span 1; }
    .bento-tall { grid-row: span 1; }
    .bento-square .bento-image { display: block; } /* Show OEM image on mobile */
}


/* ========================================
   Text Ticker Bar — Horizontal CSS Marquee
   ======================================== */
.text-ticker-bar {
    background-color: var(--color-gold);
    color: var(--color-bg);
    height: 70px;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(238, 189, 26, 0.3);
    border-bottom: 1px solid rgba(238, 189, 26, 0.3);
    position: relative;
    /* Fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 30s linear infinite;
    will-change: transform;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.marquee-track:hover,
.marquee-track-reverse:hover,
.marquee-track:active,
.marquee-track-reverse:active {
    animation-play-state: paused !important;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 0 2.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-content span {
    font-family: var(--font-display);
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-bg);
}

.ticker-dot {
    font-size: 0.6rem !important;
    opacity: 0.5;
    letter-spacing: 0 !important;
    flex-shrink: 0;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 480px) {
    .text-ticker-bar { height: 56px; }
    .ticker-content { gap: 2rem; padding: 0 2rem; }
}

/* ========================================
   Custom CTA Section
   ======================================== */
.custom-cta {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .custom-cta {
        padding: 6rem 0;
    }
}

.custom-cta-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 460px;
    display: flex;
    align-items: center;
    background: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.custom-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    z-index: 1;
    opacity: 0.8;
}

.custom-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.8) 100%);
    z-index: 2;
}

@media (min-width: 768px) {
    .custom-cta-overlay {
        background: linear-gradient(90deg, rgba(5,5,5,0.98) 0%, rgba(5,5,5,0.8) 50%, transparent 100%);
    }
}

.custom-cta-content {
    position: relative;
    z-index: 3;
    padding: 3rem 2rem;
    max-width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .custom-cta-content {
        padding: 4rem;
        max-width: 100%;
        text-align: center;
    }
}

.custom-cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.custom-cta-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: var(--color-gold);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

@media (min-width: 768px) {
    .btn-primary {
        width: auto;
    }
}

.btn-primary:hover {
    background: #f4ce42;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(238, 189, 26, 0.3);
}


/* ========================================
   Language Selector
   ======================================== */
.lang-selector-container {
    position: relative;
    display: inline-block;
    margin-right: 1rem;
    z-index: 110;
}

.lang-selector-trigger {
    font-family: var(--font-display);
    font-weight: 600;
    color: #000;
    background-color: var(--color-gold);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.lang-selector-trigger:hover {
    background-color: #f4ce42;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(238, 189, 26, 0.3);
}

.lang-selector-trigger .chevron {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.lang-selector-container.open .lang-selector-trigger .chevron {
    transform: rotate(180deg);
}

/* Desktop Dropdown */
.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(26, 26, 29, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    min-width: 150px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    padding: 0.5rem 0;
}

.lang-selector-container.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: left;
    text-decoration: none;
}

.lang-option:hover {
    color: var(--color-gold);
    background: rgba(238, 189, 26, 0.08);
}

.lang-option.active {
    color: var(--color-gold);
    font-weight: 600;
    background: rgba(238, 189, 26, 0.12);
}

/* Arabic RTL support */
[dir="rtl"] .lang-selector-container {
    margin-right: 0;
    margin-left: 1rem;
}
[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}
[dir="rtl"] .lang-option {
    text-align: right;
}

/* Mobile Bottom Drawer */
.lang-drawer-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lang-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.lang-drawer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(20, 20, 22, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px 24px 0 0;
    padding: 2rem 1.5rem 3rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.32, 0.94, 0.6, 1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
    max-height: 80vh;
    overflow-y: auto;
}

.lang-drawer-overlay.open .lang-drawer {
    transform: translateY(0);
}

.lang-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lang-drawer-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text);
    letter-spacing: 0.5px;
}

.lang-drawer-close {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.lang-drawer-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-drawer-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.lang-drawer-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    color: var(--color-text);
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
}

.lang-drawer-option:hover {
    background: rgba(238, 189, 26, 0.05);
    border-color: rgba(238, 189, 26, 0.2);
}

.lang-drawer-option.active {
    background: rgba(238, 189, 26, 0.12);
    border-color: var(--color-gold);
}

.lang-drawer-option .lang-code {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
}

.lang-drawer-option.active .lang-code {
    color: #000;
    background: var(--color-gold);
}

/* Hide desktop dropdown on mobile */
@media (max-width: 991px) {
    .lang-dropdown {
        display: none !important;
    }
}

.brand-card-logo {
    height: 60px;
    max-width: 150px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.brand-card-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Product Flip Cards */
.product-card {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    perspective: 1000px;
    min-height: 460px;
}
.product-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}
.product-card:hover .product-card-inner {
    transform: rotateY(180deg);
}
[dir="rtl"] .product-card:hover .product-card-inner {
    transform: rotateY(-180deg);
}
.product-card-front, .product-card-back {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(1px); /* Fix mobile flip glitch */
    border-radius: 12px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: opacity 0.3s ease;
    transform-style: preserve-3d;
}
.product-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #111, #0a0a0a);
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid var(--color-gold);
}
[dir="rtl"] .product-card-back {
    transform: rotateY(-180deg);
}

/* Removed opacity transitions to fix overlapping/stuck hover states on mobile Safari */
.product-card:hover .product-card-front {
    pointer-events: none !important;
}

.product-card { overflow: visible !important; }


.product-card-back {
    display: block !important;
    overflow-y: auto !important;
    padding: 2.5rem !important;
    text-align: left !important;
}

[dir="rtl"] .product-card-back {
    justify-content: flex-start !important;
    align-items: flex-start !important;
    text-align: right !important;
}

.product-card-back::-webkit-scrollbar { width: 6px; } 
.product-card-back::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; } 
.product-card-back h3 { font-size: 1rem; margin-bottom: 0.5rem !important; } 
.product-card-back p { font-size: 0.75rem; line-height: 1.6; margin-bottom: 1rem; text-align: left !important; } 

[dir="rtl"] .product-card-back p { text-align: right !important; }

.product-card-back ul { list-style: none; padding: 0; margin: 0; text-align: left; } 
[dir="rtl"] .product-card-back ul { text-align: right; padding: 0; }

.product-card-back ul li { font-size: 0.75rem; margin-bottom: 0.4rem; position: relative; padding-left: 1.2rem; padding-right: 0; color: #ccc; } 
[dir="rtl"] .product-card-back ul li { padding-left: 0; padding-right: 1.2rem; }

.product-card-back ul li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; right: auto; top: 2px; color: var(--color-gold); font-size: 0.8rem; }
[dir="rtl"] .product-card-back ul li::before { left: auto; right: 0; }

.product-btn-wrapper {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
