/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: #f5f5f7 !important;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    font-weight: 300;
}

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

a:hover {
    color: #666;
}

/* Helper Classes */
.text-center {
    text-align: center;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 60px 20px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 48px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-shadow: none;
}

.btn-primary {
    background-color: #fff;
    color: #000;
    border: 1px solid #fff;
}

.btn-primary:hover {
    background-color: transparent;
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
    margin-top: 30px;
}

.btn-secondary:hover {
    background-color: #000;
    color: #fff;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.header-logo-img {
    height: 80px;
    /* Adjust based on preference */
    width: auto;
    object-fit: contain;
}

.header-partner {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .header {
        padding: 20px;
    }
}

/* Sections */
.section-title {
    font-size: 42px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
}

.section-text {
    font-size: 20px;
    color: #666;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Dark Section */
.dark-section {
    background-color: #111;
    color: #fff;
}

.dark-section .section-title {
    color: #fff;
}

.dark-section .section-text {
    color: #aaa;
}

.dark-section .btn-secondary {
    color: #fff;
    border: 1px solid #fff;
}

.dark-section .btn-secondary:hover {
    background-color: #fff;
    color: #000;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    z-index: 1;
    animation: kenBurns 40s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1.0); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
    color: #fff;
    margin-top: 60px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Hero Glassmorphism Badges */
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.glass-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: floatBadge 6s ease-in-out infinite alternate;
}

.glass-badge span {
    font-size: 15px;
}

.badge-left {
    animation-delay: 0s;
}

.badge-right {
    animation-delay: -3s;
}

@keyframes floatBadge {
    0% { transform: translateY(0px) rotate(-1deg); }
    100% { transform: translateY(-8px) rotate(1deg); }
}

@media (max-width: 768px) {
    .hero-badges {
        flex-direction: row;
        justify-content: center;
        gap: 6px;
        margin-bottom: 20px;
    }
    .glass-badge {
        padding: 6px 10px;
        font-size: 10px;
        letter-spacing: 0;
        gap: 4px;
    }
    .glass-badge span {
        font-size: 12px;
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.05;
}

.hero-subtitle {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 24px;
    color: #fff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 1), 0 0 5px rgba(0, 0, 0, 0.8);
}

.hero-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 400;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1), 0 0 5px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 46px;
    }

    .hero-subtitle {
        font-size: 20px;
    }
}

/* Product Split */
.product-split {
    display: flex;
    flex-wrap: wrap;
    background-color: transparent;
}

.product-image {
    flex: 1 1 50%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    flex: 1 1 50%;
    padding: 140px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-title {
    font-size: 32px;
    margin-bottom: 40px;
}

.product-list {
    list-style: none;
    margin-bottom: 40px;
}

.product-list li {
    font-size: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    font-weight: 300;
    color: #333;
    display: flex;
    justify-content: space-between;
}

.price-list {
    color: #a0a0a0;
    font-weight: 400;
}

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

.product-color {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.product-desc {
    font-size: 18px;
    color: #888;
}

@media (max-width: 900px) {

    .product-image,
    .product-content {
        flex: 1 1 100%;
    }

    .product-content {
        padding: 100px 40px;
    }
}

/* Focus Product Section */
.focus-product {
    padding-top: 120px;
    padding-bottom: 120px;
}

.focus-product-header {
    margin-bottom: 60px;
}

.focus-brand {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 15px;
}

.product-carousel-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-slide {
    display: none;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 0;
    animation: fadeProd 0.4s ease-in-out;
}

.product-slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeProd {
    from {
        opacity: 0.2;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.product-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

@media (min-width: 768px) {
    .product-carousel-wrapper {
        aspect-ratio: auto;
        height: 650px;
    }
}

.product-slide.lifestyle-slide img {
    mix-blend-mode: normal;
}

.brand-overlay-logo {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 60px;
    opacity: 0.85;
    z-index: 5;
    display: none;
}

@media (min-width: 768px) {
    .brand-overlay-logo {
        display: block;
    }
}

.prod-nav-btn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(0, 150, 199, 0.15);
    transition: 0.3s ease;
    user-select: none;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.prod-nav-btn:hover {
    background: #fff;
    color: #0096c7;
    box-shadow: 0 8px 20px rgba(0, 150, 199, 0.15);
}

.prod-prev { left: 15px; }
.prod-next { right: 15px; }

.focus-card {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 60px;
    margin-top: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.focus-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 500;
}
.focus-card p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Prodotti impilati (ex-mobile carousel rimosso) */
.mobile-carousel {
    display: flex;
    flex-direction: column;
}

.carousel-indicator-wrapper {
    display: none;
}


/* Flip Clock Styles */
.flip-clock-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
}

.flip-clock-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flip-clock-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.flip-clock {
    display: flex;
    gap: 8px;
    background-color: #111;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.flip-clock.highlight .flip-clock-label,
.flip-clock-wrapper:nth-child(2) .flip-clock-label {
    color: #00b4d8;
    font-weight: 600;
}

.flip-clock-digit {
    background-color: #222;
    font-size: 150px;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
    width: 140px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), inset 0px 1px 0px rgba(255, 255, 255, 0.05);
    line-height: 1;
    overflow: hidden;
}

#digit-tens {
    color: #0096c7 !important;
}

#digit-ones {
    color: #fb6f92 !important;
}

.flip-clock-digit::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    height: 2px;
    background-color: #111;
    z-index: 10;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03);
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #00b4d8;
    border-radius: 50%;
    margin-right: 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(0, 180, 216, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 180, 216, 0);
    }
}

@media (max-width: 768px) {
    .flip-clock-container {
        flex-direction: column;
        gap: 30px;
    }
}

/* Value Section */
.value-block {
    margin: 50px 0;
}

.value-old {
    font-size: 18px;
    color: #777;
    margin-bottom: 10px;
}

.value-old span {
    text-decoration: line-through;
    opacity: 0.7;
}

.value-new {
    font-size: 48px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 30px;
}

.value-new strong {
    font-weight: 500;
}

/* Reviews Section */
.reviews-section {
    background-color: transparent;
    padding: 100px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 50px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .reviews-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 40px 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; 
        -ms-overflow-style: none;
    }
    .reviews-grid::-webkit-scrollbar {
        display: none;
    }
    .reviews-grid > .review-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        height: auto;
    }
}

.review-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 32px;
    box-shadow: 
        0 25px 50px -12px rgba(10, 20, 40, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    padding: 40px;
    position: relative; 
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Only apply hover effect on devices that truly support hover (not touch screens) */
@media (hover: hover) and (pointer: fine) {
    .review-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .review-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    }
}

.review-stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 16px;
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
}

.review-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1aa4cd 0%, #db6d97 100%) !important;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-right: 15px;
    flex-shrink: 0;
}

.review-author-info h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

.review-author-info span {
    font-size: 13px;
    color: #888;
}

/* Footer & Store Info */
.footer {
    background-color: #fff;
    border-top: 1px solid #ebebeb;
}

.store-info {
    color: #666;
}

.store-name {
    font-size: 18px;
    color: #000;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.store-info p {
    margin-bottom: 12px;
    font-size: 15px;
}
/* Footer Mobile Alignment */
.footer-cols {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 50px;
    margin-bottom: 60px;
    text-align: left;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.footer-col {
    flex: 1;
    min-width: 220px;
}
.footer-col-center {
    flex: 1.5;
    min-width: 280px;
    padding: 0 40px;
    border-left: 1px solid rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
}
@media (max-width: 768px) {
    .footer-cols {
        gap: 30px;
    }
    .footer-col-center {
        padding: 30px 0;
        border: none;
        border-top: 1px solid rgba(255,255,255,0.05);
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
}

@keyframes pulseUrgency {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 8px 0 rgba(255, 255, 255, 0.2); text-shadow: 0 0 5px rgba(255,255,255,0.5); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(400%) skewX(-15deg); }
}

/* Solari Board / Airport Flip Board Styles - Toy Theme */
.solari-board-container {
    background-color: #87ceeb; /* Sky blue */
    padding: 24px;
    border-radius: 24px;
    border: 6px solid #ffb6c1; /* Light pink border */
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1), inset 0 0 15px rgba(255,255,255,0.7);
    position: relative;
    width: 100%;
    max-width: 900px;
    overflow-x: auto;
}

.flap-row {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.flap-col {
    display: flex;
    margin-right: clamp(8px, 2vw, 20px);
}
.flap-col:last-child {
    margin-right: 0;
}

.flap {
    display: inline-block;
    background-color: #fffacd; /* Lemon chiffon */
    color: #4682b4; /* Steel blue text */
    width: clamp(16px, 3.5vw, 26px);
    height: clamp(24px, 5.5vw, 40px);
    line-height: clamp(24px, 5.5vw, 40px);
    text-align: center;
    font-family: 'Nunito', 'Arial Rounded MT Bold', 'Comic Sans MS', sans-serif;
    font-size: clamp(14px, 3.2vw, 24px);
    font-weight: 900;
    margin: 2px;
    border-radius: 8px; /* Rounded toy-like blocks */
    position: relative;
    box-shadow: 0 4px 0px #e0e0e0; /* 3D plastic look */
    border: 2px solid #ccc;
}
.flap::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(0,0,0,0.05); /* Soft crease */
    z-index: 2;
}

.flap.yellow { background-color: #ffe866; border-color: #fbd300; box-shadow: 0 4px 0px #fbd300; color: #333; }
.flap.green { background-color: #a8f090; border-color: #72d655; box-shadow: 0 4px 0px #72d655; color: #333; }
.flap.red { background-color: #ff9999; border-color: #e65151; box-shadow: 0 4px 0px #e65151; color: #fff; }
.flap.gray { background-color: #e6e6fa; border-color: #d0cce6; box-shadow: 0 4px 0px #d0cce6; color: #555; }

/* GDPR Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
    z-index: 10000;
    padding: 25px 20px;
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    justify-content: center;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 5px;
}

.cookie-text {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .cookie-banner {
        padding: 30px;
    }
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .cookie-text {
        max-width: 80%;
    }
    .cookie-buttons {
        margin-top: 0;
        flex-shrink: 0;
    }
}

/* Scroll Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-zoom {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-up.revealed,
.reveal-zoom.revealed,
.reveal-left.revealed,
.reveal-right.revealed { /* the target state for simple reveals */
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.reveal-stagger.revealed > * {
    opacity: 1;
    transform: translateY(0);
}
/* Staggering delays for children */
.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.6s; }
.reveal-stagger.revealed > *:nth-child(7) { transition-delay: 0.7s; }
.reveal-stagger.revealed > *:nth-child(8) { transition-delay: 0.8s; }

/* Ambient Background Orbs */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; /* Dietro a tutto ma sopra al background color del body */
    overflow: hidden;
    pointer-events: none;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5; /* Moderata opacità per un effetto wow elegante */
    animation: drift 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 60vw;
    height: 60vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, #db6d97 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 50vw;
    height: 50vw;
    max-width: 500px;
    max-height: 500px;
    background: radial-gradient(circle, #1aa4cd 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
    animation-duration: 25s;
    animation-delay: -5s;
}

.orb-3 {
    width: 40vw;
    height: 40vw;
    max-width: 400px;
    max-height: 400px;
    background: radial-gradient(circle, #fb6f92 0%, transparent 70%);
    top: 40%;
    left: 30%;
    opacity: 0.3;
    animation-duration: 30s;
    animation-delay: -10s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(5vw, -5vh) scale(1.1);
    }
    66% {
        transform: translate(-3vw, 4vh) scale(0.9);
    }
    100% {
        transform: translate(2vw, 2vh) scale(1.05);
    }
}

/* CYBEX STYLE PRODUCT CARDS */
.cybex-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.cybex-image-col {
    flex: 1 1 50%;
    min-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cybex-image-col > .product-carousel-wrapper img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

.cybex-image-col .brand-overlay-logo {
    width: 60px !important;
    max-width: 60px !important;
    top: 5px !important;
    left: 10px !important;
    opacity: 0.9 !important;
    display: block !important;
    z-index: 999 !important;
}

.cybex-details-col {
    flex: 1 1 40%;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 0;
}

.cybex-brand-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cybex-brand-rating span.brand {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cybex-brand-rating span.rating {
    font-size: 13px;
    color: #ff9900;
}

.cybex-title {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.cybex-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cybex-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-bottom: 25px;
}

.cybex-spec-item {
    text-align: center;
}

.cybex-spec-title {
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
}

.cybex-spec-val {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

.cybex-promo-box {
    background-color: #f2f2f2;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.cybex-promo-box strong {
    font-size: 14px;
    color: #111;
    display: block;
    margin-bottom: 8px;
}

.cybex-promo-box p {
    font-size: 13px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.cybex-color-select {
    margin-bottom: 20px;
}

.cybex-color-lbl {
    font-size: 13px;
    color: #111;
    margin-bottom: 8px;
}

.cybex-color-status {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
}

.cybex-color-status .dot {
    width: 8px;
    height: 8px;
    background-color: #3bb54a;
    border-radius: 50%;
}

.cybex-btn-outline {
    width: 100%;
    padding: 14px;
    border: 1px solid #111;
    border-radius: 30px;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.cybex-btn-outline:hover {
    background: #f8f8f8;
}

.cybex-bottom-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f2f2f2;
    border-radius: 30px;
    margin-top: 25px;
    padding: 5px 5px 5px 20px;
}

.cybex-bottom-action span {
    font-size: 13px;
    color: #555;
}

.cybex-btn-add {
    background: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: #111;
    font-weight: 700;
    font-size: 15px;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .cybex-layout {
        gap: 20px;
        padding: 15px;
    }
}

/* Full-Width Crossfade Slideshow */
.store-slideshow {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    position: relative;
    background: #000;
    overflow: hidden;
}

@media (max-width: 768px) {
    .store-slideshow {
        height: 35vh;
        min-height: 250px;
    }
}

.store-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: crossfadeSlides 28s infinite;
    -webkit-animation: crossfadeSlides 28s infinite;
}

@-webkit-keyframes crossfadeSlides {
  0% { opacity: 0; }
  3.57% { opacity: 1; }
  14.28% { opacity: 1; }
  17.85% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes crossfadeSlides {
  0% { opacity: 0; }
  3.57% { opacity: 1; }
  14.28% { opacity: 1; }
  17.85% { opacity: 0; }
  100% { opacity: 0; }
}

