/* CSS Variables for Purple Theme */
:root {
    --primary-purple: #8B5CF6;
    --primary-purple-dark: #7C3AED;
    --primary-purple-light: #A78BFA;
    --secondary-purple: #E0E7FF;
    --dark-bg: #1F2937;
    --black-bg: #000000;
    --white: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    background: var(--black-bg);
    padding: 15px 0;
    position: relative;
    z-index: 1000;
}

/* Combined Header-Hero Styles */
.hero-header {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-over-hero {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 15px 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.header-over-hero.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 25px;
}

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

.header-left {
    display: flex !important;
    align-items: center;
    gap: 15px;
    visibility: visible !important;
}

.cart-btn {
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 4.5px 15px;
    display: flex !important;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(139, 92, 246, 0.2);
    position: relative;
    visibility: visible !important;
    opacity: 1 !important;
}

.cart-btn:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(139, 92, 246, 0.3);
}

.cart-icon {
    font-size: 1.2rem;
}

.cart-count {
    background: var(--white);
    color: var(--primary-purple);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    min-width: 20px;
    visibility: visible !important;
}

.logo-img {
    height: 40px;
    width: auto;
}

/* Logo links should have no text decoration and display as block */
.logo a, .menu-logo a {
    text-decoration: none;
    display: block;
    border: none;
    outline: none;
}

.logo a:hover, .menu-logo a:hover {
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

/* Desktop Hamburger Menu Button */
.desktop-menu-btn {
    display: flex;
    flex-direction: column;
    background: var(--primary-purple);
    border: none;
    cursor: pointer;
    padding: 10px 12px;
    gap: 4px;
    border-radius: 5px;
    margin-left: 15px;
    transition: background 0.3s ease;
}

.desktop-menu-btn:hover {
    background: var(--primary-purple-dark);
}

.desktop-menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.desktop-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.desktop-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.desktop-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Desktop Sidebar */
.desktop-sidebar {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, rgb(139 92 246 / 7%), rgba(0, 0, 0, 0.95));
    backdrop-filter: blur(20px);
    z-index: 2000;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
}

/* Custom Purple Scrollbar for Desktop Sidebar */
.desktop-sidebar::-webkit-scrollbar {
    width: 6px;
}

.desktop-sidebar::-webkit-scrollbar-track {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
}

.desktop-sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8b5cf6, #a855f7);
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.desktop-sidebar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #7c3aed, #9333ea);
}

/* Firefox Scrollbar Support */
.desktop-sidebar {
    scrollbar-width: thin;
    scrollbar-color: #8b5cf6 rgba(139, 92, 246, 0.1);
}

.desktop-sidebar.open {
    left: 0;
}

.sidebar-content {
    padding: 30px;
    height: 100%;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-header .logo-img {
    height: 50px;
}

.close-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #FFD700;
}

.sidebar-auth {
    margin-bottom: 40px;
}

.user-profile {
    text-align: center;
    color: var(--white);
}

.user-welcome {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.user-email {
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFD700;
}

.btn-login, .btn-logout {
    background: var(--primary-purple);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    cursor: pointer;
    width: 100%;
}

.btn-login:hover, .btn-logout:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-2px);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.nav-section-title {
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-section .nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.nav-section .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.nav-section .nav-link.featured {
    background: linear-gradient(45deg, var(--primary-purple), #FFD700);
    font-weight: 600;
}

.nav-section .nav-link.account-link {
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid var(--primary-purple);
    color: var(--white);
    font-weight: 600;
    margin-bottom: 10px;
}

.nav-section .nav-link.account-link:hover {
    background: rgba(138, 43, 226, 0.4);
    transform: translateX(10px);
    border-color: #FFD700;
}

.nav-icon {
    font-size: 1.2rem;
}

.nav-text {
    font-weight: 500;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    background: var(--primary-purple);
    border: none;
    cursor: pointer;
    padding: 12px;
    gap: 4px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.mobile-menu-btn:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.btn-sign-in, .btn-sign-out {
    background: var(--primary-purple);
    color: var(--white);
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-sign-in:hover, .btn-sign-out:hover {
    background: var(--primary-purple-dark);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

.mobile-menu-content {
    background: var(--white);
    width: 100%;
    height: 100%;
    padding: 0;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--white);
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 10;
}

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

.menu-logo-img {
    height: 40px;
    max-width: 150px;
    object-fit: contain;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background-color 0.2s ease;
}

.close-btn:hover {
    background-color: #f5f5f5;
}

.close-line {
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--gray-600);
    border-radius: 1px;
    transition: all 0.2s ease;
}

.close-line:first-child {
    transform: rotate(45deg);
}

.close-line:last-child {
    transform: rotate(-45deg);
}

.mobile-menu-nav {
    padding: 20px 0;
}

.mobile-menu-nav .nav-item {
    display: block;
    padding: 16px 24px;
    text-decoration: none;
    color: var(--gray-800);
    font-size: 16px;
    font-weight: 500;
    border-bottom: none;
    transition: all 0.2s ease;
    position: relative;
}

.mobile-menu-nav .nav-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-purple);
    padding-left: 32px;
}

.mobile-menu-nav .nav-item:active {
    background-color: #e9ecef;
}

.mobile-menu-nav .nav-item.sale {
    color: var(--primary-purple);
    font-weight: 600;
}

.mobile-menu-nav .nav-item.sale:hover {
    background-color: rgba(139, 69, 189, 0.1);
}

.nav-divider {
    height: 1px;
    background-color: var(--gray-200);
    margin: 16px 24px;
}

.mobile-menu-nav .nav-item.account-item {
    color: var(--primary-purple);
    font-weight: 600;
}

.mobile-menu-nav .nav-item.account-item:hover {
    background-color: rgba(139, 69, 189, 0.1);
    color: var(--primary-purple-dark);
}

.mobile-menu-nav .nav-item.logout-item {
    color: #dc3545;
    font-weight: 600;
}

.mobile-menu-nav .nav-item.logout-item:hover {
    background-color: rgba(220, 53, 69, 0.1);
    color: #c82333;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

/* Liquid Background Styles */
.liquid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0933 0%, #2d1b4e 25%, #4a2c6a 50%, #6b4794 75%, #8b5cf6 100%);
    z-index: 1;
}

.liquid-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    mix-blend-mode: screen;
    animation-duration: 20s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    opacity: 0.8;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 1) 0%, rgba(139, 92, 246, 0.6) 50%, rgba(139, 92, 246, 0.1) 100%);
    top: 10%;
    left: 10%;
    animation-name: float-1;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.9) 0%, rgba(168, 85, 247, 0.5) 50%, rgba(168, 85, 247, 0.1) 100%);
    top: 60%;
    right: 10%;
    animation-name: float-2;
    animation-delay: -5s;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.8) 0%, rgba(147, 51, 234, 0.4) 50%, rgba(147, 51, 234, 0.1) 100%);
    top: 30%;
    right: 30%;
    animation-name: float-3;
    animation-delay: -10s;
}

.blob-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(126, 34, 206, 0.7) 0%, rgba(126, 34, 206, 0.3) 50%, rgba(126, 34, 206, 0.1) 100%);
    bottom: 20%;
    left: 30%;
    animation-name: float-4;
    animation-delay: -15s;
}

.blob-5 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.6) 0%, rgba(255, 215, 0, 0.3) 50%, rgba(255, 215, 0, 0.1) 100%);
    top: 50%;
    left: 50%;
    animation-name: float-5;
    animation-delay: -8s;
}

@keyframes float-1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 100px) scale(0.9);
    }
}

@keyframes float-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-150px, -100px) scale(1.2);
    }
}

@keyframes float-3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(80px, 120px) scale(0.8);
    }
    75% {
        transform: translate(-120px, -80px) scale(1.3);
    }
}

@keyframes float-4 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    40% {
        transform: translate(150px, 50px) scale(1.1);
    }
    80% {
        transform: translate(-100px, -150px) scale(0.9);
    }
}

@keyframes float-5 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    30% {
        transform: translate(-80px, -100px) scale(1.4);
    }
    60% {
        transform: translate(120px, 80px) scale(0.7);
    }
}

/* Mobile Responsive Container */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2.2rem;
        padding: 0 10px;
        text-align: center;
    }
    
    .section-subtitle {
        text-align: center;
        padding: 0 15px;
    }
}

/* Mobile Responsive Liquid Background */
@media (max-width: 768px) {
    .blob-1, .blob-2, .blob-3, .blob-4, .blob-5 {
        animation-duration: 25s;
        filter: blur(50px);
    }
    
    .blob-1 {
        width: 200px;
        height: 200px;
    }
    
    .blob-2 {
        width: 250px;
        height: 250px;
    }
    
    .blob-3 {
        width: 150px;
        height: 150px;
    }
    
    .blob-4 {
        width: 200px;
        height: 200px;
    }
    
    .blob-5 {
        width: 120px;
        height: 120px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(139, 92, 246, 0.1));
    backdrop-filter: blur(1px);
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 10;
    margin-top: 60px;
    position: relative;
}

.hero-logo-img {
    height: 120px;
    margin-bottom: 30px;
}

/* Split-Screen Title Animation */
.split-title-container {
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
}

.split-title {
    font-size: 4.8rem;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.split-left {
    transform: translateX(-100vw);
    color: #FFD700; /* Golden color */
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.split-right {
    transform: translateX(100vw);
    color: var(--white);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.split-left.animate-in {
    transform: translateX(0);
}

.split-right.animate-in {
    transform: translateX(0);
}

.connecting-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, var(--primary-purple), #FFD700);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    transition: width 0.6s ease-out;
}

.connecting-line.animate-in {
    width: 200px;
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100vw);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100vw);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes expandLine {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 200px;
        opacity: 1;
    }
}

/* Mobile Responsiveness for Split Title */
@media (max-width: 768px) {
    .split-title {
        font-size: 2.8rem;
        flex-direction: column;
        gap: 12px;
        font-weight: 700;
        padding: 15px 10px;
    }
    
    .split-title .word-1,
    .split-title .word-2 {
        text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
    }
    
    .connecting-line {
        display: none;
    }
    
    .hero-content {
        padding: 25px 15px;
    }
    
    .hero-title {
        font-size: 2.6rem;
        margin-bottom: 22px;
    }
    
    .hero-description {
        font-size: 1.05rem;
        line-height: 1.65;
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .split-title {
        font-size: 3rem;
        text-align: center;
        line-height: 1.1;
        padding: 20px 15px;
        flex-direction: column;
        gap: 8px;
        font-weight: 800;
        letter-spacing: -1px;
    }
    
    .split-title .word-1,
    .split-title .word-2 {
        display: block;
        width: 100%;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .split-title .word-1 {
        background: linear-gradient(135deg, #8b5cf6, #a855f7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .split-title .word-2 {
        background: linear-gradient(135deg, #7c3aed, #8b5cf6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 25px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0 15px;
        line-height: 1.7;
        margin-bottom: 35px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 0 20px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 16px 30px;
        width: 100%;
        max-width: 300px;
        text-align: center;
        font-size: 1.1rem;
        font-weight: 700;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary-purple);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #010101;
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-purple);
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--gray-800);
}

/* Hero Find Match Button */
.btn-find-match {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
    color: var(--white);
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-find-match::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-find-match:hover::before {
    left: 100%;
}

.btn-find-match:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

.find-icon {
    font-size: 1.3rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

/* Match Finder Modal */
.match-finder-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4000;
    display: none;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-slide-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100%;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
}

.match-finder-modal.open .modal-slide-panel {
    transform: translateX(0);
}

.modal-header {
    padding: 30px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
    color: var(--white);
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 40px 30px;
}

.finder-step {
    display: none;
}

.finder-step.active {
    display: block;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.finder-step h3 {
    font-size: 1.6rem;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.step-subtitle {
    color: var(--gray-600);
    margin-bottom: 30px;
    font-size: 1rem;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.option-grid.vertical {
    grid-template-columns: 1fr;
}

.option-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 25px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.option-card.large {
    flex-direction: row;
    text-align: left;
    gap: 20px;
}

.option-card:hover {
    border-color: var(--primary-purple);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

.option-card.selected {
    border-color: var(--primary-purple);
    background: var(--secondary-purple);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.option-icon {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.option-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray-800);
    margin-bottom: 5px;
}

.option-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.4;
}

.option-content {
    flex: 1;
}

.modal-footer {
    padding: 30px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gray-50);
}

.btn-back,
.btn-next {
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back {
    background: var(--gray-300);
    color: var(--gray-700);
}

.btn-back:hover,
.btn-next:hover {
    transform: translateY(-2px);
}

.step-indicator {
    display: flex;
    gap: 10px;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: background 0.3s ease;
}

.step-dot.active {
    background: var(--primary-purple);
}

.results-container {
    display: grid;
    gap: 20px;
}

/* Recommendation Cards */
.recommendation-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: center;
}

.recommendation-card:hover {
    border-color: var(--primary-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

.rec-image {
    position: relative;
    flex-shrink: 0;
}

.rec-image img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

.match-score {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-purple);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.rec-info {
    flex: 1;
}

.rec-info h4 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    color: var(--gray-800);
}

.rec-price {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.rec-reason {
    margin: 0 0 15px 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.btn-add-quick {
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-quick:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-slide-panel {
        width: 100%;
    }
    
    .option-grid {
        grid-template-columns: 1fr;
    }
    
    .recommendation-card {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-find-match {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

/* Product Carousel */
.products-carousel-container {
    position: relative;
    margin-bottom: 50px;
}

.products-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

.products-carousel .product-card {
    flex: 0 0 280px;
    min-width: 280px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

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

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-purple);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Mobile Quick Order */
.mobile-quick-order {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.btn-quick-order {
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.btn-quick-order:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.4);
}

.quick-order-icon {
    font-size: 1.2rem;
}

.quick-order-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1001;
    max-height: 60vh;
    overflow-y: auto;
}

.quick-order-panel.open {
    transform: translateY(0);
}

.quick-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.quick-order-header h3 {
    margin: 0;
    color: var(--gray-800);
}

.btn-close-quick-order {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-600);
}

.quick-order-content {
    padding: 20px;
}

.quick-order-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.quick-category-btn {
    background: var(--secondary-purple);
    color: var(--primary-purple);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-category-btn:hover {
    background: var(--primary-purple);
    color: var(--white);
}

/* Start Your Experience Section */
.start-experience {
    padding: 80px 0;
    background: var(--gray-100);
}

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

.category-card {
    background: var(--white);
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    text-decoration: none;
    color: var(--gray-800);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.category-icon img {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
}

.category-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 20px;
    display: block;
}

.category-product-image img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

/* Featured In Section */
.featured-in {
    padding: 60px 0;
    background: var(--white);
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.press-logo {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.press-logo:hover {
    opacity: 1;
}

/* New Drops Section */
.new-drops {
    padding: 80px 0;
    background: var(--primary-purple);
    color: var(--white);
}

.new-drops .section-title {
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    margin-top: -30px;
    margin-bottom: 50px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Responsive adjustments for main products grid */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .new-drops {
        padding: 60px 0;
    }
    
    .new-drops .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        padding: 0 15px;
    }
    
    .product-card {
        margin-bottom: 0;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-title {
        font-size: 1rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .new-drops {
        padding: 40px 0;
    }
    
    .new-drops .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-top: -10px;
        margin-bottom: 30px;
        padding: 0 20px;
    }
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.product-favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-size: 18px;
}

.product-info {
    padding: 20px;
    color: var(--gray-800);
}

.product-rating {
    margin-bottom: 10px;
}

.star {
    color: var(--gray-300);
    font-size: 14px;
}

.star.filled {
    color: #FCD34D;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 5px;
}

.product-category {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-add-to-cart {
    width: 100%;
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-add-to-cart:hover {
    background: var(--primary-purple-dark);
}

.product-hybrid-label {
    background: var(--gray-200);
    color: var(--gray-600);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-top: 10px;
    display: inline-block;
}

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

.btn-see-all {
    background: var(--white);
    color: var(--primary-purple);
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-see-all:hover {
    background: var(--gray-100);
}

/* Brands Section */
.brands {
    padding: 80px 0;
    background: var(--white);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.brand-card {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--gray-100);
    position: relative;
    transition: transform 0.3s ease;
    animation: slideDownFromTop 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(-100px);
}

.brand-card:hover {
    transform: translateY(-5px);
}

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

.brand-placeholder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
    color: var(--white);
}

.brand-initials {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.brand-name-text {
    font-size: 0.8rem;
    opacity: 0.9;
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 92, 246, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-card:hover .brand-overlay {
    opacity: 1;
}

.brand-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border: 2px solid var(--white);
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.brand-link:hover {
    background: var(--white);
    color: var(--primary-purple);
}

.empty-brands {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--gray-600);
}

/* Slide down animation for brand cards */
@keyframes slideDownFromTop {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation delays for each brand card */
.brand-card:nth-child(1) { animation-delay: 0.1s; }
.brand-card:nth-child(2) { animation-delay: 0.2s; }
.brand-card:nth-child(3) { animation-delay: 0.3s; }
.brand-card:nth-child(4) { animation-delay: 0.4s; }
.brand-card:nth-child(5) { animation-delay: 0.5s; }
.brand-card:nth-child(6) { animation-delay: 0.6s; }
.brand-card:nth-child(7) { animation-delay: 0.7s; }
.brand-card:nth-child(8) { animation-delay: 0.8s; }
.brand-card:nth-child(9) { animation-delay: 0.9s; }
.brand-card:nth-child(10) { animation-delay: 1.0s; }

/* Products Page */
.products-header {
    position: relative;
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.products-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 92, 246, 0.8);
    z-index: -1;
}

.products-header-content {
    text-align: center;
    color: var(--white);
}

.products-title {
    #font-size: 3rem;
    #font-weight: 700;
    margin-bottom: 10px;
}

.products-search {
    display: flex;
    max-width: 400px;
    margin: 0 auto 20px auto;
}

.search-input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px 0 0 6px;
    font-size: 16px;
}

.search-btn {
    background: var(--primary-purple-dark);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    font-weight: 600;
}

.view-all-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.products-section {
    padding: 60px 0;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.category-subtitle {
    color: var(--gray-500);
    font-size: 1.1rem;
}

.view-category-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 10px;
    display: inline-block;
    transition: color 0.3s ease;
}

.view-category-link:hover {
    color: var(--primary-purple-dark);
}

.category-section {
    margin-bottom: 80px;
}

.category-section:last-child {
    margin-bottom: 40px;
}

.category-products-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Responsive adjustments for category grids */
@media (max-width: 1200px) {
    .category-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 480px) {
    .category-products-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--black-bg);
    color: var(--white);
    padding: 60px 0 20px 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

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

.footer-logo-img {
    height: 80px;
    max-width: 200px;
    object-fit: contain;
}

/* Enhanced Product Modal */
.enhanced-product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.enhanced-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.modal-close-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-close-btn:hover {
    background: white;
    transform: scale(1.1);
}

.modal-close-btn svg {
    color: #6b7280;
}

.enhanced-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 90vh;
    max-height: 800px;
}

/* Media Section */
.modal-media-section {
    background: #f8fafc;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-media-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.main-modal-image, .main-modal-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.modal-video-container {
    width: 100%;
    height: 100%;
}

.modal-media-thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 0;
}

.modal-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.2s ease;
}

.modal-thumb.active {
    border-color: #8b5cf6;
    transform: scale(1.05);
}

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

.modal-thumb.video-thumb {
    background: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    font-size: 12px;
}

.modal-thumb.video-thumb .play-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

/* Product Info Section */
.modal-product-info {
    padding: 40px;
    overflow-y: auto;
    background: white;
}

.modal-product-header {
    margin-bottom: 30px;
}

.modal-product-category {
    color: #8b5cf6;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-product-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 8px 0 16px 0;
    line-height: 1.2;
}

.modal-price-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-current-price {
    font-size: 28px;
    font-weight: 700;
    color: #8b5cf6;
}

.modal-sale-price {
    font-size: 20px;
    color: #ef4444;
    font-weight: 600;
}

.modal-product-meta {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.meta-row:last-child {
    border-bottom: none;
}

.meta-label {
    font-weight: 600;
    color: #6b7280;
}

.meta-value {
    color: #1f2937;
    font-weight: 500;
}

.modal-descriptions {
    margin-bottom: 30px;
}

.description-section {
    margin-bottom: 20px;
}

.description-section h4 {
    color: #8b5cf6;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.description-section p, .description-section div {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Cannabis Ratings */
.modal-cannabis-ratings {
    margin-bottom: 30px;
}

.modal-cannabis-ratings h3 {
    color: #1f2937;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ratings-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rating-item {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #8b5cf6;
}

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

.rating-label {
    font-weight: 600;
    color: #1f2937;
    font-size: 16px;
}

.rating-score {
    font-size: 18px;
    font-weight: 700;
    color: #8b5cf6;
}

.rating-bar {
    background: #e5e7eb;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.rating-progress {
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6 0%, #a78bfa 100%);
    transition: width 0.5s ease;
    border-radius: 4px;
}

.rating-help {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    font-style: italic;
}

/* Variants Section */
.modal-variants-section {
    margin-bottom: 30px;
}

.modal-variants-section h3 {
    color: #1f2937;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.variants-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-variant-option {
    background: #f8fafc;
    padding: 16px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    transition: all 0.2s ease;
    cursor: pointer;
}

.modal-variant-option:hover {
    border-color: #8b5cf6;
    background: #faf5ff;
}

.variant-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.variant-name {
    font-weight: 600;
    color: #1f2937;
}

.variant-price {
    font-weight: 700;
    color: #8b5cf6;
    font-size: 16px;
}

/* Actions Section */
.modal-actions-section {
    background: #f8fafc;
    padding: 24px;
    border-radius: 16px;
    margin-top: 20px;
}

.quantity-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.quantity-section label {
    font-weight: 600;
    color: #1f2937;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.quantity-controls button {
    background: #f8fafc;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
    transition: all 0.2s ease;
}

.quantity-controls button:hover {
    background: #8b5cf6;
    color: white;
}

.quantity-controls input {
    border: none;
    width: 60px;
    height: 40px;
    text-align: center;
    font-weight: 600;
    color: #1f2937;
    background: white;
}

.action-buttons {
    display: flex;
    gap: 12px;
}

.btn-add-to-cart-modal {
    flex: 2;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-add-to-cart-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.btn-continue-shopping-modal {
    flex: 1;
    background: transparent;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-continue-shopping-modal:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .enhanced-modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .enhanced-modal-body {
        grid-template-columns: 1fr;
        grid-template-rows: 300px 1fr;
    }
    
    .modal-media-section {
        padding: 20px;
    }
    
    .modal-product-info {
        padding: 20px;
    }
    
    .modal-product-title {
        font-size: 24px;
    }
    
    .modal-current-price {
        font-size: 22px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}

/* Additional Enhanced Modal Styling */
.enhanced-product-modal .rating-icon {
    font-size: 20px;
    margin-right: 8px;
}

.enhanced-product-modal .modal-actions-section .action-buttons {
    display: flex;
    gap: 15px;
}

.enhanced-product-modal .btn-add-to-cart-modal,
.enhanced-product-modal .btn-continue-shopping-modal {
    flex: 1;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.enhanced-product-modal .btn-add-to-cart-modal {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enhanced-product-modal .btn-add-to-cart-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.enhanced-product-modal .btn-continue-shopping-modal {
    background: transparent;
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

.enhanced-product-modal .btn-continue-shopping-modal:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.enhanced-product-modal .modal-breadcrumb {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.enhanced-product-modal .video-thumb {
    background: linear-gradient(135deg, #1f2937, #374151);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    padding: 8px;
}

.enhanced-product-modal .video-thumb span {
    margin-top: 4px;
}

/* Mobile Responsive for Enhanced Modal */
@media (max-width: 768px) {
    .enhanced-product-modal {
        padding: 10px;
        align-items: flex-start;
    }
    
    .enhanced-modal-content {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        height: 100vh;
        border-radius: 15px;
        display: flex;
        flex-direction: column;
    }
    
    .enhanced-product-modal .modal-header {
        padding: 15px 20px;
        flex-shrink: 0;
    }
    
    .enhanced-product-modal .enhanced-modal-body {
        flex-direction: column;
        flex: 1;
        overflow-y: auto;
        position: relative;
    }
    
    .enhanced-product-modal .modal-media-section {
        position: relative;
        z-index: 1;
        flex-shrink: 0;
        height: 40vh;
        min-height: 50%;
        max-height: 400px;
        order: 1;
    }
    
    .enhanced-product-modal .main-media-container {
        padding: 15px;
        margin: 10px;
        min-height: 250px;
        height: calc(100% - 80px);
    }
    
    .enhanced-product-modal .main-modal-image {
        min-height: 200px;
        max-height: 250px;
    }
    
    .enhanced-product-modal .modal-media-thumbnails {
        padding: 10px 15px;
        min-height: 80px;
        gap: 10px;
    }
    
    .enhanced-product-modal .media-thumbnail {
        width: 70px;
        height: 70px;
    }
    
    .enhanced-product-modal .modal-product-info {
        position: relative;
        z-index: 2;
        order: 2;
        flex: 1;
        padding: 20px;
        overflow-y: auto;
        background: white;
        min-height: 50vh;
    }
    
    .enhanced-product-modal .modal-product-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .enhanced-product-modal .modal-current-price {
        font-size: 18px;
    }
    
    .enhanced-product-modal .action-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }
    
    .enhanced-product-modal .btn-add-to-cart-modal,
    .enhanced-product-modal .btn-continue-shopping-modal {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .enhanced-product-modal .ratings-container {
        gap: 12px;
        margin: 15px 0;
    }
    
    .enhanced-product-modal .rating-item {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .enhanced-product-modal .rating-value {
        font-size: 16px;
    }
    
    .enhanced-product-modal .rating-label {
        font-size: 12px;
    }
    
    /* Fix modal close button for mobile */
    .modal-close-btn {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        z-index: 10000;
    }
}

/* Extra small screens (phones) */
@media (max-width: 480px) {
    .enhanced-product-modal {
        padding: 5px;
    }
    
    .enhanced-modal-content {
        border-radius: 10px;
    }
    
    .enhanced-product-modal .modal-media-section {
        height: 35vh;
        min-height: 50%;
        max-height: 300px;
    }
    
    .enhanced-product-modal .main-media-container {
        padding: 10px;
        margin: 5px;
        min-height: 200px;
    }
    
    .enhanced-product-modal .main-modal-image {
        min-height: 150px;
        max-height: 180px;
    }
    
    .enhanced-product-modal .modal-product-info {
        padding: 15px;
        min-height: 55vh;
    }
    
    .enhanced-product-modal .modal-product-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .enhanced-product-modal .modal-current-price {
        font-size: 16px;
    }
    
    .enhanced-product-modal .rating-item {
        padding: 10px;
        margin-bottom: 8px;
    }
    
    .enhanced-product-modal .rating-value {
        font-size: 14px;
    }
    
    .enhanced-product-modal .rating-label {
        font-size: 11px;
    }
    
    .modal-close-btn {
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
    }
}

/* New Enhanced Product Modal Styles */
.enhanced-product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.enhanced-modal-content {
    position: relative;
    max-width: 1400px;
    width: 95%;
    max-height: 95vh;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    z-index: 1000;
}

.modal-close-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.enhanced-modal-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Left Side: Media Gallery */
.modal-media-section {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
}

.main-media-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    background: white;
    border-radius: 16px;
    margin: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 500px;
}

.main-modal-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.modal-video-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-modal-video {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
}

.modal-media-thumbnails {
    display: flex;
    gap: 15px;
    background: white;
    overflow-x: hidden;
    justify-content: center;
    min-height: 130px;
    align-items: start;
    flex-wrap: wrap;
}

/* Hide thumbnails section when only one media item */
.modal-media-thumbnails:empty,
.modal-media-thumbnails:has(.media-thumbnail:only-child) {
    display: none;
}

.media-thumbnail {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.media-thumbnail:hover,
.media-thumbnail.active {
    border-color: #8b5cf6;
    transform: scale(1.05);
}

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

.video-thumb-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Media Navigation Arrows */
.media-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.media-nav-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.media-nav-left {
    left: 10px;
}

.media-nav-right {
    right: 10px;
}

/* Media Counter */
.media-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

/* Right Side: Product Information */
.modal-product-info {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    background: white;
}

.modal-product-header {
    margin-bottom: 25px;
}

.modal-product-category {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.modal-product-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.modal-price-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-current-price {
    font-size: 24px;
    font-weight: 700;
    color: #8b5cf6;
}

.modal-sale-price {
    font-size: 18px;
    color: #6b7280;
    text-decoration: line-through;
}

.modal-product-meta {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.meta-row:last-child {
    border-bottom: none;
}

.meta-label {
    font-weight: 600;
    color: #4b5563;
    font-size: 14px;
}

.meta-value {
    color: #1f2937;
    font-weight: 500;
}

.modal-descriptions {
    margin-bottom: 25px;
}

.description-section {
    margin-bottom: 20px;
}

.description-section h4 {
    color: #8b5cf6;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.description-section p,
.description-section div {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.modal-cannabis-ratings {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(124, 58, 237, 0.05));
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.modal-cannabis-ratings h3 {
    color: #8b5cf6;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-align: center;
}

.ratings-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rating-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.rating-icon {
    font-size: 20px;
    margin-right: 10px;
}

.rating-label {
    font-weight: 600;
    color: #1f2937;
    font-size: 16px;
}

.rating-score {
    font-weight: 700;
    color: #8b5cf6;
    font-size: 18px;
}

.rating-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.rating-progress {
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
    border-radius: 4px;
    transition: width 0.5s ease;
    width: 0%;
}

.rating-help {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    font-style: italic;
}

/* Cannabis Information Section */
.modal-cannabis-info {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(124, 58, 237, 0.08));
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.modal-cannabis-info h3 {
    color: #8b5cf6;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-align: center;
}

.cannabis-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cannabis-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cannabis-label {
    font-weight: 600;
    color: #1f2937;
    font-size: 15px;
    min-width: 80px;
}

.cannabis-value {
    font-weight: 700;
    color: #8b5cf6;
    font-size: 16px;
}

.cannabis-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 60%;
    justify-content: flex-end;
}

.cannabis-tag {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.modal-variants-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.modal-variants-section h3 {
    color: #1f2937;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.variants-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.variant-item {
    background: white;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.variant-item:hover {
    border-color: #8b5cf6;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.1);
    transform: translateY(-1px);
}

.variant-item.selected {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

.variant-item.selected .variant-name,
.variant-item.selected .variant-price {
    color: white;
    font-weight: 600;
}



.variant-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.variant-name {
    font-weight: 600;
    color: #1f2937;
}

.variant-price {
    font-weight: 700;
    color: #8b5cf6;
}

.variant-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.modal-actions-section {
    background: #f8fafc;
    border-radius: 16px;
    padding: 25px;
    margin-top: auto;
}

.quantity-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.quantity-section label {
    font-weight: 600;
    color: #1f2937;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.quantity-controls button {
    background: #8b5cf6;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.quantity-controls button:hover {
    background: #7c3aed;
}

.quantity-controls input {
    border: none;
    width: 60px;
    height: 40px;
    text-align: center;
    font-weight: 600;
    background: white;
}

.modal-action-buttons {
    display: flex;
    gap: 15px;
}

.enhanced-add-to-cart-btn {
    flex: 2;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.enhanced-add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

.continue-shopping-btn {
    flex: 1;
    background: transparent;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.continue-shopping-btn:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .enhanced-modal-content {
        max-width: 95%;
        max-height: 95vh;
    }

    .enhanced-modal-body {
        flex-direction: column;
    }

    .modal-media-section {
        max-height: 50vh;
    }

    .modal-product-info {
        padding: 20px;
    }

    .modal-product-title {
        font-size: 22px;
    }

    .ratings-container {
        gap: 15px;
    }
    
    .modal-action-buttons {
        flex-direction: column;
    }
}

/* Old Product Modal (Keep for compatibility) */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 3000;
    display: none;
    overflow-y: auto;
}

.product-modal-content {
    background: var(--white);
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.product-modal-close {
    position: fixed;
    top: 20px;
    left: 20px;
    background: var(--primary-purple);
    border: none;
    font-size: 16px;
    color: var(--white);
    cursor: pointer;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    z-index: 3001;
    transition: background-color 0.3s;
}

.product-modal-close:hover {
    background: var(--primary-purple-dark);
}

.product-modal-body {
    padding: 80px 40px 40px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-modal-image {
    text-align: center;
    margin-bottom: 40px;
}

.product-modal-image img {
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.product-modal-details h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--gray-800);
}

.product-modal-price {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 40px;
}

.product-effects {
    margin-bottom: 30px;
}

.product-effects h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gray-800);
}

.effect-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.effect-icon {
    font-size: 24px;
}

.effect-name {
    font-weight: 600;
    min-width: 80px;
}

.effect-progress {
    flex: 1;
    height: 20px;
    background: var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
}

.effect-progress-bar {
    height: 100%;
    background: var(--primary-purple);
    width: 100%;
}

.effect-percentage {
    font-weight: 600;
    color: var(--primary-purple);
}

.product-ratings {
    margin-bottom: 30px;
}

.rating-section {
    margin-bottom: 30px;
}

.rating-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.rating-section p {
    color: var(--gray-500);
    margin-bottom: 15px;
}

.rating-scale {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.rating-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--gray-500);
}

.rating-number.active {
    background: var(--primary-purple);
    color: var(--white);
}

.rating-scale-high {
    margin-top: 15px;
}

.high-scale {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.high-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    flex: 1;
}

.high-numbers {
    display: flex;
    gap: 15px;
    flex: 2;
    justify-content: center;
}

.product-availability {
    margin-bottom: 30px;
}

.product-availability h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.availability-options {
    display: flex;
    gap: 20px;
}

.availability-option {
    flex: 1;
    background: var(--secondary-purple);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.availability-icon {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.availability-areas {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 5px;
}

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

.btn-continue-shopping {
    flex: 1;
    background: var(--gray-200);
    color: var(--gray-700);
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* Auth Pages */
.auth-body {
    background: var(--gray-100);
    min-height: 100vh;
}

.auth-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

.auth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 92, 246, 0.9);
    z-index: -1;
}

.auth-content {
    background: #0000005e;
    border-radius: 12px;
    padding: 30px;
    max-width: 380px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin: 20px;
}

.auth-logo {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo img {
    height: 60px;
}

.auth-form-logo {
    text-align: center;
    margin-bottom: 20px;
}

.auth-form-logo img {
    height: 45px;
    opacity: 0.9;
}

.auth-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #617085;
}

.auth-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #828d9e;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid var(--gray-200);
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.forgot-link {
    color: #d3e3fd;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-auth-primary {
    width: 100%;
    background: #61856394;
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 20px;
}

.btn-auth-primary:hover {
    background: #3aed7e52;
}

.auth-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gray-200);
}

.auth-divider span {
    background: #0000005e;
    padding: 0 15px;
    color: rgba(255, 255, 255, 0.7);
}

.auth-alternative {
    text-align: center;
    color: var(--white);
}

.auth-alternative a {
    color: #617085;
    text-decoration: none;
    font-weight: 500;
}

.auth-message {
    margin-top: 15px;
    padding: 10px;
}

/* Auth Mobile Responsiveness */
@media (max-width: 768px) {
    .auth-content {
        padding: 25px 20px;
        margin: 15px;
        max-width: none;
    }
    
    .auth-form-logo img {
        height: 40px;
    }
    
    .auth-title {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .auth-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 14px;
    }
    
    .form-group input {
        padding: 12px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* Parallax New Drops Section */
.new-drops-parallax {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ebff 100%);
    padding: 80px 0;
}

.parallax-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 0;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(167, 139, 250, 0.1) 0%, transparent 50%);
}

.parallax-layer:nth-child(2) {
    background: radial-gradient(circle at 60% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 40% 80%, rgba(167, 139, 250, 0.05) 0%, transparent 40%);
}

.parallax-content {
    position: relative;
    z-index: 2;
}

.parallax-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.parallax-product-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.parallax-product-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.2);
}

.parallax-product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(167, 139, 250, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
    padding: 20px;
}

.parallax-product-card:hover .parallax-overlay {
    opacity: 1;
}

.parallax-product-info {
    color: white;
    margin-bottom: 20px;
}

.parallax-product-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.parallax-product-price {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.parallax-product-category {
    font-size: 0.9rem;
    opacity: 0.9;
}

.parallax-add-cart {
    background: white;
    color: var(--primary-purple);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.parallax-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.parallax-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .parallax-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .parallax-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .parallax-product-image {
        height: 220px;
    }
    
    .new-drops-parallax {
        padding: 40px 0;
        min-height: auto;
    }
}
    border-radius: 6px;
    text-align: center;
}

.auth-message.success {
    background: #D1FAE5;
    color: #065F46;
}

.auth-message.error {
    background: #FEE2E2;
    color: #991B1B;
}

.approval-notice {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.approval-notice p {
    margin: 0;
    color: #374151;
    font-size: 14px;
    line-height: 1.5;
}

.approval-notice strong {
    color: #8B5CF6;
}

/* Cart & Checkout Styles */
.cart-page, .checkout-page {
    padding: 40px 0;
    background: var(--gray-50);
    min-height: calc(100vh - 200px);
}

.cart-header, .checkout-header {
    text-align: center;
    margin-bottom: 40px;
}

.cart-header h1, .checkout-header h1 {
    color: var(--primary-purple);
    margin-bottom: 10px;
}

.cart-breadcrumb, .checkout-breadcrumb {
    color: var(--gray-600);
    font-size: 14px;
}

.cart-breadcrumb a, .checkout-breadcrumb a {
    color: var(--primary-purple);
    text-decoration: none;
}

.cart-content, .checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cart Items */
.cart-items-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.cart-item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details h4 {
    color: var(--primary-purple);
    margin-bottom: 8px;
    font-size: 16px;
}

.cart-item-category, .cart-item-variant {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 4px;
}

.cart-item-price {
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 14px;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gray-100);
    border-radius: 6px;
    padding: 5px;
}

.qty-btn {
    background: var(--primary-purple);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--primary-purple-dark);
}

.quantity {
    min-width: 40px;
    text-align: center;
    font-weight: 600;
}

.cart-item-total {
    font-weight: 700;
    color: var(--primary-purple);
    font-size: 16px;
}

.remove-btn {
    background: var(--red-500);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    background: var(--red-600);
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.btn-clear-cart {
    background: var(--red-500);
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

.btn-clear-cart:hover {
    background: var(--red-600);
}

/* Cart Summary */
.cart-summary, .checkout-summary {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.summary-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.summary-card h3 {
    color: var(--primary-purple);
    margin-bottom: 20px;
    text-align: center;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-100);
}

.summary-line.total {
    border-bottom: none;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-purple);
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid var(--primary-purple);
}

.btn-checkout, .btn-place-order {
    width: 100%;
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.2s;
}

.btn-checkout:hover, .btn-place-order:hover {
    background: var(--primary-purple-dark);
}

.btn-checkout:disabled, .btn-place-order:disabled {
    background: var(--gray-400);
    cursor: not-allowed;
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    background: white;
    border-radius: 12px;
    padding: 60px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.empty-cart-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.empty-cart h2 {
    color: var(--primary-purple);
    margin-bottom: 10px;
}

.empty-cart p {
    color: var(--gray-600);
    margin-bottom: 30px;
}

/* Checkout Form */
.checkout-form-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-200);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    color: var(--primary-purple);
    margin-bottom: 20px;
    font-size: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #828d9e;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group input[readonly] {
    background: var(--gray-100);
    color: var(--gray-500);
}

/* Shipping & Payment Methods */
.shipping-methods, .payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shipping-method, .payment-method {
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.shipping-option, .payment-option {
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.shipping-option:hover, .payment-option:hover {
    background: var(--gray-50);
}

.shipping-option input, .payment-option input {
    margin-right: 15px;
    accent-color: var(--primary-purple);
}

.option-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-name {
    font-weight: 600;
    color: var(--primary-purple);
}

.option-cost, .option-type {
    font-weight: 600;
    color: var(--gray-700);
}

.option-description {
    color: var(--gray-600);
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 0;
}

.shipping-method:has(input:checked), .payment-method:has(input:checked) {
    border-color: var(--primary-purple);
    background: rgba(139, 92, 246, 0.02);
}

.no-options {
    text-align: center;
    color: var(--gray-500);
    padding: 20px;
    font-style: italic;
}

/* Order Items */
.order-items {
    margin-bottom: 20px;
}

.order-item {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.order-item-image img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

.order-item-details h5 {
    color: var(--primary-purple);
    margin-bottom: 5px;
    font-size: 14px;
}

.order-item-variant, .order-item-qty {
    color: var(--gray-600);
    font-size: 12px;
    margin-bottom: 2px;
}

.order-item-total {
    font-weight: 600;
    color: var(--primary-purple);
    text-align: right;
}

.checkout-security {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.checkout-security p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 0;
}

/* Payment Instructions */
.payment-instructions {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    padding: 20px;
    color: var(--gray-700);
}

.payment-instructions p {
    margin-bottom: 10px;
}

.payment-instructions p:last-child {
    margin-bottom: 0;
}

/* Loading Overlay */
.checkout-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray-200);
    border-top: 4px solid var(--primary-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Messages */
.cart-message, .checkout-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.cart-message.success, .checkout-message.success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.cart-message.error, .checkout-message.error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.cart-message.info, .checkout-message.info {
    background: #DBEAFE;
    color: #1E40AF;
    border: 1px solid #BFDBFE;
}

/* Order Confirmation Styles */
.order-confirmation-page {
    padding: 40px 0;
    background: var(--gray-50);
    min-height: calc(100vh - 200px);
}

/* Enhanced Payment Information Styling */
.payment-header {
    margin-bottom: 25px;
}

.payment-details {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #e2e8f0;
}

.payment-details h4 {
    color: #7c3aed;
    margin-bottom: 20px;
    font-size: 1.1em;
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
    padding-bottom: 8px;
}

.payment-detail-item {
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.payment-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.payment-detail-item strong {
    color: #4a5568;
    display: block;
    margin-bottom: 5px;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-content {
    color: #2d3748;
    font-weight: 500;
    line-height: 1.5;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    font-family: 'Courier New', monospace;
}

.detail-content a {
    color: #7c3aed;
    text-decoration: none;
    font-family: inherit;
}

.detail-content a:hover {
    text-decoration: underline;
}

.payment-instructions {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #7c3aed;
}

.payment-instructions h4 {
    color: #7c3aed;
    margin-bottom: 20px;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-instructions h4:before {
    content: "💳";
    font-size: 1.1em;
}

.payment-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
}

.step-number {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9em;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.3);
}

.step-content {
    flex: 1;
    line-height: 1.5;
}

.step-content strong {
    color: #2d3748;
    display: block;
    margin-bottom: 5px;
    font-size: 1em;
}

.payment-summary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.2);
}

.payment-amount {
    font-size: 1.4em;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.payment-deadline {
    font-size: 0.95em;
    opacity: 0.9;
    line-height: 1.4;
}

.payment-deadline em {
    font-style: normal;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 5px;
}

.confirmation-header {
    text-align: center;
    margin-bottom: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--green-500);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.confirmation-header h1 {
    color: var(--primary-purple);
    margin-bottom: 10px;
}

.confirmation-message {
    color: var(--gray-600);
    font-size: 16px;
}

.confirmation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.order-summary-card, .shipping-info-card, .payment-info-card, .customer-notes-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.order-summary-card h3, .shipping-info-card h3, .payment-info-card h3, .customer-notes-card h3 {
    color: var(--primary-purple);
    margin-bottom: 20px;
    text-align: center;
}

.order-info {
    margin-bottom: 30px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-100);
}

.order-number {
    font-weight: 600;
    color: var(--primary-purple);
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.pending {
    background: #FEF3C7;
    color: #92400E;
}

.status-badge.processing {
    background: #DBEAFE;
    color: #1E40AF;
}

.status-badge.shipped {
    background: #D1FAE5;
    color: #065F46;
}

.status-badge.delivered {
    background: #D1FAE5;
    color: #065F46;
}

.order-items h4 {
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-size: 16px;
}

.confirmation-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.item-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.item-details h5 {
    color: var(--primary-purple);
    margin-bottom: 5px;
    font-size: 14px;
}

.item-variant, .item-qty {
    color: var(--gray-600);
    font-size: 12px;
    margin-bottom: 2px;
}

.item-total {
    font-weight: 600;
    color: var(--primary-purple);
    text-align: right;
}

.order-totals {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--gray-200);
}

.total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.total-line.grand-total {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-purple);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--primary-purple);
}

.shipping-address {
    color: var(--gray-700);
    line-height: 1.6;
}

.shipping-address p {
    margin-bottom: 5px;
}

.shipping-method {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

/* Customer Notes on Order Confirmation */
.customer-notes-card .notes-list {
    space-y: 15px;
}

.customer-notes-card .note-item {
    background: #f8f7ff;
    border-left: 4px solid var(--primary-purple);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.customer-notes-card .note-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.customer-notes-card .note-type {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
}

.customer-notes-card .note-type-info {
    background: #3b82f6;
}

.customer-notes-card .note-type-warning {
    background: #f59e0b;
}

.customer-notes-card .note-type-important {
    background: #dc2626;
}

.customer-notes-card .note-date {
    font-size: 12px;
    color: var(--gray-500);
}

.customer-notes-card .note-content {
    color: var(--gray-800);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.customer-notes-card .note-author {
    font-size: 12px;
    color: var(--gray-600);
    font-style: italic;
}

.confirmation-actions {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.next-steps h4 {
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.next-steps ul {
    color: var(--gray-600);
    padding-left: 20px;
}

.next-steps li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Mobile Responsiveness for Cart & Checkout */
@media (max-width: 768px) {
    .cart-content, .checkout-content, .confirmation-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cart-item, .order-item, .confirmation-item {
        grid-template-columns: 60px 1fr;
        gap: 15px;
    }
    
    .cart-item-controls {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--gray-200);
    }
    
    .cart-item-total, .order-item-total, .item-total {
        grid-column: 2;
        grid-row: 1;
        text-align: right;
        align-self: start;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .shipping-option, .payment-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .option-details {
        width: 100%;
        margin-left: 25px;
    }
    
    .checkout-loading .loading-content {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .confirmation-header {
        margin-bottom: 30px;
    }
}

/* Hero Search Styles */
.hero-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 10px auto 40px auto;
}

.hero-search-input {
    width: 100%;
    padding: 16px 60px 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 16px;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-search-input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
    background: rgba(255, 255, 255, 0.25);
}

.hero-search-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.hero-search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-purple);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-search-btn:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-50%) scale(1.05);
}

/* Mobile Responsive Search */
@media (max-width: 768px) {
    .hero-search-input {
        padding: 14px 50px 14px 16px;
        font-size: 14px;
    }
    
    .hero-search-btn {
        width: 38px;
        height: 38px;
        right: 4px;
    }
    
    .hero-search-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Form Row Layout */
.form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.form-row .form-group {
    flex: 1;
}

.form-row .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--gray-700);
}

.form-row .form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    min-height: 48px;
    max-height: 40px;
    box-sizing: border-box;
}

.form-row .form-group input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

/* Mobile responsive for form rows */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

/* Custom Elegant Purple Scrollbar */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary-purple), #a855f7);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--primary-purple-dark), #9333ea);
    box-shadow: 0 2px 4px rgba(139, 92, 246, 0.3);
}

::-webkit-scrollbar-corner {
    background: transparent;
}

/* Firefox scrollbar styling */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-purple) rgba(255, 255, 255, 0.1);
}
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .confirmation-header h1 {
        font-size: 24px;
    }
    
    .action-buttons {
        gap: 10px;
    }
}

/* Responsive Design */
@media (min-width: 769px) and (max-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .press-logos {
        gap: 20px;
    }
    
    .press-logo {
        height: 30px;
    }
    
    .product-modal-body {
        padding: 40px 20px 20px 20px;
    }
    
    .availability-options {
        flex-direction: column;
    }
    
    .product-modal-actions {
        flex-direction: column;
    }
    
    .auth-content {
        margin: 20px;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Header Layout Styling */
.header-left {
    display: flex;
    align-items: center;
}

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

.header-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .header-title {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
}

/* Premium Order Modal Styling */
.premium-order-details {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.premium-order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
    color: white;
    padding: 2rem;
    margin: -1.5rem -1.5rem 2rem -1.5rem;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.header-left {
    flex: 1;
}

.order-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.order-date {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
}

.header-right {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}

.premium-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.status-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    animation: pulse 2s infinite;
}

.status-pending .status-icon { background: #F59E0B; }
.status-processing .status-icon { background: #3B82F6; }
.status-shipped .status-icon { background: #8B5CF6; }
.status-delivered .status-icon { background: #10B981; }
.status-cancelled .status-icon { background: #EF4444; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.order-total-highlight {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.total-label {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.total-amount {
    font-size: 1.5rem;
    font-weight: 700;
}

.premium-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.premium-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-purple-light));
}

.premium-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-purple-light), var(--primary-purple));
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

.card-content {
    flex: 1;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 500;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.info-value {
    font-weight: 600;
    color: var(--gray-800);
    text-align: right;
}

.payment-status-pending { color: #F59E0B; }
.payment-status-completed { color: #10B981; }
.payment-status-failed { color: #EF4444; }

.customer-notes {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
}

.notes-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin: 0 0 1rem 0;
}

.note-item {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.note-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.note-type {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.note-type-info { background: #3B82F6; color: white; }
.note-type-warning { background: #F59E0B; color: white; }
.note-type-important { background: #EF4444; color: white; }

.note-date {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.note-content {
    color: var(--gray-700);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.note-author {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-style: italic;
}

.more-notes {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
    padding: 0.5rem;
}

.premium-items-table {
    border-radius: 8px;
    overflow: hidden;
}

.item-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid var(--gray-100);
    transition: background-color 0.2s ease;
}

.item-row:hover {
    background: rgba(139, 92, 246, 0.02);
}

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

.item-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--gray-100);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.item-row:hover .item-image img {
    transform: scale(1.05);
}

.item-main {
    flex: 1;
}

.item-name {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.item-variant {
    color: var(--primary-purple);
    font-size: 0.85rem;
    font-weight: 500;
}

.item-details {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
}

.item-price,
.item-quantity,
.item-total {
    text-align: right;
    min-width: 80px;
}

.item-price {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.item-quantity {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.item-total {
    font-weight: 700;
    color: var(--gray-800);
    font-size: 1rem;
}

.no-items {
    text-align: center;
    color: var(--gray-500);
    padding: 2rem;
    font-style: italic;
}

.address-content {
    padding: 0.5rem 0;
}

.address-lines {
    line-height: 1.6;
}

.address-name {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.address-line {
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.address-country {
    color: var(--gray-600);
    font-weight: 500;
    margin-top: 0.5rem;
}

.premium-order-summary {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(139, 92, 246, 0.02) 100%);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.summary-row:last-child {
    border-bottom: none;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--primary-purple);
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-purple);
}

.summary-row.subtotal,
.summary-row.shipping {
    color: var(--gray-600);
}

/* Responsive Design for Premium Modal */
@media (max-width: 768px) {
    .premium-order-header {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        margin: -1rem -1rem 1.5rem -1rem;
    }
    
    .header-right {
        align-items: flex-start;
    }
    
    .order-total-highlight {
        align-self: stretch;
        align-items: center;
    }
    
    .premium-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .item-details {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .item-price,
    .item-quantity,
    .item-total {
        min-width: 60px;
    }
}

@media (max-width: 480px) {
    .premium-order-header {
        padding: 1rem;
        margin: -0.75rem -0.75rem 1rem -0.75rem;
    }
    
    .order-title {
        font-size: 1.4rem;
    }
    
    .premium-card {
        padding: 1rem;
    }
    
    .item-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .item-image {
        align-self: center;
        width: 80px;
        height: 80px;
    }
    
    .item-details {
        align-self: stretch;
        justify-content: space-between;
    }
}
