/* --- GLOBAL RESET & BASE STYLES --- */




a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

/* --- TOP RED BANNER (Dynamic Text) --- */
.top-red-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #d00;
    color: #fff;
    font-size: 0.7rem;
    padding: 5px 0;
    text-align: center;
    text-transform: uppercase;
    z-index: 20;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-text-content {
    flex-grow: 1;
    text-align: center;
}

.banner-arrow {
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    padding: 0 10px;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.banner-arrow:hover {
    opacity: 1;
}
.banner-arrow.left {
    order: -1;
}
.banner-arrow.right {
    order: 1;
}


/* --- HEADER & TOP RIGHT CONTROLS --- */
.top-header {
    position: fixed;
    top: 25px; /* Below the red banner */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 100;
    color: #fff;
    font-size: 0.8rem;
}

.header-right-controls a,
.header-right-controls span {
    margin-left: 10px;
    text-transform: uppercase;
    cursor: pointer;
    color: #fff;
}

.header-right-controls .currency-dropdown-icon {
    display: inline-block;
    margin-left: -5px;
    font-size: 0.8rem;
}

/* Logo / Left Menu Toggle Button */
.logo-placeholder {
    padding-left: 20px;
    cursor: pointer;
    z-index: 101;
}

/* Red Hamburger Icon Design */
.red-line-design {
    width: 20px;
    height: 15px;
    position: relative;
    transition: transform 0.3s;
}
.red-line-design::before,
.red-line-design::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #d00;
    transition: all 0.3s;
}
.red-line-design::before {
    top: 0;
}
.red-line-design::after {
    bottom: 0;
}

/* X Overlay for Logo/Menu Toggle - Hidden by default */
.red-line-design .close-x {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 2px;
    background-color: transparent;
    transition: background-color 0.3s;
}
.red-line-design .close-x::before,
.red-line-design .close-x::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000; /* Black X */
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s, transform 0.3s;
}
.red-line-design .close-x::before {
    transform: rotate(45deg);
}
.red-line-design .close-x::after {
    transform: rotate(-45deg);
}

/* State when left menu is open (transforms hamburger to X) */
#leftMenuPanel.open ~ .top-header .red-line-design::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background-color: #fff;
}
#leftMenuPanel.open ~ .top-header .red-line-design::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
    background-color: #fff;
}
#leftMenuPanel.open ~ .top-header .red-line-design .close-x::before,
#leftMenuPanel.open ~ .top-header .red-line-design .close-x::after {
    opacity: 1; /* Show the black X overlay */
}

/* --- Each Video Section (Scrolling Background) --- */
section {
    position: relative;
    height: 100vh;
    width: 100%;
    scroll-snap-align: start; /* Enable scroll snapping */
    overflow: hidden;
}

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay (Applied to each scrolling section) */
.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

/* --- Fixed Center Menu Overlay (Main Menu) --- */
.fixed-center-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    pointer-events: none;
}

/* Re-enable pointer events for the menu content itself */
.fixed-center-menu * {
    pointer-events: auto;
}

.side-nav {
    margin-bottom: 30px;
}

.side-nav ul li {
    padding: 5px 0;
}

.side-nav ul li a {
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
    transition: color 0.2s;
}
.side-nav ul li a:hover {
    color: #d00;
}

.side-nav ul li::before {
    content: "\25A0"; /* Filled square */
    color: #d00;
    margin-right: 10px;
    font-size: 0.5rem;
    vertical-align: middle;
}

/* --- Menu Footer / Enlist Section --- */
.menu-footer {
    width: 80%;
    max-width: 300px;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #d00;
    margin: 0 10px;
    font-size: 0.6rem;
    letter-spacing: 1px;
}

.enlist-form {
    text-align: center;
}

/* Label styling for both email and mobile */
.email-label,
.mobile-label {
    display: block;
    font-size: 0.6rem;
    color: #fff;
    margin-bottom: 3px;
    margin-top: 8px;
}

/* Shared input styles for email and mobile fields */
.enlist-form input[type="email"],
.enlist-form input[type="tel"] {
    width: 100%;
    max-width: 200px;
    background: none;
    border: none;
    border-bottom: 1px solid #d00;
    color: #fff;
    padding: 3px;
    text-align: center;
    font-size: 0.8rem;
    outline: none;
}

.enlist-button {
    background: none;
    color: #d00;
    border: 1px solid #d00;
    padding: 5px 20px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 0.7rem;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
}

.enlist-button:hover {
    background: #d00;
    color: #000;
}

.contact-email {
    color: #d00;
    font-size: 0.6rem;
    margin-top: 10px;
    display: inline-block;
}

/* --- Bottom Right Icon (User Icon) --- */
.bottom-right-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #000;
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.bottom-right-icon i {
    color: white;
    font-size: 22px;
}

.bottom-right-icon .user-icon {
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    color: #fff;
    line-height: 1;
}

/* --- LEFT MENU PANEL STYLES --- */
#leftMenuPanel {
    position: fixed;
    top: 0;
    left: -300px; /* Hidden state */
    width: 300px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    z-index: 999;
    transition: left 0.4s ease-in-out;
    padding-top: 50px;
    overflow-y: auto;
}

#leftMenuPanel.open {
    left: 0;
}

.left-panel-content {
    padding: 30px 20px 20px;
}

.left-menu-nav ul li a {
    color: #d00;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px 0;
    display: block;
    letter-spacing: 1px;
    transition: color 0.2s;
}
.left-menu-nav ul li a:hover {
    color: #fff;
}

.left-menu-close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    background: none;
    border: none;
    color: #d00; /* Red color for visibility */
    font-size: 2.5rem; /* Larger for better tap target */
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    z-index: 1001;
    transition: color 0.2s;
}

.left-menu-close-btn:hover {
    color: #fff; /* White on hover */
}

/* --- RIGHT MENU PANEL (CART) STYLES --- */
.right-menu-panel {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100%;
    background-color: #000;
    color: #fff;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    transition: right 0.4s ease-in-out;
    padding: 20px;
    overflow-y: auto;
}

.right-menu-panel.open {
    right: 0;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    z-index: 1001;
}

.panel-content {
    margin-top: 50px;
}

/* Cart content styles */
.cart-status { font-size: 1.1rem; margin-bottom: 10px; text-align: center; }
.continue-shopping-btn { display: block; text-align: center; color: #d00; margin-bottom: 20px; }
.login-prompt { font-size: 0.9rem; padding: 10px 0; border-top: 1px solid #333; border-bottom: 1px solid #333; text-align: center; }
.cart-notice { background-color: #d00; color: #000; padding: 10px; margin: 20px 0; text-align: center; font-size: 0.8rem; font-weight: bold; }
.checkout-section { padding: 15px 0; border-top: 1px solid #333; text-align: center; }
.total-price { font-size: 1.5rem; font-weight: bold; color: #d00; }
.checkout-btn { background-color: #d00; color: #000; border: none; width: 100%; padding: 15px; margin-top: 15px; font-size: 1rem; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.checkout-btn:hover { background-color: #f00; }
.region-selector { margin-top: 30px; padding-top: 15px; border-top: 1px solid #333; }
.region-selector label { display: block; margin-bottom: 10px; font-size: 0.9rem; }
.region-selector select { width: 100%; padding: 10px; background-color: #111; color: #fff; border: 1px solid #333; font-size: 1rem; outline: none; }

/* Country Dropdown Panel Styling */
.country-dropdown-list {
    position: fixed;
    top: 50px;
    right: 20px;
    width: 200px;
    max-height: 300px;
    background-color: #000;
    border: 1px solid #d00;
    z-index: 1001;
    padding: 10px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.country-dropdown-list.open {
    display: block;
}
.country-dropdown-list input[type="search"] {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    outline: none;
}
.country-dropdown-list a {
    display: block;
    padding: 5px 0;
    font-size: 0.8rem;
    color: #0000;
    text-transform: capitalize;
}
.country-dropdown-list a:hover {
    color: #d00;
}
