* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

:root {
    --primary-color: #00e5ff;
    /* Cyan Neon */
    --accent-color: #7000ff;
    /* Purple Neon */
    --bg-dark: #050505;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    direction: rtl;
}

html[dir="ltr"] body {
    direction: ltr;
}

html[dir="ltr"] .story-slider {
    animation-name: slide-ltr;
}

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

/* Header */
header,
.sub-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 320px;
    padding: 28px clamp(18px, 3vw, 52px);
    position: relative;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

header {
    display: grid;
    grid-template-columns: minmax(180px, auto) minmax(0, 1fr);
    gap: clamp(18px, 2vw, 34px);
    align-items: center;
}

.header-right-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
}

.logo img {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    transition: 0.3s;
    box-shadow: 0 0 15px var(--primary-color);
}

.social-icons-vertical {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icon {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--primary-color);
    transform: scale(1.25);
    filter: drop-shadow(0 0 8px var(--primary-color));
}

.social-icon-muted {
    opacity: 0.38;
    cursor: default;
}

.social-icon-muted:hover {
    color: rgba(255, 255, 255, 0.75);
    transform: none;
    filter: none;
}

.display-screen {
    width: 100%;
    min-width: 0;
    max-width: none;
    height: 100%;
    min-height: 250px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    overflow: hidden;
    margin: 0;
    display: flex;
    align-items: center;
}

.header-display-screen {
    margin-inline-start: 0;
    margin-inline-end: 0;
}

.story-slider {
    display: flex;
    width: max-content;
    animation: slide-rtl 25s linear infinite;
    white-space: nowrap;
}

.welcome-msg {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.15rem;
    padding: 0 50px;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
    display: inline-block;
}

.media-story-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.media-story-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.55s ease;
    background: #020607;
}

.media-story-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.media-story-slide img,
.media-story-slide video,
.media-story-slide iframe {
    width: 100%;
    height: 100%;
    min-height: inherit;
    border: 0;
    display: block;
    object-fit: cover;
}

.media-story-slide img {
    object-fit: cover;
    background: #000;
}

.media-story-slide video {
    width: 96%;
    height: 96%;
    min-height: 0;
    margin: 2% auto;
    object-fit: contain;
    background: #000;
}

@media (max-width: 900px) {
    .media-story-slide video {
        width: 100%;
        height: 100%;
        min-height: inherit;
        margin: 0;
        object-fit: cover;
    }
}

.media-story-slide iframe {
    background: #000;
}

.media-story-caption {
    position: absolute;
    inset-inline: 22px;
    bottom: 18px;
    max-width: min(560px, calc(100% - 44px));
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
    border: 1px solid rgba(0, 229, 255, 0.24);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38));
    color: #fff;
    backdrop-filter: blur(10px);
}

.media-story-caption strong {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.45);
}

.media-story-caption span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.85rem;
    line-height: 1.6;
}

html[dir="ltr"] .header-display-screen {
    margin-inline-start: 0;
    margin-inline-end: 0;
}

html[dir="ltr"] .welcome-msg {
    text-align: left;
}

html[dir="ltr"] .social-icons-vertical {
    order: 2;
}

html[dir="ltr"] .display-screen {
    min-width: 0;
}

@media (max-width: 900px) {
    header,
    .sub-section-header {
        grid-template-columns: minmax(118px, 34vw) minmax(0, 1fr);
        align-items: center;
        min-height: auto;
        padding: 16px 14px;
        gap: 12px;
    }

    .header-right-group {
        justify-content: flex-start;
        gap: 10px;
        min-width: 0;
    }

    .header-display-screen {
        width: 100%;
        min-height: clamp(150px, 42vw, 180px);
        margin-inline-start: 0;
    }

    .media-story-caption {
        inset-inline: 12px;
        bottom: 12px;
        max-width: calc(100% - 24px);
    }
}

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

/* 3D Carousel Section */
.carousel-3d-section {
    width: 100%;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: radial-gradient(circle at center, rgba(0, 229, 255, 0.05), transparent 70%);
}

.carousel-3d-container {
    position: relative;
    width: 100%;
    height: 450px;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.carousel-item-3d {
    position: absolute;
    width: 170px;
    height: 240px;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.card-3d {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.card-3d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-item-3d span {
    margin-top: 15px;
    font-weight: bold;
    color: #fff;
    opacity: 0;
    transition: 0.3s;
}

.carousel-item-3d.active {
    transform: translate3d(0, 0, 350px) scale(1.3);
    z-index: 10;
    opacity: 1;
}

.carousel-item-3d.active .card-3d {
    border: 2px solid var(--primary-color);
}

.carousel-item-3d.active span {
    opacity: 1;
    color: var(--primary-color);
    transform: scale(1.1);
}

.carousel-item-3d.left1 {
    transform: translate3d(-250px, 0, 0) rotateY(45deg) scale(0.7);
    z-index: 9;
    opacity: 0.5;
    filter: blur(2px);
}

.carousel-item-3d.left2 {
    transform: translate3d(-400px, 0, -150px) rotateY(60deg) scale(0.5);
    z-index: 8;
    opacity: 0.2;
    filter: blur(4px);
}

.carousel-item-3d.right1 {
    transform: translate3d(250px, 0, 0) rotateY(-45deg) scale(0.7);
    z-index: 9;
    opacity: 0.5;
    filter: blur(2px);
}

.carousel-item-3d.right2 {
    transform: translate3d(400px, 0, -150px) rotateY(-60deg) scale(0.5);
    z-index: 8;
    opacity: 0.2;
    filter: blur(4px);
}

.carousel-item-3d.hidden {
    transform: translate3d(0, 0, -500px);
    opacity: 0;
    pointer-events: none;
}

/* Content Wrapper */
.content-wrapper {
    display: flex;
    gap: 40px;
    padding: 40px 10%;
}

.side-menu {
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.side-item.active {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 15px var(--primary-color);
}

.circle-num {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.section-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: 40px 10%;
}

/* Bottom Nav */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 10%;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    z-index: 2600;
}

.nav-icons {
    display: flex;
    gap: 25px;
}

.nav-btn {
    font-size: 1.3rem;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.nav-btn.active {
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px var(--primary-color));
}

.cart-count-badge {
    position: absolute;
    top: -9px;
    right: -10px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--primary-color);
    color: #001014;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.75);
}

.cart-count-badge.show {
    display: inline-flex;
}

.cart-panel {
    position: fixed;
    left: 24px;
    bottom: 88px;
    width: min(420px, calc(100vw - 28px));
    z-index: 3600;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px) scale(0.98);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.cart-panel.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.cart-card {
    border: 1px solid rgba(0, 229, 255, 0.36);
    background: rgba(3, 8, 10, 0.94);
    backdrop-filter: blur(18px);
    border-radius: 22px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.75), 0 0 35px rgba(0, 229, 255, 0.18);
    padding: 16px;
}

.cart-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-kicker {
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 900;
    margin-bottom: 2px;
}

.cart-head h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 900;
    margin: 0;
}

.cart-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s;
}

.cart-close:hover {
    color: #001014;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.cart-items {
    display: grid;
    gap: 10px;
    max-height: 360px;
    overflow-y: auto;
    padding: 14px 2px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.cart-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 11px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.045);
}

.cart-item img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(0, 229, 255, 0.45);
    background: #000;
}

.cart-item-main {
    min-width: 0;
}

.cart-item-name {
    color: #fff;
    font-weight: 900;
    font-size: 0.94rem;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-unit {
    width: max-content;
    max-width: 100%;
    margin-top: 4px;
    padding: 3px 8px;
    border-radius: 999px;
    color: var(--primary-color);
    background: rgba(0, 229, 255, .1);
    border: 1px solid rgba(0, 229, 255, .22);
    font-size: .72rem;
    font-weight: 900;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 0.82rem;
    margin-top: 2px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 9px;
}

.cart-qty-controls {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.cart-qty-btn,
.cart-remove-btn {
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.22s;
}

.cart-qty-btn {
    width: 30px;
    height: 30px;
}

.cart-qty-btn:hover {
    color: #001014;
    background: var(--primary-color);
}

.cart-qty-val {
    min-width: 30px;
    text-align: center;
    color: #fff;
    font-weight: 900;
    font-size: 0.86rem;
}

.cart-remove-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.62);
}

.cart-remove-btn:hover {
    color: #fff;
    background: rgba(255, 59, 48, 0.85);
}

.cart-empty {
    color: rgba(255, 255, 255, 0.68);
    text-align: center;
    padding: 28px 12px;
    border: 1px dashed rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    font-weight: 800;
}

.cart-promo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 11px 12px;
    border: 1px solid rgba(0, 229, 255, 0.32);
    border-radius: 14px;
    background: rgba(0, 229, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1.5;
}

.cart-promo[hidden] {
    display: none;
}

.cart-promo i {
    color: var(--primary-color);
    font-size: 1rem;
}

.cart-promo.active {
    border-color: rgba(37, 211, 102, 0.48);
    background: rgba(37, 211, 102, 0.1);
}

.cart-promo.active i {
    color: #25d366;
}

.cart-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.cart-summary > div {
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.cart-summary span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.76rem;
    font-weight: 800;
}

.cart-summary strong {
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 900;
    margin-top: 3px;
}

.cart-actions {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr;
    gap: 10px;
}

.cart-clear-btn,
.cart-checkout-btn {
    min-height: 44px;
    border: 0;
    border-radius: 14px;
    font-family: inherit;
    font-weight: 900;
    cursor: pointer;
    transition: 0.25s;
}

.cart-clear-btn {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cart-clear-btn:hover {
    background: rgba(255, 59, 48, 0.78);
}

.cart-checkout-btn {
    color: #001014;
    background: var(--primary-color);
    box-shadow: 0 0 22px rgba(0, 229, 255, 0.32);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cart-checkout-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.48);
}

.modal-btn-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.cart-toast {
    position: fixed;
    right: 50%;
    bottom: 92px;
    z-index: 2600;
    transform: translate(50%, 18px);
    opacity: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.88);
    color: #fff;
    border: 1px solid rgba(0, 229, 255, 0.55);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.22);
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 900;
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.cart-toast.show {
    opacity: 1;
    transform: translate(50%, 0);
}

.unit-choice-modal {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(12px);
}

.unit-choice-modal.active {
    display: flex;
}

.unit-choice-card {
    width: min(560px, 100%);
    border: 1px solid rgba(0, 229, 255, .26);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(8, 14, 18, .96), rgba(0, 0, 0, .96));
    box-shadow: 0 0 42px rgba(0, 229, 255, .18), 0 26px 80px rgba(0, 0, 0, .55);
    padding: 24px;
    position: relative;
    direction: rtl;
}

.unit-choice-close {
    position: absolute;
    left: 18px;
    top: 18px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    color: #fff;
    cursor: pointer;
}

.unit-choice-head {
    display: flex;
    gap: 14px;
    align-items: center;
    padding-left: 42px;
    margin-bottom: 18px;
}

.unit-choice-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #001014;
    background: var(--primary-color);
    box-shadow: 0 0 24px rgba(0, 229, 255, .38);
    flex-shrink: 0;
}

.unit-choice-kicker {
    color: var(--primary-color);
    font-size: .82rem;
    font-weight: 900;
    margin-bottom: 3px;
}

.unit-choice-head h3 {
    margin: 0;
    color: #fff;
    font-size: 1.35rem;
}

.unit-choice-head p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, .62);
    font-size: .92rem;
    font-weight: 700;
}

.unit-choice-options {
    display: grid;
    gap: 10px;
}

.unit-choice-option {
    width: 100%;
    min-height: 74px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    background: rgba(255, 255, 255, .045);
    color: #fff;
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    padding: 13px 15px;
    cursor: pointer;
    text-align: right;
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.unit-choice-option:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    background: rgba(0, 229, 255, .09);
}

.unit-choice-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-width: 0;
}

.unit-choice-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    min-width: 0;
}

.unit-choice-label span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.unit-choice-label i {
    color: var(--primary-color);
    flex: 0 0 auto;
}

.unit-choice-price {
    color: var(--primary-color);
    font-size: 1.05rem;
    font-weight: 900;
    white-space: nowrap;
    flex: 0 0 auto;
}

.unit-choice-offer {
    color: var(--primary-color);
    font-size: .86rem;
    font-weight: 900;
    line-height: 1.65;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.unit-choice-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

.purchase-wheels-side {
    width: 260px;
    height: 550px;
    overflow-y: auto;
    position: relative;
    display: flex;
    justify-content: center;
    scrollbar-width: none;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    z-index: 20;
}

.purchase-wheels-side[hidden] {
    display: none;
}

.purchase-wheels-side::-webkit-scrollbar {
    display: none;
}

.purchase-wheels-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 200px 0;
    will-change: transform;
}

.purchase-wheel-item {
    width: 230px;
    min-height: 220px;
    display: grid;
    place-items: center;
    transition: transform 0.3s, opacity 0.3s;
}

.purchase-wheel-bubble {
    width: 230px;
    border: 0;
    background: transparent;
    color: #fff;
    font-family: inherit;
    cursor: pointer;
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 0;
    position: relative;
}

.purchase-wheel-bubble[aria-disabled="true"] {
    cursor: default;
}

.purchase-wheel-pointer {
    width: 0;
    height: 0;
    border-inline: 15px solid transparent;
    border-top: 27px solid var(--primary-color);
    filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.85));
    margin-bottom: -5px;
}

.purchase-wheel-mini {
    width: 154px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 5px solid #050505;
    outline: 2px solid rgba(0, 229, 255, 0.62);
    background: conic-gradient(var(--purchase-wheel-gradient, #00e5ff 0deg 180deg, #7000ff 180deg 360deg));
    position: relative;
    box-shadow: 0 0 38px rgba(0, 229, 255, 0.42);
    transition: transform 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease, filter 0.24s ease;
}

.purchase-wheel-mini::after {
    content: '';
    position: absolute;
    inset: 39%;
    border-radius: 50%;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 2;
}

.purchase-wheel-title {
    max-width: 206px;
    min-width: 150px;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.76);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.72);
    position: static;
    transform: none;
}

.purchase-wheel-status {
    min-height: 32px;
    max-width: 210px;
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1.35;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.45);
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.purchase-wheel-item.active .purchase-wheel-status,
.purchase-wheel-bubble.is-eligible .purchase-wheel-status {
    opacity: 1;
    transform: translateY(0);
}

.purchase-wheel-prizes {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.purchase-wheel-lock {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.82);
    border: 2px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.72);
    font-size: 1rem;
    transition: 0.24s ease;
}

.purchase-wheel-prize {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.58);
    border: 2px solid var(--prize-color, var(--primary-color));
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.6);
    color: #fff;
    font-style: normal;
    font-size: 0.82rem;
    font-weight: 900;
    transform:
        translate(-50%, -50%)
        rotate(var(--prize-angle))
        translateY(-51px)
        rotate(calc(var(--prize-angle) * -1));
}

.purchase-wheel-prize img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.purchase-wheel-bubble.is-locked .purchase-wheel-mini,
.purchase-wheel-bubble.is-locked .purchase-wheel-pointer {
    opacity: 0.78;
    filter: grayscale(0.12);
}

.purchase-wheel-bubble.is-locked .purchase-wheel-prizes {
    opacity: 0.32;
}

.purchase-wheel-bubble.is-locked .purchase-wheel-lock {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.82);
}

.purchase-wheel-bubble.is-won .purchase-wheel-mini {
    opacity: 0.58;
    filter: grayscale(0.4);
}

.purchase-wheel-bubble.is-won .purchase-wheel-lock {
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.6);
    box-shadow: 0 0 18px rgba(37, 211, 102, 0.28);
}

.purchase-wheel-bubble.is-eligible .purchase-wheel-mini {
    animation: purchaseWheelPulse 1.55s ease-in-out infinite;
    outline-color: var(--primary-color);
}

.purchase-wheel-bubble.is-eligible .purchase-wheel-lock {
    color: var(--primary-color);
    border-color: rgba(0, 229, 255, 0.78);
    background: rgba(0, 18, 22, 0.88);
    box-shadow: 0 0 24px rgba(0, 229, 255, 0.42);
}

.purchase-wheel-bubble.is-eligible:hover .purchase-wheel-mini {
    transform: scale(1.08);
    box-shadow: 0 0 42px rgba(0, 229, 255, 0.62);
}

@keyframes purchaseWheelPulse {
    0%, 100% {
        box-shadow: 0 0 24px rgba(0, 229, 255, 0.28);
    }
    50% {
        box-shadow: 0 0 44px rgba(0, 229, 255, 0.68);
    }
}

.customer-login-modal {
    padding: 18px;
}

.customer-login-card {
    max-width: 760px;
    max-height: 92vh;
    overflow-y: auto;
}

.visitor-registration-modal {
    z-index: 4200;
    padding: 18px;
}

.visitor-registration-card {
    width: min(92vw, 560px);
    max-height: 92vh;
    overflow-y: auto;
    border: 1px solid rgba(0, 229, 255, 0.4);
    border-radius: 26px;
    background:
        radial-gradient(circle at 50% -10%, rgba(0, 229, 255, 0.14), transparent 38%),
        rgba(5, 5, 5, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.58), 0 0 34px rgba(0, 229, 255, 0.16);
    padding: 24px;
}

.visitor-registration-head {
    text-align: center;
    margin-bottom: 18px;
}

.visitor-registration-head span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.84rem;
    font-weight: 900;
}

.visitor-registration-head h3 {
    color: var(--primary-color);
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 900;
    margin-top: 4px;
    text-shadow: 0 0 14px rgba(0, 229, 255, 0.34);
}

.visitor-type-picker {
    display: flex;
    justify-content: center;
    gap: clamp(16px, 5vw, 34px);
    margin-bottom: 20px;
}

.visitor-type-btn {
    width: 126px;
    height: 126px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 9px;
    font-family: inherit;
    cursor: pointer;
    transition: 0.22s ease;
}

.visitor-type-btn i {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(0, 229, 255, 0.12);
    color: var(--primary-color);
    font-size: 1.25rem;
}

.visitor-type-btn strong {
    font-size: 0.96rem;
    font-weight: 900;
}

.visitor-type-btn:hover,
.visitor-type-btn.active {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(0, 229, 255, 0.22);
}

.visitor-registration-form {
    display: grid;
    gap: 13px;
}

.visitor-merchant-fields {
    display: grid;
    gap: 13px;
}

.visitor-merchant-fields[hidden] {
    display: none;
}

.visitor-location-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.visitor-location-row span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.6;
}

.visitor-location-map {
    width: 100%;
    height: 170px;
    border: 1px solid rgba(0, 229, 255, 0.24);
    border-radius: 16px;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.04);
}

.visitor-registration-message {
    min-height: 22px;
    color: var(--primary-color);
    font-size: 0.86rem;
    font-weight: 900;
    text-align: center;
}

.visitor-registration-message.error {
    color: #ff7a7a;
}

.visitor-submit-btn {
    width: 100%;
}

.reward-wheel-modal,
.reward-result-modal {
    z-index: 4300;
    padding: 18px;
}

.reward-wheel-card,
.reward-result-card {
    width: min(92vw, 560px);
    border: 1px solid rgba(0, 229, 255, 0.42);
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% -12%, rgba(0, 229, 255, 0.16), transparent 38%),
        rgba(5, 5, 5, 0.95);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.64), 0 0 38px rgba(0, 229, 255, 0.18);
    padding: 24px;
}

.reward-wheel-head {
    text-align: center;
    margin-bottom: 14px;
}

.reward-wheel-head span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.84rem;
    font-weight: 900;
}

.reward-wheel-head h3 {
    color: var(--primary-color);
    font-size: clamp(1.35rem, 5vw, 2rem);
    font-weight: 900;
    line-height: 1.25;
    margin-top: 5px;
    text-shadow: 0 0 18px rgba(0, 229, 255, 0.42);
}

.reward-wheel-stage {
    display: grid;
    place-items: center;
    padding: 12px 0 6px;
}

.reward-wheel-pointer {
    width: 0;
    height: 0;
    border-inline: 18px solid transparent;
    border-top: 32px solid var(--primary-color);
    filter: drop-shadow(0 0 11px rgba(0, 229, 255, 0.7));
    margin-bottom: -7px;
    z-index: 2;
}

.reward-wheel {
    width: min(380px, 78vw);
    aspect-ratio: 1;
    border: 6px solid #050505;
    outline: 2px solid rgba(0, 229, 255, 0.58);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background: conic-gradient(var(--reward-wheel-gradient, #00e5ff 0deg 90deg, #7000ff 90deg 180deg, #25d366 180deg 270deg, #ffd60a 270deg 360deg));
    box-shadow: 0 0 42px rgba(0, 229, 255, 0.27);
    cursor: pointer;
    transition: transform 4.2s cubic-bezier(0.13, 0.78, 0.12, 1);
}

.reward-wheel::after {
    content: '';
    position: absolute;
    inset: 38%;
    border-radius: 50%;
    background: #050505;
    border: 2px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 0 22px rgba(0, 0, 0, 0.52);
    z-index: 2;
}

.reward-wheel:disabled {
    cursor: wait;
}

.reward-wheel-labels {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.reward-wheel-label {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 108px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.92rem;
    line-height: 1.25;
    font-weight: 900;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.78);
    transform:
        translate(-50%, -50%)
        rotate(var(--angle))
        translateY(-122px)
        rotate(calc(var(--angle) * -1));
}

.reward-wheel-label img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.34);
    margin-inline-end: 5px;
    flex-shrink: 0;
}

.reward-wheel-center {
    position: absolute;
    inset: 39%;
    z-index: 3;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--primary-color);
    font-weight: 900;
    text-shadow: 0 0 12px rgba(0, 229, 255, 0.7);
}

.reward-wheel-note {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.7;
    text-align: center;
    margin-top: 12px;
}

.reward-result-card {
    display: grid;
    justify-items: center;
    gap: 18px;
}

.reward-result-circle {
    width: min(340px, 78vw);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background:
        radial-gradient(circle at 50% 30%, rgba(0, 229, 255, 0.2), transparent 35%),
        rgba(0, 0, 0, 0.72);
    box-shadow: 0 0 44px rgba(0, 229, 255, 0.25), inset 0 0 32px rgba(0, 229, 255, 0.08);
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    padding: 28px;
    text-align: center;
}

.reward-result-circle i {
    color: var(--primary-color);
    font-size: 2.3rem;
    filter: drop-shadow(0 0 14px rgba(0, 229, 255, 0.7));
}

.reward-result-image {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 229, 255, 0.52);
    box-shadow: 0 0 22px rgba(0, 229, 255, 0.24);
}

.reward-result-circle span {
    color: rgba(255, 255, 255, 0.68);
    font-weight: 900;
}

.reward-result-circle strong {
    color: var(--primary-color);
    font-size: clamp(1.35rem, 5vw, 2rem);
    line-height: 1.35;
    font-weight: 900;
    text-shadow: 0 0 18px rgba(0, 229, 255, 0.45);
}

.reward-result-btn {
    width: min(320px, 100%);
}

.reward-social-follow {
    width: min(420px, 100%);
    margin-top: 2px;
    padding: 16px;
    border: 1px solid rgba(0, 229, 255, 0.22);
    border-radius: 18px;
    background: rgba(0, 229, 255, 0.06);
    text-align: center;
}

.reward-social-follow strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 900;
    margin-bottom: 12px;
}

.reward-social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.reward-social-links a,
.reward-social-links span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 12px;
    border: 1px solid rgba(0, 229, 255, 0.26);
    border-radius: 999px;
    background: rgba(0, 229, 255, 0.08);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 900;
}

.customer-login-form {
    display: grid;
    gap: 18px;
}

.customer-fields-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.customer-field {
    display: grid;
    gap: 7px;
}

.customer-field span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
    font-weight: 900;
}

.customer-field input,
.customer-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    outline: 0;
    background: rgba(255, 255, 255, 0.055);
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    padding: 12px 13px;
    transition: 0.22s;
}

.customer-field textarea {
    resize: vertical;
    min-height: 96px;
}

.customer-field:nth-child(4) {
    grid-column: 1 / -1;
}

.customer-field input:focus,
.customer-field textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.2);
}

.customer-field input::placeholder,
.customer-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.customer-map-box {
    overflow: hidden;
    border: 1px solid rgba(0, 229, 255, 0.28);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
}

.customer-map-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.customer-map-head strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 900;
}

.customer-map-head span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
    line-height: 1.6;
    margin-top: 2px;
}

.customer-map-btn {
    min-height: 40px;
    border: 1px solid rgba(0, 229, 255, 0.52);
    border-radius: 999px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 900;
    padding: 0 16px;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.22s;
}

.customer-map-btn:hover {
    background: var(--primary-color);
    color: #001014;
}

.customer-login-actions {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr;
    gap: 12px;
}

.instant-payment-card {
    max-width: 660px;
}

.instant-payment-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
}

.instant-payment-summary > div {
    border: 1px solid rgba(0, 229, 255, 0.24);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.055);
    padding: 14px;
}

.instant-payment-summary span {
    display: block;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.8rem;
    font-weight: 900;
}

.instant-payment-summary strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 900;
    margin-top: 4px;
}

.instant-payment-form {
    display: grid;
    gap: 16px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.payment-method {
    min-height: 92px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    display: grid;
    place-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.22s;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 900;
}

.payment-method input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-method i {
    font-size: 2rem;
}

.payment-method.active,
.payment-method:hover {
    border-color: var(--primary-color);
    background: rgba(0, 229, 255, 0.12);
    color: var(--primary-color);
    box-shadow: 0 0 24px rgba(0, 229, 255, 0.18);
}

.payment-card-fields {
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.24);
}

.payment-card-fields[hidden] {
    display: none;
}

.payment-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.payment-paypal-note {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 229, 255, 0.18);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.74);
    background: rgba(0, 229, 255, 0.07);
    padding: 13px;
    font-weight: 800;
    line-height: 1.6;
}

.payment-paypal-note i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.shop-payment-details {
    display: grid;
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(0, 229, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
}

.shop-payment-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.shop-payment-head i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(0, 229, 255, 0.24);
}

.shop-payment-head span,
.shop-payment-grid span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
    font-weight: 900;
}

.shop-payment-head strong,
.shop-payment-grid strong {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.shop-payment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.shop-payment-grid > div {
    min-height: 72px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.2);
}

.shop-payment-grid .shop-payment-notes {
    grid-column: 1 / -1;
}

.customer-page-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 229, 255, 0.12), transparent 32%),
        radial-gradient(circle at 80% 78%, rgba(112, 0, 255, 0.16), transparent 34%),
        var(--bg-dark);
}

.customer-page {
    width: min(860px, calc(100% - 28px));
    margin: 0 auto;
    padding: 34px 0;
}

.customer-page-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 16px;
}

.customer-page-card {
    width: 100%;
    max-width: none;
    transform: none;
}

@media (max-width: 560px) {
    .cart-panel {
        left: 14px;
        right: 14px;
        bottom: 78px;
        width: auto;
    }

    .cart-actions,
    .cart-summary {
        grid-template-columns: 1fr;
    }

    .visitor-registration-card {
        padding: 18px;
    }

    .visitor-type-picker {
        gap: 12px;
    }

    .visitor-type-btn {
        width: 108px;
        height: 108px;
    }

    .reward-wheel-label {
        width: 88px;
        min-height: 32px;
        font-size: 0.78rem;
        transform:
            translate(-50%, -50%)
            rotate(var(--angle))
            translateY(-96px)
            rotate(calc(var(--angle) * -1));
    }

    .visitor-location-row {
        align-items: stretch;
        flex-direction: column;
    }

    .customer-fields-grid,
    .customer-login-actions,
    .instant-payment-summary,
    .shop-payment-grid,
    .payment-methods,
    .payment-field-row {
        grid-template-columns: 1fr;
    }

    .customer-map-head {
        align-items: stretch;
        flex-direction: column;
    }

    .customer-map-btn {
        width: 100%;
    }
}

.front-search-panel {
    position: fixed;
    right: 50%;
    bottom: 88px;
    width: min(560px, calc(100vw - 28px));
    transform: translate(50%, 18px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    z-index: 2400;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.front-search-panel.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(50%, 0) scale(1);
}

.front-search-card {
    border: 1px solid rgba(0, 229, 255, 0.38);
    background: rgba(3, 8, 10, 0.92);
    backdrop-filter: blur(18px);
    border-radius: 18px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.72), 0 0 35px rgba(0, 229, 255, 0.18);
    padding: 16px;
}

.front-search-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.front-search-title {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.05rem;
}

.front-search-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s;
}

.front-search-close:hover {
    color: #000;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.front-search-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.055);
    border-radius: 14px;
    padding: 12px 14px;
    color: var(--primary-color);
    transition: 0.25s;
}

.front-search-input-wrap:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.22);
}

.front-search-input-wrap input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 700;
}

.front-search-input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.front-search-results {
    display: grid;
    gap: 9px;
    max-height: 330px;
    overflow-y: auto;
    padding-top: 12px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.front-search-result {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.045);
    color: #fff;
    display: grid;
    grid-template-columns: 54px 1fr auto;
    align-items: center;
    gap: 12px;
    text-align: right;
    border-radius: 14px;
    padding: 9px;
    cursor: pointer;
    font-family: inherit;
    transition: 0.24s ease;
}

.front-search-result:hover {
    border-color: rgba(0, 229, 255, 0.58);
    background: rgba(0, 229, 255, 0.095);
    transform: translateY(-1px);
}

.front-search-result img,
.front-search-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 229, 255, 0.45);
    background: #000;
}

.front-search-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 900;
}

.front-search-name {
    display: block;
    font-weight: 900;
    line-height: 1.35;
}

.front-search-meta {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
    line-height: 1.3;
}

.front-search-tag {
    color: #000;
    background: var(--primary-color);
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 0.72rem;
    font-weight: 900;
    white-space: nowrap;
}

.front-search-empty {
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    padding: 22px 12px;
    border: 1px dashed rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    font-weight: 700;
}

.raffle-card-modal {
    z-index: 10080;
}

.raffle-card-panel {
    width: min(520px, calc(100% - 26px));
    border: 1px solid rgba(0, 229, 255, .24);
    border-radius: 28px;
    padding: 24px;
    background: linear-gradient(145deg, rgba(10, 16, 22, .96), rgba(4, 5, 8, .94));
    box-shadow: 0 28px 80px rgba(0, 0, 0, .58), 0 0 28px rgba(0, 229, 255, .16);
    position: relative;
}

.raffle-card-close {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    cursor: pointer;
}

.raffle-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    margin-bottom: 18px;
}

.raffle-card-icon {
    width: 56px;
    height: 56px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--primary-color);
    background: #000;
    font-size: 22px;
    box-shadow: 0 0 18px rgba(0, 229, 255, .36);
    flex-shrink: 0;
}

.raffle-card-head span {
    color: var(--primary-color);
    font-size: .85rem;
    font-weight: 900;
}

.raffle-card-head h3 {
    margin: 4px 0;
    color: #fff;
    font-size: 1.45rem;
    font-weight: 900;
}

.raffle-card-head p {
    margin: 0;
    color: rgba(255, 255, 255, .64);
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.7;
}

.raffle-card-form {
    display: grid;
    gap: 12px;
}

.raffle-card-form label {
    color: rgba(255, 255, 255, .76);
    font-size: .86rem;
    font-weight: 900;
}

.raffle-card-form input {
    min-height: 54px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    background: rgba(255, 255, 255, .065);
    color: #fff;
    padding: 0 16px;
    text-align: center;
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: 3px;
    outline: none;
}

.raffle-card-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 18px rgba(0, 229, 255, .22);
}

.raffle-scan-btn {
    min-height: 56px;
    background: rgba(0, 229, 255, .08) !important;
    border: 1px solid rgba(0, 229, 255, .34) !important;
    color: var(--primary-color) !important;
}

.raffle-scanner {
    margin-top: 14px;
    padding: 12px;
    border: 1px solid rgba(0, 229, 255, .25);
    border-radius: 22px;
    background: rgba(0, 0, 0, .38);
}

.raffle-scanner-frame {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 1 / 1;
    max-height: min(58vh, 420px);
    background: #020607;
    display: grid;
    place-items: center;
}

.raffle-scanner-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.raffle-scanner-frame::after {
    content: '';
    position: absolute;
    inset: 14%;
    border: 1px solid rgba(0, 229, 255, .65);
    border-radius: 20px;
    box-shadow: 0 0 0 999px rgba(0, 0, 0, .34), 0 0 22px rgba(0, 229, 255, .28);
}

.raffle-scan-corner {
    position: absolute;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-color: var(--primary-color);
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, .8));
}

.raffle-scan-corner.corner-1 {
    top: 14%;
    right: 14%;
    border-top: 4px solid;
    border-right: 4px solid;
    border-radius: 0 14px 0 0;
}

.raffle-scan-corner.corner-2 {
    top: 14%;
    left: 14%;
    border-top: 4px solid;
    border-left: 4px solid;
    border-radius: 14px 0 0 0;
}

.raffle-scan-corner.corner-3 {
    bottom: 14%;
    right: 14%;
    border-bottom: 4px solid;
    border-right: 4px solid;
    border-radius: 0 0 14px 0;
}

.raffle-scan-corner.corner-4 {
    bottom: 14%;
    left: 14%;
    border-bottom: 4px solid;
    border-left: 4px solid;
    border-radius: 0 0 0 14px;
}

.raffle-scanner-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
    color: rgba(255, 255, 255, .76);
    font-size: .86rem;
    font-weight: 800;
}

.raffle-scanner-actions button {
    border: 1px solid rgba(255, 77, 104, .42);
    border-radius: 999px;
    min-height: 38px;
    padding: 0 14px;
    color: #ff6b7f;
    background: rgba(255, 77, 104, .1);
    font: inherit;
    cursor: pointer;
}

.raffle-card-result {
    margin-top: 16px;
    border: 1px solid rgba(0, 229, 255, .22);
    border-radius: 20px;
    padding: 16px;
    background: rgba(0, 229, 255, .06);
    color: #fff;
    font-weight: 800;
    line-height: 1.7;
    text-align: center;
}

.raffle-card-result.success {
    border-color: rgba(37, 211, 102, .38);
    background: rgba(37, 211, 102, .1);
}

.raffle-card-result.warning {
    border-color: rgba(255, 214, 10, .34);
    background: rgba(255, 214, 10, .09);
}

.raffle-card-result.error {
    border-color: rgba(255, 77, 104, .34);
    background: rgba(255, 77, 104, .09);
}

.raffle-card-result h4 {
    margin: 0 0 6px;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 900;
}

.raffle-card-result.success h4 {
    color: #25d366;
}

.raffle-claim-note {
    margin: 12px auto 0;
    width: fit-content;
    max-width: 100%;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 13px;
    border: 1px solid rgba(37, 211, 102, .36);
    border-radius: 999px;
    background: rgba(37, 211, 102, .11);
    color: #b8ffd3;
    font-size: .9rem;
    font-weight: 900;
}

.raffle-card-result img {
    width: min(220px, 100%);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(0, 229, 255, .24);
    margin: 12px auto;
    display: block;
}

.raffle-whatsapp-link {
    margin-top: 12px;
    min-height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    background: #25d366;
    color: #00180b;
    text-decoration: none;
    font-weight: 900;
}

.raffle-social-follow {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.raffle-social-follow strong {
    display: block;
    color: #fff;
    font-size: .92rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.raffle-social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.raffle-social-links a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 12px;
    border: 1px solid rgba(0, 229, 255, .24);
    border-radius: 999px;
    background: rgba(0, 229, 255, .08);
    color: var(--primary-color);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 900;
}

@media (max-width: 560px) {
    .front-search-panel {
        bottom: 78px;
    }

    .front-search-result {
        grid-template-columns: 48px 1fr;
    }

    .front-search-result img,
    .front-search-avatar {
        width: 48px;
        height: 48px;
    }

    .front-search-tag {
        grid-column: 2;
        justify-self: start;
    }
}

.buy-btn {
    background: var(--primary-color);
    color: #000;
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.animate {
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass {
    backdrop-filter: blur(10px);
}

/* Info Section Styles */
.info-section {
    padding: 60px 10%;
    margin-bottom: 100px;
    /* Space for bottom nav */
}

.info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.info-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.info-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px var(--primary-color));
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.info-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Radial Section Styles */
.radial-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 5%;
    background: radial-gradient(circle at 70% 50%, rgba(0, 229, 255, 0.03), transparent 70%);
    min-height: 700px;
}

.radial-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.main-radial-display {
    position: relative;
    width: 850px;
    height: 850px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radial-track {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.radial-item {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid transparent;
    overflow: hidden;
    background: #000;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.radial-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.central-content {
    width: 350px;
    padding: 50px;
    text-align: center;
    z-index: 10;
    border-radius: 50%;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
}

.central-content h2 {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 900;
}

.central-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.explore-btn {
    background: var(--primary-color);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 10px;
    align-self: center;
    transition: 0.3s;
}

/* Side Nav Vertical (Sketch Style) */
.side-nav-vertical {
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-right: -40px;
    /* Shift to the left in RTL */
    z-index: 20;
}

.side-nav-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 800;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin-bottom: 20px;
}

.side-circles-list {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.side-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.4s;
    background: #000;
    position: relative;
    overflow: visible;
}

.side-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: 0.3s;
    border-radius: 50%;
    overflow: hidden;
    display: block;
}

.side-shop-name {
    position: absolute;
    left: 50%;
    right: auto;
    top: calc(100% + 8px);
    transform: translateX(-50%) translateY(-4px);
    width: max-content;
    max-width: 132px;
    padding: 6px 10px;
    border: 1px solid rgba(0, 229, 255, 0.28);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38), 0 0 16px rgba(0, 229, 255, 0.16);
    backdrop-filter: blur(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.side-circle.active img {
    opacity: 1;
    transform: scale(1.1);
}

.side-circle.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--primary-color);
}

.side-circle.active span {
    color: var(--primary-color);
}

.side-circle.active .side-shop-name,
.side-circle:hover .side-shop-name {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    border-color: rgba(0, 229, 255, 0.55);
}

.side-arrows {
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 20px;
}

.side-arrows i {
    cursor: pointer;
    transition: 0.3s;
}

/* Vertical Infinity Carousel Styles */
.v-carousel-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0;
    gap: 40px;
    background: radial-gradient(circle at center, rgba(0, 229, 255, 0.05), transparent 80%);
}

.v-carousel-container {
    width: 350px;
    height: 550px;
    overflow-y: auto;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    display: flex;
    justify-content: center;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.v-carousel-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.v-carousel-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 200px 0;
    will-change: transform;
}

.v-item {
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.18s ease-out, opacity 0.18s ease-out, filter 0.18s ease-out;
    will-change: transform, opacity;
}

.v-card {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    position: relative;
}

.v-card img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.v-item.active .v-card {
    border-color: var(--primary-color);
    box-shadow: 0 0 40px var(--primary-color), inset 0 0 20px var(--primary-color);
}

.v-carousel-info {
    text-align: center;
    max-width: 500px;
    margin-top: 20px;
}

.v-carousel-info h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 900;
    text-shadow: 0 0 15px var(--primary-color);
    margin-bottom: 10px;
}

.v-carousel-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Float Animation for active item */
@keyframes v-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.v-item.active .v-card {
    animation: v-float 3s ease-in-out infinite;
}

/* Logo Dropdown Styles */
.logo {
    position: relative;
    cursor: pointer;
}

.logo-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 15px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 10px 0;
    width: 200px;
    display: none;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    z-index: 2000;
}

.logo-dropdown.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.dropdown-item {
    padding: 15px 20px;
    color: #fff;
    font-weight: bold;
    position: relative;
    transition: 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-item:hover {
    background: rgba(0, 229, 255, 0.2);
    color: var(--primary-color);
}

.dropdown-item::after {
    content: '\f104';
    /* FontAwesome left arrow for RTL */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
}

.sub-dropdown {
    position: absolute;
    top: 0;
    right: 100%;
    margin-right: 2px;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 10px 0;
    width: 250px;
    display: none;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.dropdown-item:hover .sub-dropdown {
    display: flex;
    animation: slideInRTL 0.3s ease;
}

.sub-item {
    padding: 12px 20px;
    color: #fff;
    transition: 0.3s;
}

.sub-item:hover {
    background: rgba(0, 229, 255, 0.2);
    color: var(--primary-color);
    padding-right: 25px;
}

/* Agent items custom styling */
.agent-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    padding: 10px 15px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
    text-align: inherit;
    font: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.agent-item:last-child {
    border-bottom: none;
}

.agent-main {
    display: flex;
    align-items: center;
    gap: 10px;
}

.agent-logo-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    flex-shrink: 0;
    overflow: hidden;
}

.agent-img-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.border-blue {
    border: 1.5px solid #00e5ff;
    box-shadow: 0 0 5px rgba(0, 229, 255, 0.5);
}

.border-cyan {
    border: 1.5px solid #00ffd5;
    box-shadow: 0 0 5px rgba(0, 255, 213, 0.5);
}

.border-green {
    border: 1.5px solid #39ff14;
    box-shadow: 0 0 5px rgba(57, 255, 20, 0.5);
}

.agent-icon {
    font-size: 0.85rem;
}

.icon-blue {
    color: #00e5ff;
    filter: drop-shadow(0 0 5px rgba(0, 229, 255, 0.6));
}

.icon-cyan {
    color: #00ffd5;
    filter: drop-shadow(0 0 5px rgba(0, 255, 213, 0.6));
}

.icon-green {
    color: #39ff14;
    filter: drop-shadow(0 0 5px rgba(57, 255, 20, 0.6));
}

.agent-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: #ffffff;
    transition: 0.3s;
}

.agent-shop {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    padding-right: 42px; /* aligns under the name, next to the logo */
    font-weight: 400;
    transition: 0.3s;
}

html[dir="ltr"] .logo-dropdown {
    right: auto;
    left: 0;
    direction: ltr;
}

html[dir="ltr"] .dropdown-item::after {
    content: '\f105';
}

html[dir="ltr"] .sub-dropdown {
    right: auto;
    left: 100%;
    margin-right: 0;
    margin-left: 2px;
}

html[dir="ltr"] .agent-item {
    text-align: left;
}

html[dir="ltr"] .agent-shop {
    padding-right: 0;
    padding-left: 42px;
}

html[dir="ltr"] .sub-item:hover {
    padding-right: 20px;
    padding-left: 25px;
}

/* Hover effects */
.agent-item:hover {
    background: rgba(0, 229, 255, 0.1);
}

.agent-item:hover .agent-logo-wrapper {
    background: rgba(0, 229, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.agent-item:hover .agent-name {
    color: var(--primary-color);
}

.agent-item:hover .agent-shop {
    color: rgba(0, 229, 255, 0.7);
}

@media (max-width: 768px) {
    .logo-dropdown {
        top: calc(100% + 54px);
        right: 0;
        left: auto;
        margin-top: 0;
        width: min(160px, calc(100vw - 28px));
        max-width: min(160px, calc(100vw - 28px));
        padding: 6px 0;
        border-radius: 12px;
        transform: none;
        z-index: 3200;
    }

    .logo-dropdown.show {
        animation: fadeIn 0.24s ease;
    }

    .dropdown-item {
        min-height: 44px;
        padding: 10px 12px;
        gap: 8px;
        font-size: 0.74rem;
    }

    .dropdown-item::after {
        font-size: 0.68rem;
        flex: 0 0 auto;
    }

    .sub-dropdown {
        top: 0;
        right: calc(100% + 4px);
        margin-right: 0;
        width: min(150px, calc(100vw - 206px));
        min-width: 118px;
        max-height: min(280px, calc(100vh - 160px));
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 6px 0;
        border-radius: 12px;
        z-index: 3201;
        -webkit-overflow-scrolling: touch;
    }

    .sub-item {
        padding: 10px 12px;
    }

    .sub-item:hover {
        padding-right: 12px;
    }

    .agent-item {
        gap: 3px;
        padding: 9px 10px;
    }

    .agent-main {
        gap: 8px;
        min-width: 0;
    }

    .agent-logo-wrapper {
        width: 28px;
        height: 28px;
    }

    .agent-name,
    .agent-shop {
        overflow-wrap: anywhere;
    }

    .agent-name {
        font-size: 0.76rem;
        line-height: 1.25;
    }

    .agent-shop {
        padding-right: 36px;
        font-size: 0.64rem;
        line-height: 1.25;
    }

    html[dir="ltr"] .logo-dropdown {
        right: auto;
        left: 0;
    }

    html[dir="ltr"] .sub-dropdown {
        right: auto;
        left: calc(100% + 4px);
        margin-left: 0;
    }

    html[dir="ltr"] .sub-item:hover {
        padding-right: 12px;
        padding-left: 12px;
    }

    html[dir="ltr"] .agent-shop {
        padding-right: 0;
        padding-left: 36px;
    }
}

@keyframes slideInRTL {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Location Button */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.location-btn {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.location-btn:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 15px var(--primary-color);
}

.language-switcher {
    position: relative;
}

.language-switcher-btn {
    font-family: inherit;
}

.language-switcher-menu {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline-end: 0;
    min-width: 132px;
    padding: 8px;
    border: 1px solid rgba(0, 229, 255, 0.34);
    border-radius: 14px;
    background: rgba(3, 8, 10, 0.96);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45), 0 0 22px rgba(0, 229, 255, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: 0.2s ease;
    z-index: 2200;
}

.language-switcher:hover .language-switcher-menu,
.language-switcher:focus-within .language-switcher-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.language-switcher-menu a {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 0.86rem;
    font-weight: 900;
    transition: 0.2s ease;
}

.language-switcher-menu a:hover,
.language-switcher-menu a.active {
    color: #001014;
    background: var(--primary-color);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-dark);
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    width: 90%;
    max-width: 500px;
    padding: 25px;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
}

.modal-header h3 {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.close-modal {
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.close-modal:hover {
    color: var(--primary-color);
}

.map-placeholder {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.nearest-shops-modal {
    max-width: 980px;
}

.nearest-location-status {
    border: 1px solid rgba(0, 229, 255, 0.24);
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(0, 0, 0, 0.34);
    line-height: 1.6;
    font-weight: 800;
}

.nearest-shops-list {
    display: grid;
    gap: 10px;
    align-content: start;
    max-height: min(58vh, 520px);
    overflow-y: auto;
    padding-inline-end: 4px;
}

.nearest-gps-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 14px;
    align-items: stretch;
}

.nearest-map-card {
    position: relative;
    min-height: 430px;
    border: 1px solid rgba(0, 229, 255, 0.22);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.42);
    box-shadow: inset 0 0 28px rgba(0, 229, 255, 0.08);
}

.nearest-map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 430px;
    border: 0;
    display: block;
    filter: saturate(1.02) contrast(1.02);
}

.nearest-route-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.nearest-route-overlay[hidden] {
    display: none;
}

.nearest-route-overlay svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.nearest-route-shadow,
.nearest-route-line {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.nearest-route-shadow {
    stroke: rgba(0, 0, 0, 0.55);
    stroke-width: 10;
}

.nearest-route-line {
    stroke: #1238ff;
    stroke-width: 6;
    stroke-dasharray: 16 10;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.75));
    animation: routeDash 1.5s linear infinite;
}

.nearest-route-pin {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 2px solid #fff;
    border-radius: 999px;
    padding: 7px 10px;
    color: #001014;
    background: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 900;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.34);
}

.nearest-route-pin::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 14px;
    height: 14px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    background: var(--primary-color);
    transform: translateX(-50%) rotate(45deg);
}

.nearest-route-start {
    left: 12%;
    bottom: 17%;
}

.nearest-route-end {
    right: 10%;
    top: 15%;
    display: none;
}

.nearest-route-badge {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 12px;
    padding: 8px 12px;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    font-size: 0.78rem;
    font-weight: 900;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
    display: none;
}

@keyframes routeDash {
    to {
        stroke-dashoffset: -26;
    }
}

.nearest-map-info {
    position: absolute;
    right: 14px;
    left: 14px;
    bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(14px);
    z-index: 3;
}

.nearest-map-info small {
    display: block;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
    line-height: 1.45;
}

.nearest-map-info a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 10px 13px;
    color: #001014;
    background: var(--primary-color);
    font-size: 0.86rem;
    font-weight: 900;
    text-decoration: none;
}

.nearest-shop-card {
    width: 100%;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.055);
    cursor: pointer;
    text-align: start;
    font-family: inherit;
    transition: 0.2s ease;
}

.nearest-shop-card:focus-visible,
.nearest-map-info a:focus-visible,
.nearest-show-shop-btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

.nearest-shop-card:hover,
.nearest-shop-card.active {
    border-color: var(--primary-color);
    background: rgba(0, 229, 255, 0.12);
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.16);
}

.nearest-shop-card img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
}

.nearest-shop-card strong,
.nearest-map-info strong,
.shop-directions-panel strong {
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
    line-height: 1.35;
}

.nearest-shop-card span,
.nearest-map-info span,
.shop-directions-panel span {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
    line-height: 1.45;
}

.nearest-shop-distance {
    white-space: nowrap;
    color: #001014;
    background: var(--primary-color);
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 0.82rem;
    font-weight: 900;
    font-style: normal;
}

.nearest-show-shop-btn {
    display: none;
    width: 100%;
    margin-top: 10px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.92), rgba(92, 255, 196, 0.86)) !important;
    color: #001014 !important;
}

.nearest-show-shop-btn.is-visible {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.shop-directions-panel {
    position: absolute;
    top: -18px;
    left: 50%;
    z-index: 28;
    width: min(92%, 720px);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 16px;
    border: 1px solid rgba(0, 229, 255, 0.24);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(14px);
    box-shadow: 0 0 22px rgba(0, 229, 255, 0.14);
}

.shop-directions-panel a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 10px 14px;
    color: #001014;
    background: var(--primary-color);
    font-weight: 900;
    text-decoration: none;
}

.shop-directions-panel a:hover {
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.35);
}

.shop-directions-panel[hidden] {
    display: none;
}

.products-scatter-header {
    top: 56px !important;
    z-index: 27 !important;
    pointer-events: none;
}

.radial-section .products-scatter-header {
    z-index: 120 !important;
}

.products-scatter-header > div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    min-width: 0;
}

#productsScatterTitle {
    max-width: min(52%, 460px);
    overflow-wrap: anywhere;
    text-align: center;
    pointer-events: auto;
}

.products-scatter-header .back-btn {
    flex: 0 0 auto;
    pointer-events: auto;
}

.products-scatter-header .back-btn i {
    margin-inline-end: 8px;
}

html[dir="ltr"] .products-scatter-header {
    direction: ltr !important;
}

html[dir="ltr"] .products-scatter-header .back-btn i {
    transform: rotate(180deg);
}

/* Apple Watch Grid Styles */
.watch-grid-wrapper {
    position: relative;
    width: 100%;
    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.watch-grid-container {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: grab;
    z-index: 10;
}

.watch-grid-track {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
}

.watch-item {
    position: absolute;
    left: 0;
    top: 0;
    width: var(--scatter-item-size, 110px);
    height: var(--scatter-item-size, 110px);
    border-radius: 50%;
    background: #000;
    border: 3px solid transparent;
    overflow: visible;
    transition: border-color 0.3s;
    user-select: none;
    -webkit-user-drag: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transform-origin: center center;
}

.watch-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
    border-radius: 50%;
    box-sizing: border-box;
}

.gallery-thumb-item {
    overflow: hidden;
    border: 2px solid rgba(0, 229, 255, 0.38);
    background: rgba(0, 0, 0, 0.86);
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.22), 0 8px 20px rgba(0, 0, 0, 0.58);
}

.gallery-thumb-item img,
.gallery-thumb-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.watch-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
}

@keyframes bubblePop {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translate(calc(-50% + var(--pos-x, 0px)), calc(-50% + var(--pos-y, 0px))) scale(0.5);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translate(calc(-50% + var(--pos-x, 0px)), calc(-50% + var(--pos-y, 0px))) scale(1);
    }
}

.dept-title {
    position: absolute;
    bottom: -20px;
    width: max-content;
    min-width: min(120px, calc(var(--scatter-item-size, 110px) * 1.55));
    max-width: 180px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    font-size: 0.85rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 6px 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Products View */
.products-view {
    padding: 20px 60px;
    animation: fadeIn 0.5s ease forwards;
    width: 100%;
    margin-right: 60px;
    margin-bottom: 60px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.back-btn {
    background: var(--primary-color);
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.back-btn:hover {
    background: #fff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

#productsViewTitle {
    padding: 15px 40px;
    border-radius: 20px;
    color: var(--primary-color);
    margin: 0;
    font-size: 1.8rem;
    font-weight: 900;
    border: 1px solid var(--glass-border);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    padding-bottom: 100px;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.15);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.5));
    transition: 0.3s;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.product-card .price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.4rem;
}

.watch-info-panel {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    padding: 15px 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    pointer-events: none;
    width: 80%;
    z-index: 20;
}

.watch-info-panel h2 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.3rem;
    font-weight: 900;
}

.watch-info-panel p {
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Custom circular gallery main and thumb items */
.gallery-main-item {
    width: 440px !important;
    height: 440px !important;
    border: 4px solid var(--primary-color) !important;
    box-shadow: 0 0 60px rgba(0, 229, 255, 0.45), 0 20px 50px rgba(0, 0, 0, 0.9) !important;
    animation: bubblePop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards !important;
    background: rgba(10, 10, 10, 0.95) !important;
    border-radius: 50% !important;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.gallery-main-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.25s ease;
}

.open-full-hint {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.gallery-main-item:hover .open-full-hint {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 15px var(--primary-color);
    transform: translateX(-50%) scale(1.05);
}

.gallery-thumb-item {
    width: 110px !important;
    height: 110px !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3), 0 5px 15px rgba(0, 0, 0, 0.5) !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border-radius: 50% !important;
    overflow: hidden;
    background: #000 !important;
    z-index: 5;
}

.gallery-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1 !important;
    transition: transform 0.3s ease;
}

.gallery-thumb-item:hover img {
    transform: scale(1.1);
}

.gallery-thumb-item.active {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 25px var(--primary-color) !important;
    transform: translate(calc(-50% + var(--pos-x)), calc(-50% + var(--pos-y))) scale(1.15) !important;
}

/* Fullscreen image overlay style on Double Click */
.gallery-main-item.fullscreen-image {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    transform: none !important;
    border-radius: 0 !important;
    z-index: 99999 !important;
    background: rgba(0, 0, 0, 0.98) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    border: none !important;
    box-shadow: none !important;
}

.gallery-main-item.fullscreen-image img {
    width: auto !important;
    height: 100vh !important;
    max-width: 100vw !important;
    object-fit: contain !important;
    border-radius: 0 !important;
}

@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    header,
    .sub-section-header {
        width: 100%;
        overflow: visible;
    }

    .header-right-group {
        width: auto;
        justify-content: flex-start;
        gap: 8px;
    }

    .logo img {
        width: clamp(70px, 21vw, 92px);
        height: clamp(70px, 21vw, 92px);
    }

    .logo-container {
        min-width: 0;
        align-items: center;
        gap: 8px;
    }

    .logo-container > div[style*="display: flex"] {
        max-width: 128px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px !important;
    }

    .location-btn {
        padding: 4px 8px;
        font-size: 0.7rem;
        gap: 5px;
        white-space: nowrap;
    }

    .language-switcher {
        max-width: 78px;
    }

    .language-switcher-menu {
        top: calc(100% + 6px);
        inset-inline-start: 0;
        inset-inline-end: auto;
        min-width: 92px;
        max-width: 104px;
        padding: 5px;
        border-radius: 11px;
        z-index: 3400;
    }

    .language-switcher-menu a {
        padding: 7px 8px;
        border-radius: 8px;
        font-size: 0.68rem;
        line-height: 1.25;
        text-align: center;
        white-space: nowrap;
    }

    .social-icons-vertical {
        flex: 0 0 24px;
        align-items: center;
        gap: 10px;
    }

    .social-icon {
        font-size: 1.05rem;
    }

    .story-slider {
        max-width: none;
    }

    .carousel-3d-section {
        padding: 36px 0 44px;
        overflow: hidden;
    }

    .carousel-3d-section h2 {
        margin-bottom: 10px !important;
        font-size: 1.35rem;
        text-align: center;
    }

    .carousel-3d-container {
        position: relative;
        width: 100%;
        height: 330px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        perspective: 900px;
        transform-style: preserve-3d;
        touch-action: pan-y;
    }

    .carousel-item-3d,
    .carousel-item-3d.active,
    .carousel-item-3d.left1,
    .carousel-item-3d.left2,
    .carousel-item-3d.right1,
    .carousel-item-3d.right2,
    .carousel-item-3d.hidden {
        position: absolute;
        inset: auto;
        width: 138px;
        height: 205px;
        flex: none;
        pointer-events: auto;
    }

    .carousel-item-3d.active {
        opacity: 1;
        filter: none;
        transform: translate3d(0, 0, 150px) scale(1.12);
        z-index: 10;
    }

    .carousel-item-3d.left1 {
        opacity: 0.58;
        filter: blur(1px);
        transform: translate3d(-128px, 8px, -70px) rotateY(38deg) scale(0.68);
        z-index: 8;
    }

    .carousel-item-3d.right1 {
        opacity: 0.58;
        filter: blur(1px);
        transform: translate3d(128px, 8px, -70px) rotateY(-38deg) scale(0.68);
        z-index: 8;
    }

    .carousel-item-3d.left2 {
        opacity: 0.22;
        filter: blur(2px);
        transform: translate3d(-185px, 14px, -150px) rotateY(55deg) scale(0.48);
        z-index: 6;
    }

    .carousel-item-3d.right2 {
        opacity: 0.22;
        filter: blur(2px);
        transform: translate3d(185px, 14px, -150px) rotateY(-55deg) scale(0.48);
        z-index: 6;
    }

    .carousel-item-3d.hidden {
        opacity: 0;
        transform: translate3d(0, 0, -350px) scale(0.35);
        pointer-events: none;
    }

    .carousel-item-3d span,
    .carousel-item-3d.active span {
        width: 100%;
        margin-top: 8px;
        opacity: 1;
        color: #fff;
        font-size: 0.8rem;
        line-height: 1.35;
        text-align: center;
        transform: none;
    }

    .carousel-item-3d.active span {
        color: var(--primary-color);
    }

    .card-3d {
        height: 180px;
        border-radius: 18px;
    }

    .section-divider {
        margin: 20px 5%;
    }

    .gallery-main-item {
        width: 260px !important;
        height: 260px !important;
    }
    
    .gallery-thumb-item {
        width: 60px !important;
        height: 60px !important;
    }

    .radial-section {
        display: grid;
        grid-template-columns: 58px minmax(0, 1fr) 92px;
        grid-template-areas: "purchase products categories";
        direction: ltr;
        gap: 2px;
        width: 100%;
        min-height: 600px;
        margin-right: 0 !important;
        margin-bottom: 30px !important;
        padding: 12px 2px 76px;
        align-items: center;
        overflow: visible;
    }

    .radial-section .radial-container {
        grid-area: products;
        direction: rtl;
        width: 100%;
        min-width: 0;
        height: 520px;
        overflow: visible;
    }

    .radial-section .watch-grid-wrapper {
        width: 100% !important;
        height: 520px !important;
        overflow: hidden;
    }

    .radial-section .watch-item {
        box-shadow: 0 0 14px rgba(0, 229, 255, 0.18), 0 5px 14px rgba(0, 0, 0, 0.55);
    }

    .radial-section .watch-item img {
        max-width: 100%;
        max-height: 100%;
    }

    .radial-section .dept-title {
        bottom: -18px;
        min-width: 0;
        width: max-content;
        max-width: min(112px, calc(var(--scatter-item-size, 74px) * 1.75));
        padding: 4px 8px;
        font-size: 0.62rem;
        line-height: 1.25;
        border-radius: 8px;
    }

    .radial-section .product-add-cart-btn {
        width: 30px;
        height: 30px;
        top: -7px;
        left: -6px;
        font-size: 0.78rem;
    }

    .radial-section .side-nav-vertical {
        grid-area: categories;
        direction: rtl;
        width: 92px;
        height: 520px;
        margin: 0;
        overflow-x: visible;
        overflow-y: auto;
        align-self: center;
        touch-action: pan-y;
        overscroll-behavior-y: contain;
        -webkit-overflow-scrolling: touch;
        z-index: 26;
    }

    .radial-section .side-circles-list {
        align-items: center;
        gap: 18px;
        padding: 132px 0;
    }

    .radial-section .side-circle {
        width: 54px;
        height: 54px;
        flex: 0 0 54px;
        border-width: 2px;
        transition: transform 0.3s, opacity 0.3s;
        margin-bottom: 30px;
    }

    .radial-section .side-shop-name {
        left: 50%;
        right: auto;
        top: calc(100% + 5px);
        transform: translateX(-50%);
        width: 88px;
        max-width: 88px;
        min-height: 24px;
        padding: 4px 7px;
        font-size: 0.58rem;
        line-height: 1.2;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        color: rgba(255, 255, 255, 0.86);
        opacity: 0.86;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.34), 0 0 12px rgba(0, 229, 255, 0.14);
    }

    .radial-section .side-circle.active .side-shop-name {
        opacity: 1;
        color: var(--primary-color);
        border-color: rgba(0, 229, 255, 0.62);
        background: rgba(0, 0, 0, 0.86);
    }

    .radial-section .purchase-wheels-side {
        grid-area: purchase;
        direction: rtl;
        width: 58px;
        height: 520px;
        align-self: center;
    }

    .radial-section .purchase-wheels-track {
        gap: 24px;
        padding: 150px 0;
    }

    .radial-section .purchase-wheel-item,
    .radial-section .purchase-wheel-bubble {
        width: 64px;
        min-height: 136px;
    }

    .radial-section .purchase-wheel-mini {
        width: 54px;
        border-width: 3px;
    }

    .radial-section .purchase-wheel-prize {
        width: 20px;
        height: 20px;
        font-size: 0.62rem;
        transform:
            translate(-50%, -50%)
            rotate(var(--prize-angle))
            translateY(-17px)
            rotate(calc(var(--prize-angle) * -1));
    }

    .radial-section .purchase-wheel-lock {
        width: 30px;
        height: 30px;
        font-size: 0.72rem;
    }

    .radial-section .purchase-wheel-pointer {
        border-inline-width: 9px;
        border-top-width: 16px;
    }

    .radial-section .purchase-wheel-title,
    .radial-section .purchase-wheel-status {
        min-width: 0;
        width: 62px;
        max-width: 62px;
        min-height: 0;
        padding: 3px 1px;
        font-size: 0.54rem;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    .radial-section .products-scatter-header {
        width: 100% !important;
        left: 0 !important;
        top: 120px !important;
        padding: 0 4px !important;
        transform: none;
    }

    .radial-section .products-scatter-header > div:first-child {
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .radial-section #productsScatterTitle,
    .radial-section .back-btn {
        padding: 7px 8px !important;
        font-size: 0.68rem !important;
    }

    .radial-section #productsScatterTitle {
        max-width: min(70vw, 280px);
    }

    .shop-directions-panel {
        top: -8px;
        width: calc(100% - 4px);
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 8px;
        border-radius: 12px;
    }

    .shop-directions-panel strong {
        font-size: 0.78rem;
    }

    .shop-directions-panel span,
    .shop-directions-panel a {
        font-size: 0.64rem;
        line-height: 1.3;
    }

    .shop-directions-panel a {
        padding: 8px;
        border-radius: 10px;
    }

    .nearest-shop-card {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 9px;
    }

    .nearest-gps-layout {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .nearest-map-card {
        min-height: 280px;
        border-radius: 14px;
    }

    .nearest-map-card iframe {
        min-height: 280px;
    }

    .nearest-map-info {
        right: 8px;
        left: 8px;
        bottom: 8px;
        flex-direction: column;
        align-items: stretch;
        padding: 9px;
        border-radius: 12px;
    }

    .nearest-map-info a {
        width: 100%;
        padding: 9px;
        font-size: 0.74rem;
    }

    .nearest-map-info strong {
        font-size: 0.82rem;
    }

    .nearest-map-info span,
    .nearest-map-info small {
        font-size: 0.66rem;
    }

    .nearest-route-pin {
        padding: 5px 7px;
        font-size: 0.62rem;
    }

    .nearest-route-start {
        left: 8%;
        bottom: 22%;
    }

    .nearest-route-end {
        right: 7%;
        top: 12%;
    }

    .nearest-route-badge {
        top: 42%;
        padding: 6px 8px;
        font-size: 0.62rem;
    }

    .nearest-shops-list {
        max-height: 260px;
    }

    .nearest-shop-card img {
        width: 44px;
        height: 44px;
        border-radius: 11px;
    }

    .nearest-shop-distance {
        grid-column: 1 / -1;
        justify-self: start;
        font-size: 0.72rem;
        padding: 6px 9px;
    }

    .radial-section .watch-item {
        left: 0;
    }

    .bottom-nav {
        width: 100%;
        min-height: 66px;
        padding: 10px 12px;
        gap: 10px;
    }

    .nav-icons {
        min-width: 0;
        gap: clamp(12px, 4vw, 20px);
    }

    .nav-btn {
        font-size: 1.15rem;
    }

    .buy-btn {
        flex: 0 0 auto;
        max-width: 112px;
        padding: 9px 16px;
        border-radius: 18px;
        font-size: 0.82rem;
        line-height: 1.35;
        text-align: center;
    }
}

/* Premium bottom navigation hover effects */
.nav-btn {
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.35) !important;
    cursor: pointer;
    position: relative;
}

.nav-btn:hover {
    transform: translateY(-12px) scale(1.55) !important;
    filter: drop-shadow(0 5px 15px rgba(0, 229, 255, 0.85)) drop-shadow(0 0 25px rgba(0, 229, 255, 0.4)) !important;
    color: #00e5ff !important;
}

/* WhatsApp specific green glow on hover */
#whatsappQuickBtn:hover {
    filter: drop-shadow(0 5px 15px rgba(37, 211, 102, 0.95)) drop-shadow(0 0 25px rgba(37, 211, 102, 0.5)) !important;
    color: #25d366 !important;
}
/* Extracted from index.html */

        /* Premium Glassmorphic Product Modal */
        .product-gallery-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(15px);
            z-index: 9999;
            display: flex;
            margin-right: 160px !important;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .product-gallery-modal.active {
            opacity: 1;
            pointer-events: auto;
        }

        .product-modal-card {
            background: rgba(10, 10, 10, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            width: 90%;
            max-width: 950px;
            padding: 35px;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 40px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 229, 255, 0.15);
            position: relative;
            transform: translateY(30px);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            direction: rtl;
        }

        .product-gallery-modal.active .product-modal-card {
            transform: translateY(0);
        }

        .product-modal-close {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1.2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .product-modal-close:hover {
            background: #ff3b30;
            border-color: #ff3b30;
            box-shadow: 0 0 15px rgba(255, 59, 48, 0.5);
            transform: rotate(90deg);
        }

        /* Gallery Styles */
        .product-gallery-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .main-gallery-view {
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 1;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: #000;
            position: relative;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .main-gallery-view img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.3s ease;
        }

        .thumbnails-row {
            display: flex;
            gap: 12px;
            justify-content: center;
            overflow-x: auto;
            padding-bottom: 5px;
        }

        .thumbnail-item {
            width: 65px;
            height: 65px;
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid transparent;
            cursor: pointer;
            background: #000;
            transition: all 0.3s ease;
        }

        .thumbnail-item.active {
            border-color: var(--primary-color);
            box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
        }

        .thumbnail-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.6;
            transition: opacity 0.3s ease;
        }

        .thumbnail-item:hover img,
        .thumbnail-item.active img {
            opacity: 1;
        }

        /* Info Details Styles */
        .product-modal-info {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .product-modal-title {
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
        }

        .product-modal-price {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary-color);
            text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
            margin-bottom: 15px;
        }

        .product-packaging-prices {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 8px;
            margin: -5px 0 15px;
        }

        .product-packaging-price {
            border: 1px solid rgba(0, 229, 255, .28);
            border-radius: 14px;
            background: rgba(0, 229, 255, .07);
            padding: 9px 10px;
            color: rgba(255, 255, 255, .82);
            font-size: .82rem;
            font-weight: 800;
        }

        .product-packaging-price strong {
            display: block;
            color: var(--primary-color);
            font-size: .9rem;
            margin-top: 3px;
        }

        .product-modal-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .product-features-list {
            list-style: none;
            margin-bottom: 25px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .product-features-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            font-size: 0.95rem;
        }

        .product-features-list li i {
            color: var(--primary-color);
            font-size: 1.1rem;
            text-shadow: 0 0 5px rgba(0, 229, 255, 0.5);
        }

        .product-modal-actions {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .qty-selector {
            display: flex;
            align-items: center;
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            width: max-content;
            overflow: hidden;
        }

        .qty-btn {
            width: 45px;
            height: 45px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.2rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .qty-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .qty-val {
            width: 40px;
            text-align: center;
            font-size: 1.1rem;
            font-weight: 700;
        }

        .modal-action-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .modal-btn-cart {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border: none;
            border-radius: 15px;
            color: #fff;
            font-size: 1.1rem;
            font-weight: 700;
            padding: 14px 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
        }

        .modal-btn-cart:hover {
            box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
            transform: translateY(-2px);
        }

        .modal-btn-whatsapp {
            background: #25d366;
            border: none;
            border-radius: 15px;
            color: #fff;
            font-size: 1.1rem;
            font-weight: 700;
            padding: 14px 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
        }

        .modal-btn-whatsapp:hover {
            box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .product-modal-card {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 20px;
                max-height: 90vh;
                overflow-y: auto;
            }
        }

        /* iOS iMessage Light-Mode Chatbot Widget Style */
        .chatbot-widget {
            position: fixed;
            bottom: 100px;
            left: 30px;
            width: 380px;
            max-width: 90%;
            height: 600px;
            background: rgba(242, 242, 247, 0.92) !important;
            backdrop-filter: blur(30px) !important;
            border: 0.5px solid rgba(0, 0, 0, 0.1) !important;
            border-radius: 20px !important;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
            z-index: 2500;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            
            /* Apple-style Fluid Fluid Origin springing directly from the chat button */
            transform-origin: 20% 100%;
            transform: scale(0) rotate(-12deg) translateY(60px);
            filter: blur(15px);
            opacity: 0;
            pointer-events: none;
            transition: transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1), 
                        opacity 0.4s ease, 
                        filter 0.45s ease !important;
            direction: rtl;
        }

        .chatbot-widget.active {
            transform: scale(1) rotate(0deg) translateY(0);
            filter: blur(0px);
            opacity: 1;
            pointer-events: auto;
        }

        /* iOS iMessage Header */
        .chatbot-header {
            padding: 10px 16px !important;
            background: rgba(249, 249, 249, 0.94) !important;
            border-bottom: 0.5px solid rgba(0, 0, 0, 0.12) !important;
            display: flex !important;
            align-items: center !important;
            justify-content: space-between !important;
            position: relative;
        }

        .chatbot-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            gap: 2px;
        }

        .chatbot-avatar {
            width: 48px !important;
            height: 48px !important;
            background: rgba(0, 0, 0, 0.05) !important;
            border: none !important;
            border-radius: 50% !important;
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
            font-size: 1.4rem !important;
            color: #000 !important;
            position: relative;
            box-shadow: none !important;
        }

        @keyframes onlineIndicatorPulse {
            0% {
                box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.6);
            }
            70% {
                box-shadow: 0 0 0 8px rgba(52, 199, 89, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(52, 199, 89, 0);
            }
        }

        .online-indicator {
            position: absolute;
            bottom: 2px;
            left: 2px;
            width: 10px;
            height: 10px;
            background: #34c759 !important;
            border-radius: 50%;
            border: 2px solid rgba(249, 249, 249, 1) !important;
            box-shadow: none !important;
            animation: onlineIndicatorPulse 2s infinite;
        }

        .chatbot-info h4 {
            color: #000000 !important;
            font-size: 0.85rem !important;
            font-weight: 600 !important;
            margin: 0 !important;
            letter-spacing: -0.3px;
            display: flex;
            align-items: center;
            gap: 3px;
        }

        .chatbot-info h4::after {
            content: "\f054";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 0.6rem;
            color: #8e8e93;
            margin-right: 2px;
        }

        .chatbot-info p {
            color: #8e8e93 !important;
            font-size: 0.65rem !important;
            margin: 0 !important;
        }

        /* iOS Blue Back Button */
        .chatbot-close {
            background: none !important;
            border: none !important;
            color: #007aff !important;
            font-size: 1rem !important;
            font-weight: 400 !important;
            cursor: pointer;
            transition: opacity 0.2s;
            display: flex;
            align-items: center;
            gap: 2px;
            padding: 5px;
        }

        .chatbot-close i {
            font-size: 1.1rem !important;
        }

        .chatbot-close:hover {
            opacity: 0.6;
        }

        /* iOS Messages Container */
        .chatbot-messages {
            flex: 1;
            padding: 16px 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 14px;
            background: #ffffff !important;
        }

        @keyframes iosMessageSlide {
            0% {
                opacity: 0;
                transform: translateY(20px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Message Bubbles */
        .chat-message {
            max-width: 75%;
            padding: 10px 16px !important;
            font-size: 0.95rem !important;
            line-height: 1.4;
            position: relative;
            margin-bottom: 2px;
            animation: iosMessageSlide 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
        }

        /* Incoming Bot Bubble (Gray) */
        .chat-message.bot {
            align-self: flex-start;
            background: #e9e9eb !important;
            color: #000000 !important;
            border-radius: 18px 18px 18px 4px !important;
            box-shadow: none !important;
            text-align: right;
        }

        .chat-message.bot::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: -6px;
            width: 12px;
            height: 15px;
            background: #e9e9eb !important;
            clip-path: path("M 12 15 C 8 15, 0 12, 0 0 C 0 8, 4 15, 12 15 Z");
        }

        /* Outgoing User Bubble (Green) */
        .chat-message.user {
            align-self: flex-end;
            background: #34c759 !important;
            color: #ffffff !important;
            border-radius: 18px 18px 4px 18px !important;
            box-shadow: none !important;
            text-align: right;
        }

        .chat-message.user::after {
            content: "";
            position: absolute;
            bottom: 0;
            right: -6px;
            width: 12px;
            height: 15px;
            background: #34c759 !important;
            clip-path: path("M 0 15 C 4 15, 12 12, 12 0 C 12 8, 8 15, 0 15 Z");
        }

        /* Suggestion Pill Capsule Buttons */
        .chat-options-container {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 10px;
            width: 100%;
        }

        @keyframes optionFlyIn {
            0% {
                opacity: 0;
                transform: translateY(20px) scale(0.85);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .chat-option-btn {
            opacity: 0;
            background: #f2f2f7 !important;
            border: 1px solid rgba(0, 0, 0, 0.08) !important;
            color: #007aff !important;
            font-weight: 600;
            padding: 10px 16px !important;
            border-radius: 25px !important;
            font-size: 0.85rem !important;
            font-family: inherit;
            cursor: pointer;
            text-align: center !important;
            transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .chatbot-widget.active .chat-option-btn {
            animation: optionFlyIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        }

        .chatbot-widget.active .chat-option-btn:nth-child(1) { animation-delay: 0.5s; }
        .chatbot-widget.active .chat-option-btn:nth-child(2) { animation-delay: 0.62s; }
        .chatbot-widget.active .chat-option-btn:nth-child(3) { animation-delay: 0.74s; }
        .chatbot-widget.active .chat-option-btn:nth-child(4) { animation-delay: 0.86s; }
        .chatbot-widget.active .chat-option-btn:nth-child(5) { animation-delay: 0.98s; }

        .chat-option-btn:hover {
            background: #007aff !important;
            color: #ffffff !important;
            border-color: #007aff !important;
            transform: translateY(-2px) scale(1.03) !important;
            box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3) !important;
        }

        /* iMessage Unified Pill Input Area */
        .chatbot-input-area {
            padding: 10px 14px !important;
            border-top: 0.5px solid rgba(0, 0, 0, 0.1) !important;
            background: rgba(249, 249, 249, 0.94) !important;
            backdrop-filter: blur(20px);
            display: flex !important;
            align-items: center !important;
            gap: 12px !important;
        }

        .imessage-plus-btn {
            background: rgba(0, 0, 0, 0.05) !important;
            border: none !important;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            color: #000 !important;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s;
        }

        .imessage-plus-btn:hover {
            background: rgba(0, 0, 0, 0.1) !important;
        }

        .imessage-input-wrapper {
            flex: 1;
            position: relative;
            background: #ffffff !important;
            border: 0.5px solid rgba(0, 0, 0, 0.15) !important;
            border-radius: 22px !important;
            padding: 4px 14px 4px 44px !important;
            display: flex;
            align-items: center;
            box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
        }

        .imessage-input-wrapper:focus-within {
            border-color: #34c759 !important;
            box-shadow: 0 0 12px rgba(52, 199, 89, 0.3), inset 0 1px 2px rgba(0,0,0,0.05) !important;
            transform: scale(1.02);
        }

        .imessage-input-wrapper input {
            width: 100%;
            background: transparent !important;
            border: none !important;
            color: #000 !important;
            font-size: 0.95rem !important;
            outline: none !important;
            padding: 6px 0 !important;
            font-family: inherit;
        }

        .imessage-input-wrapper input::placeholder {
            color: #c7c7cc !important;
        }

        .chatbot-send-btn {
            position: absolute;
            left: 5px;
            top: 50%;
            transform: translateY(-50%) !important;
            width: 28px !important;
            height: 28px !important;
            border-radius: 50% !important;
            border: none !important;
            background: #34c759 !important;
            color: #fff !important;
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
            font-size: 0.9rem !important;
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.5) !important;
            box-shadow: none !important;
        }

        .chatbot-send-btn:hover {
            transform: translateY(-50%) scale(1.15) !important;
            box-shadow: 0 0 12px rgba(52, 199, 89, 0.5) !important;
        }

        @media (max-width: 480px) {
            .chatbot-widget {
                bottom: 85px;
                left: 5%;
                width: 90%;
                height: 420px;
            }
        }

        /* Premium Circular Gallery Slider Styles */
        .gallery-slider-item {
            width: 480px !important;
            height: 480px !important;
            border: 4px solid var(--primary-color) !important;
            box-shadow: 0 0 60px rgba(0, 229, 255, 0.6), 0 20px 50px rgba(0, 0, 0, 0.95) !important;
            animation: bubblePop 0.5s ease forwards !important;
            background: rgba(10, 10, 10, 0.95) !important;
        }

        .gallery-nav-btn {
            font-size: 1.25rem;
            width: 50px !important;
            height: 50px !important;
        }

        .gallery-nav-btn:hover {
            background: var(--primary-color) !important;
            color: #000 !important;
            box-shadow: 0 0 25px var(--primary-color) !important;
            transform: translateY(-50%) scale(1.15) !important;
        }

        .indicator-dot.active {
            background: var(--primary-color) !important;
            box-shadow: 0 0 10px var(--primary-color) !important;
            transform: scale(1.3) !important;
        }

        /* Responsive styling for mobile viewports */
        @media (max-width: 480px) {
            .gallery-slider-item {
                width: 250px !important;
                height: 250px !important;
            }

            .gallery-nav-btn {
                width: 40px !important;
                height: 40px !important;
                font-size: 1rem;
            }

            .gallery-nav-btn.prev {
                right: -48px !important;
            }

            .gallery-nav-btn.next {
                left: -48px !important;
            }
        }

        /* Hover effect for the gallery thumbnails / bubbles */
        .gallery-thumb-item {
            cursor: pointer;
            touch-action: pan-y;
            box-shadow: 0 0 15px rgba(0, 229, 255, 0.3), 0 5px 15px rgba(0, 0, 0, 0.5);
            transition: opacity 0.85s cubic-bezier(0.175, 0.885, 0.32, 1.35), box-shadow 0.3s ease, border 0.3s ease !important;
        }

        .gallery-thumb-item[data-is-large="true"] {
            touch-action: none;
        }

        .gallery-thumb-item[data-is-large="true"]:hover img {
            transform: none;
        }

        .gallery-swipe-hint {
            position: absolute;
            top: 50%;
            right: 26px;
            z-index: 4;
            display: flex;
            gap: 4px;
            align-items: center;
            color: var(--primary-color);
            font-size: 1.45rem;
            filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.9));
            pointer-events: none;
            transform: translateY(-50%);
            animation: gallerySwipeHint 1.35s ease-in-out infinite;
        }

        .gallery-swipe-hint i {
            opacity: 0.35;
            animation: gallerySwipeChevron 1.35s ease-in-out infinite;
        }

        .gallery-swipe-hint i:nth-child(2) {
            animation-delay: 0.14s;
        }

        .gallery-swipe-hint i:nth-child(3) {
            animation-delay: 0.28s;
        }

        @keyframes gallerySwipeHint {
            0%, 100% {
                transform: translate(-6px, -50%);
            }

            50% {
                transform: translate(16px, -50%);
            }
        }

        @keyframes gallerySwipeChevron {
            0%, 100% {
                opacity: 0.2;
            }

            50% {
                opacity: 1;
            }
        }

        .gallery-thumb-item img {
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .gallery-thumb-item:hover img {
            transform: scale(1.15);
        }

        .gallery-thumb-item[data-is-large="true"]:hover img {
            transform: none;
        }

        .gallery-thumb-item:hover {
            box-shadow: 0 0 35px rgba(0, 229, 255, 0.9), 0 10px 25px rgba(0, 0, 0, 0.9) !important;
            border: 3px solid var(--primary-color) !important;
            z-index: 105 !important;
            filter: brightness(1.1);
        }

        /* Hover effect for scattered product bubbles */
        .product-scatter-item, .product-variation-item, .department-scatter-item {
            cursor: pointer;
            transition: opacity 0.85s cubic-bezier(0.175, 0.885, 0.32, 1.35) !important;
        }

        .product-add-cart-btn {
            position: absolute;
            top: -10px;
            left: -8px;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 2px solid rgba(0, 229, 255, 0.72);
            background: rgba(0, 0, 0, 0.86);
            color: var(--primary-color);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 8;
            font-size: 0.95rem;
            box-shadow: 0 0 16px rgba(0, 229, 255, 0.35);
            transition: 0.24s ease;
        }

        .product-add-cart-btn:hover {
            background: var(--primary-color);
            color: #001014;
            transform: scale(1.12);
            box-shadow: 0 0 24px rgba(0, 229, 255, 0.7);
        }

        .product-scatter-item img, .product-variation-item img, .department-scatter-item img {
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border 0.4s ease !important;
            border-radius: 50%;
        }

        .product-scatter-item .dept-title, .product-variation-item .dept-title, .department-scatter-item .dept-title {
            transition: all 0.3s ease !important;
        }

        .product-scatter-item:hover img, .product-variation-item:hover img, .department-scatter-item:hover img {
            transform: scale(1.15);
            box-shadow: 0 0 35px rgba(0, 229, 255, 0.9), 0 10px 25px rgba(0, 0, 0, 0.9) !important;
            border: 3px solid var(--primary-color) !important;
        }

        .product-scatter-item:hover, .product-variation-item:hover, .department-scatter-item:hover {
            z-index: 105 !important;
            filter: brightness(1.1);
        }

        .product-scatter-item:hover .dept-title, .product-variation-item:hover .dept-title, .department-scatter-item:hover .dept-title {
            color: var(--primary-color) !important;
            text-shadow: 0 0 15px rgba(0, 229, 255, 0.6) !important;
            transform: translateX(-50%) translateY(5px) scale(1.06) !important;
        }
    
