/* ===========================
   GLOBAL STYLES & VARIABLES
   =========================== */

:root {
    --primary-purple: #8b5cf6;
    --dark-purple: #6d28d9;
    --deep-purple: #4c1d95;
    --blood-red: #dc2626;
    --dark-red: #991b1b;
    --bg-dark: #0a0014;
    --bg-darker: #050008;
    --bg-card: #1a0033;
    --text-light: #f3e8ff;
    --text-gray: #c4b5fd;
    --text-muted: #a78bfa;
    --border-color: #6d28d9;
    --accent-gold: #fbbf24;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   NAVIGATION
   =========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 0, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: var(--primary-purple);
}

.moon-icon {
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-gray);
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-purple);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Auth Navigation Items */
.auth-nav-item {
    display: flex;
    align-items: center;
}

.nav-auth-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    background: none;
    border-radius: 0;
    color: var(--text-gray) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
}

.nav-auth-link:hover {
    color: var(--text-light) !important;
}

.nav-auth-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: width 0.3s ease;
}

.nav-auth-link:hover::after {
    width: 100%;
}

.auth-icon {
    font-size: 1.1rem;
}

.nav-user-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
}

.nav-user-btn:hover {
    color: var(--text-light);
}

.nav-user-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: width 0.3s ease;
}

.nav-user-btn:hover::after {
    width: 100%;
}

.user-avatar {
    font-size: 1.1rem;
}

.user-name {
    font-weight: 500;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.auth-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.auth-dropdown {
    position: relative;
}

.auth-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    min-width: 200px;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    overflow: hidden;
}

.auth-dropdown-menu.active {
    display: block;
    animation: dropdownFadeIn 0.3s ease;
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--text-gray);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    text-decoration: none;
}

.dropdown-item:hover {
    background: rgba(139, 92, 246, 0.2);
    color: var(--text-light);
}

.dropdown-item span {
    font-size: 1rem;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 0;
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: white;
    border-color: var(--primary-purple);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-purple), var(--deep-purple));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border-color: var(--primary-purple);
}

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

.btn-cart {
    width: 100%;
    padding: 0.6rem 1rem;
    background: var(--bg-card);
    color: var(--primary-purple);
    border: 1px solid var(--primary-purple);
}

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

.btn-youtube {
    background: #ff0000;
    color: white;
    border-color: #ff0000;
}

.btn-youtube:hover {
    background: #cc0000;
    border-color: #cc0000;
}

.btn-youtube span {
    margin-right: 0.5rem;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #0a0014 0%, #1a0033 50%, #0a0014 100%);
    margin-top: 70px;
    padding: 4rem 2rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(109, 40, 217, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-light), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    font-size: 1.5rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===========================
   FEATURED SECTION
   =========================== */

.featured {
    padding: 5rem 0;
    background: var(--bg-darker);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.featured-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
    border-color: var(--primary-purple);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.featured-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.featured-card p {
    color: var(--text-gray);
}

/* ===========================
   SECTION TITLES
   =========================== */

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-style: italic;
}

/* ===========================
   SHOP SECTION
   =========================== */

.shop {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.recommendations {
    padding: 4rem 0;
    background: var(--bg-card);
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.recently-viewed {
    padding: 4rem 0;
    background: var(--bg-darker);
}

.recently-viewed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.shop-search {
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.clear-search-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.clear-search-btn:hover {
    color: var(--primary-purple);
}

.shop-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    background: var(--bg-card);
    color: var(--text-gray);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-purple);
    color: white;
    border-color: var(--primary-purple);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 0, 20, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.btn-quick-view {
    padding: 0.8rem 1.5rem;
    background: var(--primary-purple);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-quick-view:hover {
    background: var(--dark-purple);
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.product-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

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

/* ===========================
   BLOG SECTION
   =========================== */

.blog {
    padding: 5rem 0;
    background: var(--bg-darker);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

.blog-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

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

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

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-purple);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.blog-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.blog-read-more {
    color: var(--primary-purple);
    font-weight: 600;
    font-family: 'Cinzel', serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-read-more:hover {
    color: var(--text-light);
}

.blog-cta {
    text-align: center;
}

/* ===========================
   SHOWS SECTION
   =========================== */

.shows {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.shows-content {
    max-width: 1000px;
    margin: 0 auto;
}

.latest-video {
    margin-bottom: 4rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.video-info p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.video-meta {
    display: flex;
    gap: 2rem;
    color: var(--text-muted);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

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

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.video-card:hover .play-icon {
    background: var(--primary-purple);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card h4 {
    padding: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.video-date {
    padding: 0 1rem 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.subscribe-cta {
    background: linear-gradient(135deg, var(--bg-card), var(--deep-purple));
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
}

.subscribe-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.subscribe-cta p {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ===========================
   ABOUT SECTION
   =========================== */

.about {
    padding: 5rem 0;
    background: var(--bg-darker);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-specialties {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-card);
    border-left: 4px solid var(--primary-purple);
    border-radius: 5px;
}

.about-specialties h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.about-specialties ul {
    list-style: none;
}

.about-specialties li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 1.1rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-specialties li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    padding: 0.6rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-gray);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-icon:hover {
    background: var(--primary-purple);
    color: white;
    border-color: var(--primary-purple);
    transform: translateY(-3px);
}

/* ===========================
   NEWSLETTER SECTION
   =========================== */

.newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--deep-purple), var(--bg-card));
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.newsletter-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    background: var(--bg-dark);
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

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

/* ===========================
   FOOTER
   =========================== */

.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1.5rem;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.footer-col p {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-tagline {
    margin-top: 1rem;
    font-style: italic;
    color: var(--text-muted);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-muted);
}

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

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 0, 20, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .shop-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    /* Auth Navigation Mobile Styles */
    .auth-nav-item {
        width: 100%;
        justify-content: center;
    }

    .nav-auth-link,
    .nav-user-btn {
        width: 80%;
        justify-content: center;
    }

    .auth-dropdown-menu {
        position: static;
        margin-top: 0.5rem;
        width: 80%;
        left: 50%;
        transform: translateX(-50%);
    }

    .auth-dropdown-menu.active {
        position: static;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .nav-brand h1 {
        font-size: 1.2rem;
    }

    .featured-grid,
    .shop-grid,
    .blog-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   SHOPPING CART MODAL
   ========================================== */

/* Cart Icon in Navigation */
.cart-nav-item {
    position: relative;
}

.cart-icon-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0.5rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cart-icon-btn:hover {
    color: var(--text-light);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-purple);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    animation: fadeIn 0.3s ease;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.cart-modal-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 450px;
    max-width: 90vw;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    animation: slideInRight 0.3s ease;
    border-left: 2px solid var(--primary-color);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.cart-modal-header {
    padding: 2rem;
    border-bottom: 2px solid rgba(167, 139, 250, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
}

.cart-modal-header h2 {
    font-family: 'Cinzel', serif;
    color: var(--text-light);
    font-size: 1.8rem;
    margin: 0;
}

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

.cart-modal-close:hover {
    background: rgba(167, 139, 250, 0.2);
    transform: rotate(90deg);
    color: var(--accent-color);
}

.cart-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-modal-body::-webkit-scrollbar {
    width: 8px;
}

.cart-modal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.cart-modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.cart-modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

.cart-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--text-gray);
}

.cart-empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-empty h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.cart-empty p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cart-item-modal {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

.cart-item-modal:hover {
    border-color: var(--primary-color);
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(167, 139, 250, 0.3);
}

.cart-item-image-modal {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(167, 139, 250, 0.3);
}

.cart-item-image-modal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details-modal {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-name-modal {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    margin: 0;
}

.cart-item-price-modal {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Cinzel', serif;
}

.cart-item-quantity-modal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-quantity-modal button {
    background: rgba(167, 139, 250, 0.2);
    border: 1px solid var(--primary-color);
    color: var(--text-light);
    width: 25px;
    height: 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cart-item-quantity-modal button:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.cart-item-quantity-modal span {
    color: var(--text-light);
    min-width: 30px;
    text-align: center;
    font-weight: bold;
}

.cart-item-remove-modal {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
    padding: 0;
    margin-top: 0.25rem;
    transition: color 0.2s ease;
}

.cart-item-remove-modal:hover {
    color: #ef4444;
}

.cart-modal-footer {
    padding: 1.5rem;
    border-top: 2px solid rgba(167, 139, 250, 0.2);
    background: rgba(0, 0, 0, 0.3);
}

.cart-total-modal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(167, 139, 250, 0.1);
    border-radius: 8px;
}

.cart-total-modal span:first-child {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 600;
}

.cart-total-modal span:last-child {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.cart-checkout-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(167, 139, 250, 0.4);
}

.cart-checkout-btn:active {
    transform: translateY(0);
}

.cart-checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cart-modal-content {
        width: 100%;
        max-width: 100%;
    }
    
    .cart-item-modal {
        flex-direction: column;
    }
    
    .cart-item-image-modal {
        width: 100%;
        height: 150px;
    }
}
