/* FONTS */
@font-face {
    font-family: 'DrukWide';
    src: url('../../fonts/DrukWide-MediumItalic-Trial.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

/* CSS VARIABLES */
:root {
    --color-primary: #9ED9B5;
    --font-headers: 'DrukWide', 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-primary-weight: normal;
    --font-weight-bold: 700;
}

/* RESET & BASE */
* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: white;
    background-color: #000;
    width: 100%;
    overflow-x: hidden;
}

/* DISABLE TEXT SELECTION */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection for inputs */
input, textarea, .product-description, .email-input {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* INDEX PAGE - FIXED */
.index-page {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* SHOP PAGE - SCROLLABLE */
.shop-page {
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

body.loaded {
    background-image: url('../../assets/images/patterned1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* LOADING SCREEN - FIXED CENTERING */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10003;
    transition: opacity 0.5s ease-out;
    visibility: visible;
}

.loading-logo {
    width: 80px;
    height: 80px;
    filter: brightness(0) saturate(100%) invert(84%) sepia(14%) saturate(437%) hue-rotate(82deg) brightness(95%) contrast(89%);
    animation: pulse 2s infinite;
    margin: 0;
    display: block;
}

.loading-text {
    font-family: var(--font-headers);
    font-size: 14px;
    color: var(--color-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 20px 0 0 0;
    display: block;
}

.fade-out {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

/* BACKGROUND VIDEO */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    object-fit: cover;
    object-position: center;
    opacity: 1;
}

.shop-page .bg-video {
    filter: brightness(0.3);
}

/* ANNOUNCEMENT BAR */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--color-primary), #7BC097, var(--color-primary));
    color: #000;
    padding: 12px 30px;
    text-align: center;
    font-family: var(--font-headers);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10002;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    white-space: nowrap;
}

.announcement-content {
    display: inline-block;
    animation: scroll-left 35s linear infinite;
}

@keyframes scroll-left {
    0% { transform: translate3d(100%, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

.announcement-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 44px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-header .announcement-phrase {
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 14px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.announcement-header .announcement-phrase.visible {
    opacity: 1;
}

/* HEADERS */
.main-header {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background: transparent;
    transition: transform 0.3s ease;
}

.main-header.hidden {
    transform: translateY(-100%);
}

.shop-header {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

.shop-header.hidden {
    transform: translateY(-100%);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 40px;
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 40px;
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-logo {
    width: 40px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(84%) sepia(14%) saturate(437%) hue-rotate(82deg) brightness(95%) contrast(89%);
    transition: transform 0.3s ease;
}

.sticky-logo:hover {
    transform: scale(1.1);
}

.center-text-logo {
    height: 225px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(100%);
    transition: all 0.3s ease;
    cursor: pointer;
}

.center-text-logo:hover {
    filter: brightness(0) saturate(100%) invert(84%) sepia(14%) saturate(437%) hue-rotate(82deg) brightness(95%) contrast(89%);
    transform: scale(1.05);
}

.header-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 14px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

/* SPIDER WEB CART ICON */
.header-cart-icon {
    color: var(--color-primary);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.header-cart-icon:hover {
    transform: scale(1.05);
}

.web-container {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spider-web {
    position: absolute;
    width: 60px;
    height: 60px;
    background-image: url('../../assets/images/web.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(158, 217, 181, 0.6)) 
            drop-shadow(0 0 15px rgba(158, 217, 181, 0.4))
            brightness(1.1);
    animation: webGlow 3s ease-in-out infinite;
}

@keyframes webGlow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(158, 217, 181, 0.6)) 
                drop-shadow(0 0 15px rgba(158, 217, 181, 0.4))
                brightness(1.1);
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(158, 217, 181, 0.8)) 
                drop-shadow(0 0 20px rgba(158, 217, 181, 0.6))
                brightness(1.2);
    }
}

.spider {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 20px;
    height: 20px;
    background-image: url('../../assets/images/spi.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 15;
    animation: spiderMove 4s infinite ease-in-out;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 4px rgba(158, 217, 181, 0.5));
}

@keyframes spiderMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-5px, 4px) rotate(-10deg); }
    50% { transform: translate(4px, -3px) rotate(5deg); }
    75% { transform: translate(-3px, 5px) rotate(-5deg); }
}

@keyframes webShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px) rotate(-1deg); }
    75% { transform: translateX(2px) rotate(1deg); }
}

.web-flies {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 12;
    pointer-events: none;
}

.trapped-fly {
    position: absolute;
    width: 12px;
    height: 12px;
    background-image: url('../../assets/images/fly.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transform: scale(0) rotate(0deg);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.trapped-fly.show {
    opacity: 1;
    transform: scale(1) rotate(360deg);
    animation: flyStruggle 1.5s infinite ease-in-out;
}

@keyframes flyStruggle {
    0%, 100% { transform: scale(1) rotate(0deg) translateX(0); }
    25% { transform: scale(1.1) rotate(-5deg) translateX(2px); }
    50% { transform: scale(0.9) rotate(3deg) translateY(-2px); }
    75% { transform: scale(1.05) rotate(-2deg) translateX(-2px); }
}

.web-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--color-primary);
    color: #000;
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headers);
    animation: webBounce 0.5s ease;
    z-index: 20;
    border: 2px solid #000;
    box-shadow: 0 0 5px rgba(158, 217, 181, 0.5);
}

@keyframes webBounce {
    0% { transform: scale(0) rotate(0deg); }
    50% { transform: scale(1.4) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

/* TIMER CONTAINER */
.timer-container {
    position: fixed;
    top: 160px;
    right: 30px;
    background: linear-gradient(135deg, rgba(158, 217, 181, 0.15), rgba(0, 0, 0, 0.9));
    border-radius: 12px;
    border: 2px solid var(--color-primary);
    backdrop-filter: blur(15px);
    padding: 15px;
    text-align: center;
    box-shadow: 0 0 25px rgba(158, 217, 181, 0.3);
    width: 220px;
    max-width: 220px;
    z-index: 9999;
    animation: timerPulse 3s infinite;
    transition: all 0.3s ease;
}

.shop-page .timer-container {
    top: 180px;
}

@keyframes timerPulse {
    0%, 100% { box-shadow: 0 0 25px rgba(158, 217, 181, 0.3); }
    50% { box-shadow: 0 0 35px rgba(158, 217, 181, 0.6); }
}

.timer-toggle-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-primary), #7BC097);
    border: 2px solid #000;
    border-radius: 50%;
    color: #000;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
    box-shadow: 0 4px 15px rgba(158, 217, 181, 0.4);
}

.timer-toggle-btn:hover {
    transform: scale(1.1) rotate(90deg);
    background: linear-gradient(135deg, #7BC097, var(--color-primary));
    box-shadow: 0 6px 20px rgba(158, 217, 181, 0.6);
}

.timer-container.collapsed {
    width: 50px;
    height: 50px;
    padding: 0;
    background: none;
    border: none;
    backdrop-filter: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.timer-collapsed-icon {
    font-size: 32px;
    color: var(--color-primary);
    animation: pulse 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timer-status {
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 0.8rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 6px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 35px;
}

.timer-number {
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 1.2rem;
    color: var(--color-primary);
    min-width: 22px;
    text-align: center;
}

.timer-label {
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 0.6rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 4px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 28px;
}

.countdown-number {
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 0.9rem;
    color: #ccc;
    min-width: 18px;
    text-align: center;
}

.countdown-label {
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 0.5rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.pairs-left {
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 0.7rem;
    color: var(--color-primary);
    letter-spacing: 0.5px;
}

/* CONTENT CONTAINERS */
.content-container {
    position: relative;
    width: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
}

.index-page .content-container {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.index-page .content-container > * {
    pointer-events: all;
}

.shop-page .content-container {
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.75);
}

.content-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 20px 20px;
}

.landing-content {
    max-width: 600px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-container {
    width: 400px;
    height: 380px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    filter: brightness(0) saturate(100%) invert(84%) sepia(14%) saturate(437%) hue-rotate(82deg) brightness(95%) contrast(89%);
}

/* BUTTONS */
.btn {
    border: none;
    border-radius: 15px;
    font-family: var(--font-headers);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary {
    background: linear-gradient(135deg, #9ED9B5, #B8E5C8, #7BC097, #A8DFB8, #8BD4A5);
    color: #000;
    font-size: 18px;
    padding: 20px 40px;
    box-shadow: 0 8px 25px rgba(158, 217, 181, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, #B8E5C8, #D0F0D8, #8BD4A5, #C0E8C8, #A8DFB8);
    box-shadow: 0 12px 30px rgba(158, 217, 181, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, #2a2a2a, #404040, #1a1a1a, #353535, #252525);
    border: 2px solid #888;
    color: #e0e0e0;
    font-size: 14px;
    padding: 12px 20px;
    box-shadow: 0 5px 20px rgba(136, 136, 136, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-2px) scale(1.01);
    border-color: #aaa;
    background: linear-gradient(135deg, #404040, #555555, #2a2a2a, #454545, #353535);
    box-shadow: 0 8px 25px rgba(136, 136, 136, 0.3);
}

.buy-button {
    background: linear-gradient(135deg, #9ED9B5, #B8E5C8, #7BC097, #A8DFB8, #8BD4A5);
    color: #000;
    font-family: var(--font-headers);
    font-weight: var(--font-weight-bold);
    font-size: 16px;
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(158, 217, 181, 0.4);
}

.buy-button:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, #B8E5C8, #D0F0D8, #8BD4A5, #C0E8C8, #A8DFB8);
    box-shadow: 0 12px 30px rgba(158, 217, 181, 0.5);
}

/* PRODUCT SECTIONS */
.product-container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    padding: 140px 40px 40px;
    background: rgba(0, 0, 0, 0.75);
}

.product-main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-image-section,
.product-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 20px;
    height: 600px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    user-select: none;
    -webkit-user-drag: none;
    cursor: pointer;
}

.image-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    opacity: 0;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.product-image-container:hover .image-nav-arrow {
    opacity: 1;
}

.image-nav-arrow:hover {
    color: var(--color-primary);
    transform: translateY(-50%) scale(1.2);
}

.image-nav-arrow.left { left: 20px; }
.image-nav-arrow.right { right: 20px; }

.thumbnail-container {
    display: flex;
    gap: 0.8rem;
    margin: 20px 0;
    justify-content: center;
}

.thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.thumbnail.active {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(158, 217, 181, 0.3);
}

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

/* HIDE UGLY COLOR SELECTOR */
.color-selector-moved {
    display: none !important;
}

.color-option-container {
    display: none !important;
}

/* COLOR SELECTOR - ONLY IN SIZE SECTION */
.size-section-colors {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.size-section-color-title {
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 0.9rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.size-section-color-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.size-section-color-option {
    position: relative;
    width: 80px;
    height: 50px;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.size-section-color-option.red {
    background: #dc3545;
}

.size-section-color-option.black {
    background: #000000;
    border: 3px solid #333;
}

.size-section-color-option.active {
    border-color: var(--color-primary) !important;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(158, 217, 181, 0.5);
}

.size-section-color-label {
    font-family: var(--font-headers);
    font-size: 10px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: var(--font-weight-bold);
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
}

.size-section-color-option.black .size-section-color-label {
    color: var(--color-primary);
}

.product-title {
    font-family: var(--font-headers);
    font-weight: 800;
    font-size: 2.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.product-subtitle {
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 1.2rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.product-description {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-price {
    font-family: var(--font-headers);
    font-weight: var(--font-weight-bold);
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* PRESALE PRICING STYLES */
@keyframes presalePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 10px rgba(158, 217, 181, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(158, 217, 181, 0.5);
    }
}

.presale-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), #7BC097);
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: var(--font-headers);
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 10px;
    animation: presalePulse 2s infinite;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.6rem;
    margin-right: 15px;
}

.presale-price {
    color: var(--color-primary);
    font-size: 2.2rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(158, 217, 181, 0.3);
}

/* SIZE SELECTOR */
.size-selector {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.size-selector-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.size-title {
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 1.1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.size-guide-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-family: var(--font-body);
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.size-guide-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(158, 217, 181, 0.1);
}

.size-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.size-option {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 14px;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.size-option:hover {
    border-color: var(--color-primary);
    background: rgba(158, 217, 181, 0.1);
    transform: translateY(-2px);
}

.size-option.selected {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(158, 217, 181, 0.4);
}

/* BUNDLE PROMO */
.bundle-promo {
    text-align: center;
    background: linear-gradient(135deg, rgba(158, 217, 181, 0.1), rgba(0, 0, 0, 0.8));
    border-radius: 15px;
    border: 2px solid var(--color-primary);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(158, 217, 181, 0.3);
    padding: 25px 30px;
    margin-top: 30px;
}

.bundle-promo-title {
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 1.4rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.bundle-promo-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.4;
}

.bundle-offers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.bundle-offer {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.bundle-offer:hover {
    transform: translateY(-2px);
    border-color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(158, 217, 181, 0.2);
}

.bundle-offer-title {
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 1rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.bundle-offer-price {
    font-family: var(--font-headers);
    font-weight: var(--font-weight-bold);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin: 10px 0 5px 0;
    text-shadow: 0 0 10px rgba(158, 217, 181, 0.3);
}

.bundle-offer-savings {
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 8px;
    background: rgba(158, 217, 181, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

.bundle-offer-description {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.3;
}

.bundle-disclaimer {
    background: linear-gradient(135deg, rgba(158, 217, 181, 0.2), rgba(158, 217, 181, 0.1));
    border: 2px solid var(--color-primary);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0 20px 0;
    text-align: center;
    animation: disclaimerGlow 3s ease-in-out infinite;
}

@keyframes disclaimerGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(158, 217, 181, 0.3);
        border-color: var(--color-primary);
    }
    50% {
        box-shadow: 0 0 25px rgba(158, 217, 181, 0.5);
        border-color: #7BC097;
    }
}

.bundle-disclaimer i {
    font-size: 24px;
    color: var(--color-primary);
    display: block;
    margin-bottom: 10px;
}

.bundle-disclaimer span {
    font-family: var(--font-headers);
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.bundle-disclaimer small {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #fff;
    display: block;
    opacity: 0.9;
}

/* PRODUCT FEATURES */
.product-features {
    text-align: center;
    margin-top: 30px;
}

.features-title {
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

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

.feature-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.feature-title {
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 0.9rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.feature-description {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #ccc;
    line-height: 1.4;
}

/* LIFESTYLE CAROUSEL */
.lifestyle-section {
    padding: 80px 40px;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
}

.lifestyle-title {
    font-family: var(--font-headers);
    font-weight: var(--font-weight-bold);
    font-size: 2.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.lifestyle-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 50px;
}

.lifestyle-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.lifestyle-carousel-wrapper {
    overflow: hidden;
    border-radius: 15px;
}

.lifestyle-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.lifestyle-slide {
    min-width: 100%;
    position: relative;
}

.lifestyle-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: 2px solid var(--color-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--color-primary);
    color: black;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-prev {
    left: 20px;
}

.carousel-nav-next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

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

.carousel-dot.active {
    background: var(--color-primary);
    transform: scale(1.3);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* CART MODAL */
.cart-modal {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    z-index: 10006;
    transition: right 0.3s ease;
}

.cart-modal.active {
    right: 0;
}

.cart-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    display: none;
}

.cart-modal.active .cart-backdrop {
    display: block;
}

.cart-content {
    position: absolute;
    right: 0;
    top: 0;
    width: 400px;
    height: 100vh;
    background: #000;
    border-left: 2px solid var(--color-primary);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cart-header {
    padding: 30px;
    border-bottom: 1px solid rgba(158, 217, 181, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 1.5rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.cart-close:hover {
    color: var(--color-primary);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.cart-item:hover {
    background: rgba(158, 217, 181, 0.1);
    transform: translateX(-5px);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(158, 217, 181, 0.3);
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.cart-item-variant {
    font-size: 12px;
    color: var(--color-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.cart-item-price {
    font-family: var(--font-headers);
    font-size: 1.1rem;
    color: white;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.cart-qty-btn {
    background: rgba(158, 217, 181, 0.2);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: bold;
}

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

.cart-qty-display {
    font-family: var(--font-headers);
    color: white;
    min-width: 30px;
    text-align: center;
}

.cart-item-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #ff6b6b;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    color: #ff5252;
    transform: scale(1.2);
}

.cart-empty {
    text-align: center;
    padding: 60px 30px;
}

.cart-empty p {
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 15px 0;
}

.cart-empty p:first-child {
    font-size: 1.2rem;
    color: var(--color-primary);
}

.cart-footer {
    padding: 30px;
    border-top: 1px solid rgba(158, 217, 181, 0.3);
    background: rgba(0, 0, 0, 0.9);
}

.cart-discount-notice {
    background: linear-gradient(135deg, rgba(158, 217, 181, 0.2), rgba(158, 217, 181, 0.1));
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
    text-align: center;
    animation: subtleGlow 3s ease-in-out infinite;
}

@keyframes subtleGlow {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(158, 217, 181, 0.2);
        border-color: var(--color-primary);
    }
    50% { 
        box-shadow: 0 0 15px rgba(158, 217, 181, 0.3);
        border-color: #7BC097;
    }
}

.cart-discount-notice i {
    font-size: 18px;
    color: var(--color-primary);
    display: block;
    margin-bottom: 8px;
}

.cart-discount-notice span {
    font-family: var(--font-headers);
    font-weight: var(--font-weight-bold);
    font-size: 0.9rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 5px;
}

.cart-discount-notice small {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: #ccc;
    display: block;
    opacity: 0.9;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 1.2rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-total-price {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.cart-checkout-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--color-primary), #7BC097);
    border: none;
    border-radius: 12px;
    color: #000;
    font-family: var(--font-headers);
    font-weight: var(--font-weight-bold);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cart-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(158, 217, 181, 0.4);
    background: linear-gradient(135deg, #7BC097, var(--color-primary));
}

/* MODALS */
.access-denied-modal,
.size-warning-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10005;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.access-denied-modal.active,
.size-warning-modal.active {
    display: flex;
}

.access-denied-content,
.size-warning-content {
    background: #000;
    border: 3px solid #ffff00;
    border-radius: 0;
    max-width: 500px;
    width: 100%;
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 50px rgba(255, 255, 0, 0.3);
}

.access-denied-content::before,
.size-warning-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: repeating-linear-gradient(
        45deg,
        #ffff00 0px,
        #ffff00 20px,
        #000 20px,
        #000 40px
    );
    z-index: -1;
    border-radius: 0;
}

.access-denied-title,
.size-warning-title {
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 2rem;
    color: #ffff00;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

.access-denied-text,
.size-warning-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 30px;
}

.access-denied-close,
.size-warning-close {
    background: #ffff00;
    border: none;
    border-radius: 0;
    color: #000;
    font-family: var(--font-headers);
    font-weight: var(--font-weight-bold);
    font-size: 16px;
    padding: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.access-denied-close:hover,
.size-warning-close:hover {
    background: #000;
    color: #ffff00;
    border: 2px solid #ffff00;
}

/* SIZE GUIDE MODAL */
.size-guide-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.size-guide-content {
    background: white;
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.size-guide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px 30px;
    border-bottom: 1px solid #eee;
}

.size-guide-header h3 {
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 1.5rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 30px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #333;
}

.size-guide-body {
    padding: 30px;
}

.size-note {
    background: rgba(158, 217, 181, 0.1);
    border: 1px solid rgba(158, 217, 181, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.size-note p {
    margin: 0;
    font-family: var(--font-body);
    color: #333;
    line-height: 1.6;
}

.size-chart {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    font-family: var(--font-body);
}

.size-chart th {
    background: #f8f9fa;
    color: #333;
    font-weight: 600;
    padding: 15px 10px;
    border: 1px solid #dee2e6;
    text-align: center;
    font-size: 14px;
}

.size-chart td {
    padding: 12px 10px;
    border: 1px solid #dee2e6;
    text-align: center;
    font-size: 14px;
    color: #333;
}

.size-chart tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.size-chart tbody tr:hover {
    background: rgba(158, 217, 181, 0.1);
}

.measurement-tip {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.measurement-tip h4 {
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    color: #333;
    margin-bottom: 15px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.measurement-tip ol {
    margin: 0;
    padding-left: 20px;
    color: #333;
    line-height: 1.6;
}

.measurement-tip li {
    margin-bottom: 8px;
    font-family: var(--font-body);
}

/* IMAGE POPUP MODAL */
.image-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10010;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.image-popup-modal.active {
    display: flex;
}

.image-popup-content {
    position: relative;
    max-width: 35vw;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-popup-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(158, 217, 181, 0.3);
}

.image-popup-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(158, 217, 181, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: #000;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-popup-nav:hover {
    background: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
}

.image-popup-nav.prev {
    left: -60px;
}

.image-popup-nav.next {
    right: -60px;
}

.image-popup-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: rgba(255, 107, 107, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-popup-close:hover {
    background: #ff5252;
    transform: scale(1.1);
}

.image-popup-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 25px;
    font-family: var(--font-headers);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* SOCIAL */
.social-text {
    text-align: center;
    color: var(--color-primary);
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 16px;
    margin-top: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 1001;
}

.social-container {
    margin-top: 25px;
    position: relative;
    z-index: 1000;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    color: var(--color-primary);
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #7BC097;
}

/* FOOTER */
.main-footer {
    display: none;
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(158, 217, 181, 0.3);
    padding: 40px 0;
    margin-top: 40px;
}

.main-footer.show-in-product {
    display: block;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 40px;
}

.footer-section h4 {
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 1rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section li {
    font-family: var(--font-body);
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-primary);
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.footer-social a {
    color: var(--color-primary);
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #7BC097;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 12px;
    color: #888;
    margin: 0;
}

.footer-bottom a {
    color: var(--color-primary);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* MOBILE RESPONSIVE */
@media screen and (max-width: 768px) {
    /* Fix mobile page types */
    .index-page {
        position: fixed;
        width: 100vw;
        height: 100vh;
        overflow: hidden;
    }
    
    .shop-page {
        position: relative;
        min-height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Fix timer position */
    .timer-container {
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        top: auto !important;
        width: 200px !important;
        max-width: calc(100vw - 100px) !important;
    }
    
    .index-page .timer-container {
        bottom: 100px !important;
    }
    
    /* Announcement bar adjustments */
    .announcement-bar {
        padding: 8px 15px;
        font-size: 11px;
    }
    
    .announcement-header {
        height: 36px;
    }
    
    .announcement-header .announcement-phrase {
        font-size: 11px;
    }
    
    /* Headers */
    .main-header {
        top: 44px;
        padding: 10px 20px;
    }
    
    .shop-header {
        top: 36px;
        padding: 15px 20px;
    }
    
    .sticky-logo {
        width: 35px;
    }
    
    .center-text-logo {
        height: 120px !important;
    }
    
    /* Navigation */
    .header-nav {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    /* Product layout */
    .product-container {
        padding: 100px 20px 20px;
    }
    
    .product-main-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-image-container {
        height: 400px;
        padding: 15px;
    }
    
    .image-nav-arrow {
        opacity: 0.5;
        font-size: 20px;
        padding: 5px;
    }
    
    .thumbnail-container {
        gap: 10px;
    }
    
    .thumbnail {
        width: 50px;
        height: 50px;
    }
    
    /* Product info */
    .product-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .product-subtitle {
        text-align: center;
    }
    
    .product-description {
        padding: 0 15px;
        text-align: center;
    }
    
    .product-price {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .original-price {
        font-size: 1.4rem;
    }
    
    .presale-price {
        font-size: 2rem;
    }
    
    .presale-badge {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
    
    /* Size selector */
    .size-selector {
        padding: 20px;
    }
    
    .size-options {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    
    .size-option {
        padding: 10px 4px;
        font-size: 13px;
    }
    
    /* Bundle offers */
    .bundle-offers {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .bundle-promo {
        padding: 20px 15px;
    }
    
    .bundle-promo-title {
        font-size: 1.1rem;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Lifestyle carousel */
    .lifestyle-slide img {
        height: 400px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-nav-prev {
        left: 10px;
    }
    
    .carousel-nav-next {
        right: 10px;
    }
    
    .lifestyle-title {
        font-size: 2rem;
    }
    
    /* Cart modal */
    .cart-modal,
    .cart-content {
        width: 100vw;
    }
    
    .cart-modal {
        right: -100vw;
    }
    
    /* Image popup */
    .image-popup-content {
        max-width: 85vw;
        max-height: 60vh;
    }
    
    .image-popup-nav.prev {
        left: 10px;
    }
    
    .image-popup-nav.next {
        right: 10px;
    }
    
    .image-popup-close {
        top: 10px;
        right: 10px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 20px;
    }
    
    /* Landing content */
    .logo-container {
        width: 280px;
        height: 280px;
        margin-bottom: 20px;
    }
    
    .content-wrapper {
        padding: 80px 10px 20px 10px;
    }
    
    .landing-content {
        padding: 20px 10px;
    }
    
    /* Buttons */
    .btn-primary {
        font-size: 16px;
        padding: 16px 30px;
    }
    
    .buy-button {
        padding: 14px 25px;
        margin-top: 15px;
    }
    
    /* Social */
    .social-container {
        margin-top: 20px;
    }
    
    .social-text {
        font-size: 14px;
    }
    
    /* Spider web cart */
    .web-container {
        width: 50px;
        height: 50px;
    }
    
    .spider-web {
        width: 45px;
        height: 45px;
    }
    
    .spider {
        width: 18px;
        height: 18px;
        top: 10px;
        right: 10px;
    }
    
    /* Timer units */
    .timer-unit {
        min-width: 30px;
        padding: 6px 4px;
    }
    
    .timer-number {
        font-size: 1rem;
    }
    
    .timer-label {
        font-size: 0.5rem;
    }
    
    .countdown-unit {
        min-width: 22px;
        padding: 4px 3px;
    }
    
    .countdown-number {
        font-size: 0.8rem;
    }
    
    .countdown-label {
        font-size: 0.4rem;
    }
    
    /* Modals */
    .access-denied-content,
    .size-warning-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .access-denied-title,
    .size-warning-title {
        font-size: 1.5rem;
    }
    
    .access-denied-text,
    .size-warning-text {
        font-size: 1rem;
    }
    
    .cart-discount-notice {
        padding: 10px;
        margin-bottom: 15px;
    }
    
    .cart-discount-notice span {
        font-size: 0.8rem;
    }
    
    .cart-discount-notice small {
        font-size: 0.7rem;
    }
}

/* VERY SMALL MOBILE */
@media screen and (max-width: 480px) {
    /* Announcement */
    .announcement-bar {
        padding: 6px 10px;
        font-size: 10px;
    }
    
    .announcement-header {
        height: 32px;
    }
    
    .announcement-header .announcement-phrase {
        font-size: 10px;
    }
    
    /* Headers */
    .main-header {
        top: 38px;
        padding: 10px 15px;
    }
    
    .shop-header {
        top: 32px;
        padding: 12px 15px;
    }
    
    .header-nav {
        display: none;
    }
    
    .sticky-logo {
        width: 30px;
    }
    
    .center-text-logo {
        height: 80px !important;
    }
    
    /* Product */
    .product-container {
        padding: 90px 15px 15px;
    }
    
    .product-image-container {
        height: 300px;
        padding: 10px;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .product-subtitle {
        font-size: 1rem;
    }
    
    .product-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .product-price {
        font-size: 1.6rem;
    }
    
    .original-price {
        font-size: 1.2rem;
    }
    
    .presale-price {
        font-size: 1.8rem;
    }
    
    /* Thumbnails */
    .thumbnail-container {
        gap: 8px;
    }
    
    .thumbnail {
        width: 45px;
        height: 45px;
    }
    
    /* Size selector */
    .size-selector {
        padding: 15px;
    }
    
    .size-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .size-option {
        padding: 8px 2px;
        font-size: 12px;
    }
    
    /* Bundle */
    .bundle-promo {
        padding: 15px 10px;
    }
    
    .bundle-promo-title {
        font-size: 1rem;
    }
    
    .bundle-promo-subtitle {
        font-size: 0.9rem;
    }
    
    .bundle-offer {
        padding: 15px 10px;
    }
    
    .bundle-offer-price {
        font-size: 1.5rem;
    }
    
    /* Features */
    .features-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .features-grid {
        gap: 15px;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 0.8rem;
    }
    
    .feature-description {
        font-size: 0.75rem;
    }
    
    /* Lifestyle carousel */
    .lifestyle-slide img {
        height: 300px;
    }
    
    .lifestyle-section {
        padding: 60px 20px;
    }
    
    .lifestyle-title {
        font-size: 1.5rem;
    }
    
    .lifestyle-subtitle {
        font-size: 1rem;
    }
    
    /* Buttons */
    .btn-primary {
        font-size: 14px;
        padding: 14px 24px;
    }
    
    .buy-button {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    /* Landing */
    .logo-container {
        width: 220px;
        height: 220px;
        margin-bottom: 15px;
    }
    
    .content-wrapper {
        padding: 70px 15px 15px;
    }
    
    /* Timer */
    .timer-container {
        width: 160px !important;
        bottom: 15px !important;
        right: 15px !important;
        padding: 12px;
    }
    
    .index-page .timer-container {
        bottom: 80px !important;
    }
    
    /* Cart */
    .cart-header {
        padding: 20px;
    }
    
    .cart-title {
        font-size: 1.2rem;
    }
    
    .cart-item {
        padding: 15px;
    }
    
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    
    .cart-footer {
        padding: 20px;
    }
    
    .cart-checkout-btn {
        padding: 15px;
        font-size: 14px;
    }
    
    /* Size guide modal */
    .size-guide-content {
        margin: 10px;
        max-height: 85vh;
    }
    
    .size-guide-header {
        padding: 20px 20px 15px 20px;
    }
    
    .size-guide-body {
        padding: 20px;
    }
    
    .size-chart {
        font-size: 12px;
    }
    
    .size-chart th,
    .size-chart td {
        padding: 8px 5px;
    }
    
    /* Image popup */
    .image-popup-content {
        max-width: 90vw;
        max-height: 50vh;
    }
    
    .image-popup-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .image-popup-close {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    /* Social */
    .social-container {
        margin-top: 15px;
    }
    
    .social-text {
        font-size: 12px;
        margin-top: 5px;
    }
    
    .social-icons a {
        font-size: 20px;
    }
    
    /* Modals */
    .access-denied-content,
    .size-warning-content {
        padding: 25px 15px;
    }
    
    .access-denied-title,
    .size-warning-title {
        font-size: 1.2rem;
    }
    
    .access-denied-text,
    .size-warning-text {
        font-size: 0.9rem;
    }
    
    .access-denied-close,
    .size-warning-close {
        font-size: 14px;
        padding: 12px 20px;
    }
}
/* ORDER NOTIFICATION POPUP */
.order-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 380px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(30, 30, 30, 0.95));
    border: 2px solid var(--color-primary);
    border-radius: 12px;
    padding: 0;
    z-index: 10008;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 40px rgba(158, 217, 181, 0.3);
    backdrop-filter: blur(10px);
}

.order-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.order-notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    position: relative;
}

.order-notification-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--color-primary), #7BC097);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: notificationPulse 2s infinite;
}

@keyframes notificationPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(158, 217, 181, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(158, 217, 181, 0);
    }
}

.order-notification-icon i {
    color: #000;
    font-size: 20px;
}

.order-notification-text {
    flex: 1;
    min-width: 0;
}

.order-notification-header {
    font-family: var(--font-headers);
    font-weight: var(--font-primary-weight);
    font-size: 0.9rem;
    color: white;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-notification-header strong {
    color: var(--color-primary);
}

.order-notification-details {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 3px;
}

.order-notification-time {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: #888;
    font-style: italic;
}

.order-notification-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.order-notification-close:hover {
    color: var(--color-primary);
    opacity: 1;
    transform: rotate(90deg);
}

/* LOW STOCK ANIMATIONS */
@keyframes pulse-urgent {
    0%, 100% { 
        transform: scale(1);
        color: #ffaa00;
    }
    50% { 
        transform: scale(1.1);
        color: #ff6b6b;
    }
}

.low-stock {
    animation: pulse-urgent 2s infinite;
}

.final-stock {
    color: #ff6b6b !important;
    animation: pulse-urgent 1s infinite;
}

/* MOBILE ADJUSTMENTS FOR NOTIFICATION */
@media screen and (max-width: 768px) {
    .order-notification {
        left: 20px;
        right: 20px;
        max-width: none;
        bottom: 20px;
    }
    
    .order-notification-content {
        padding: 12px 15px;
    }
    
    .order-notification-icon {
        width: 40px;
        height: 40px;
    }
    
    .order-notification-icon i {
        font-size: 18px;
    }
    
    .order-notification-header {
        font-size: 0.85rem;
    }
    
    .order-notification-details {
        font-size: 0.8rem;
    }
    
    .order-notification-time {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 480px) {
    .order-notification {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
    
    .order-notification-content {
        padding: 10px 12px;
        gap: 12px;
    }
    
    .order-notification-icon {
        width: 35px;
        height: 35px;
    }
    
    .order-notification-icon i {
        font-size: 16px;
    }
    
    .order-notification-header {
        font-size: 0.8rem;
    }
    
    .order-notification-details {
        font-size: 0.75rem;
    }
    
    .order-notification-time {
        font-size: 0.65rem;
    }
}
/* MOBILE COLOR PICKER - Add this to your styles.css file */

/* Hide mobile color picker on desktop */
.mobile-color-picker {
    display: none;
}

/* MOBILE RESPONSIVE - Update the existing @media section */
@media screen and (max-width: 768px) {
    /* Show mobile color picker on mobile */
    .mobile-color-picker {
        display: block;
        margin: 20px 0;
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-color-options {
        display: flex;
        gap: 15px;
        justify-content: center;
    }
    
    .mobile-color-option {
        position: relative;
        width: 100px;
        height: 60px;
        border-radius: 8px;
        cursor: pointer;
        border: 3px solid transparent;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    .mobile-color-option.red {
        background: #dc3545;
    }
    
    .mobile-color-option.black {
        background: #000000;
        border: 3px solid #333;
    }
    
    .mobile-color-option.active {
        border-color: var(--color-primary) !important;
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(158, 217, 181, 0.6);
    }
    
    .mobile-color-label {
        font-family: var(--font-headers);
        font-size: 12px;
        color: white;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: var(--font-weight-bold);
        text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
    }
    
    .mobile-color-option.black .mobile-color-label {
        color: var(--color-primary);
    }
    
    /* Hide the desktop color selector in size section on mobile */
    .size-section-colors {
        display: none !important;
    }
}

/* Even smaller mobile screens */
@media screen and (max-width: 480px) {
    .mobile-color-option {
        width: 80px;
        height: 50px;
    }
    
    .mobile-color-label {
        font-size: 11px;
    }
    
    .mobile-color-options {
        gap: 12px;
    }
    
    .mobile-color-picker {
        padding: 12px;
        margin: 15px 0;
    }
}
/* Add this to your styles.css or in the <style> section of index.html */

/* Remove the patterned background from body.loaded */
body.loaded {
    /* REMOVED: background-image: url('../../assets/images/patterned1.png'); */
    background-color: #000; /* Keep it black until video loads */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Optional: Add a fade-in effect for the video */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    object-fit: cover;
    object-position: center;
    opacity: 0; /* Start invisible */
    transition: opacity 0.5s ease; /* Smooth fade in */
}

/* When video is ready */
body.loaded .bg-video {
    opacity: 1;
}

/* For shop page, keep the darkening filter */
.shop-page .bg-video {
    filter: brightness(0.3);
}
