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

/* Hide all scrollbars globally */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;   /* prevent horizontal scroll */
    overflow-y: auto;     /* vertical scroll allowed */
    scrollbar-width: none;   /* Firefox */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;   /* Chrome, Safari, Edge */
}

/* When mobile menu is open, disable page scroll to avoid page scrollbar */
body.no-scroll {
    overflow: hidden;
}

/* Hide scrollbar for the mobile nav panel itself */
.nav-menu {
    -ms-overflow-style: none;       /* IE/old Edge */
    scrollbar-width: none;          /* Firefox */
}
.nav-menu::-webkit-scrollbar {
    display: none;                  /* Chrome/Safari/Edge */
}

/* Hide scrollbar for the Shop dropdown while keeping it scrollable */
.dropdown-menu {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* smooth iOS scroll */
    -ms-overflow-style: none;          /* IE/old Edge */
    scrollbar-width: none;             /* Firefox */
}
.dropdown-menu::-webkit-scrollbar {
    display: none;                     /* Chrome/Safari/Edge */
}

body {
    font-family: 'Exo 2', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    scroll-behavior: smooth;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 0;
    height: 60px;
    border-bottom: 1px solid rgba(255, 0, 100, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
    transform: translateY(-12px);
}

.nav-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    gap: 25px;
    margin-right: 15px;
}

.nav-logo-img {
    max-height: 40px;
    width: auto;
    border-radius: 50%;
    border: 2px solid #ff0066;
    box-shadow: 0 0 20px rgba(255, 0, 102, 0.5);
}

.nav-logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.3rem;
    background: linear-gradient(45deg, #ff0066, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    gap: 25px;
    margin-right: 15px;
    transform: translateY(-10px);
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff0066;
    text-shadow: 0 0 10px rgba(255, 0, 102, 0.8);
}

/* Logout button in navbar */
.nav-logout-btn {
    color: #ffffff;
    background: none;
    border: none;
    font-weight: 400;
    font-size: inherit;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 0;
}

.nav-logout-btn:hover {
    color: #ff0066;
    text-shadow: 0 0 10px rgba(255, 0, 102, 0.8);
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
}

.shop-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.98) 0%, 
        rgba(20, 5, 15, 0.98) 50%, 
        rgba(5, 10, 25, 0.98) 100%);
    border: 2px solid rgba(255, 0, 102, 0.6);
    border-radius: 15px;
    padding: 20px;
    min-width: 400px;
    max-height: 300px;
    overflow-y: auto;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(255, 0, 102, 0.4),
        0 0 80px rgba(0, 102, 255, 0.2),
        inset 0 0 30px rgba(255, 0, 102, 0.1);
    backdrop-filter: blur(15px);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
}

/* Hide scrollbars inside dropdown too */
.dropdown-menu {
    overflow-y: auto;              /* still scrollable */
    scrollbar-width: none;         /* Firefox */
    -webkit-overflow-scrolling: touch; /* smooth mobile scroll */
}

.dropdown-menu::-webkit-scrollbar {
    display: none;                 /* Chrome, Safari, Edge */
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}


.dropdown-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 25px;
}

.dropdown-item {
    color: #cccccc;
    text-decoration: none;
    padding: 14px 18px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.8px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

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

.dropdown-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 0, 102, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.dropdown-item:hover {
    color: #ffffff;
    background: linear-gradient(135deg, 
        rgba(255, 0, 102, 0.2), 
        rgba(0, 102, 255, 0.2));
    border-color: rgba(255, 0, 102, 0.8);
    text-shadow: 
        0 0 15px rgba(255, 0, 102, 1),
        0 0 25px rgba(0, 102, 255, 0.6);
    transform: translateX(8px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(255, 0, 102, 0.4),
        0 0 30px rgba(255, 0, 102, 0.6),
        0 0 50px rgba(0, 102, 255, 0.3),
        inset 0 0 20px rgba(255, 0, 102, 0.15);
    animation: pulseGlow 1.5s ease-in-out infinite alternate;
}

.dropdown-item:hover::before {
    left: 100%;
}

.dropdown-item:hover::after {
    width: 120px;
    height: 120px;
}

.cart-icon {
    position: relative;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    transform: translateY(-10px);
}

.cart-icon:hover {
    transform: translateY(-10px) scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff0066;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    transform: translateY(-10px);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 0, 102, 0.2);
    box-shadow: 0 0 15px rgba(255, 0, 102, 0.5);
    transform: translateY(-10px);
}

.hamburger {
    font-size: 1.5rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .hamburger {
    color: #ff0066;
    text-shadow: 0 0 10px rgba(255, 0, 102, 0.8);
}

/* Mobile Menu Animation */
.nav-menu.mobile-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

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

#fireworks-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    transform: translateY(5px);
}

.hero-logo-container {
    margin-bottom: 30px;
}

.hero-logo {
    width: 150px;
    height: 150px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 4px solid #ff0066;
    box-shadow:
        0 0 30px rgba(255, 0, 102, 0.8),
        0 0 60px rgba(255, 0, 102, 0.4),
        inset 0 0 30px rgba(255, 0, 102, 0.2);
    animation: logoGlow 3s ease-in-out infinite alternate, logoPulse 4s ease-in-out infinite;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff0066, #0066ff, #ff0066);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 0, 102, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #cccccc;
    font-weight: 300;
}

.cta-button {
    position: relative;
    background: linear-gradient(45deg, #ff0066, #0066ff);
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 0, 102, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(255, 0, 102, 0.6),
        0 0 30px rgba(255, 0, 102, 0.8),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 0;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Section Styles */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #ff0066, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about {
    padding: 100px 0;
    position: relative;
}

.about-content {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 102, 0.3);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 0 40px rgba(255, 0, 102, 0.2);
}

.about-text-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Pyro Heads Section */
.pyro-heads-section {
    margin-top: 4rem;
    padding: 3rem 0;
    border-top: 2px solid rgba(255, 20, 147, 0.3);
}

.pyro-heads-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.pyro-head-card {
    text-align: center;
    position: relative;
}

.character-frame {
    position: relative;
    display: inline-block;
    padding: 10px;
    border: 3px solid;
    border-image: linear-gradient(45deg, #ff1493, #00ffff, #ff6b35, #ff1493) 1;
    border-radius: 20px;
    background: linear-gradient(45deg, rgba(255, 20, 147, 0.1), rgba(0, 255, 255, 0.1));
    box-shadow: 
        0 0 20px rgba(255, 20, 147, 0.5),
        inset 0 0 20px rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.character-frame:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 30px rgba(255, 20, 147, 0.8),
        0 0 50px rgba(0, 255, 255, 0.6),
        inset 0 0 30px rgba(255, 107, 53, 0.3);
    border-image: linear-gradient(45deg, #ff1493, #00ffff, #ff6b35, #ffff00, #ff1493) 1;
}

.character-image {
    width: 250px;
    height: 250px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.spark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.character-frame:hover .spark-overlay {
    opacity: 1;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.character-name {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 1rem 0 0.5rem;
    background: linear-gradient(45deg, #ff1493, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.character-title {
    font-size: 1.2rem;
    color: #ff6b35;
    font-style: italic;
    margin: 0;
}

/* Background Character Watermarks */
.gallery-section {
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 5%;
    width: 300px;
    height: 300px;
    background-image: url('images/Princess.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

.shop-section {
    position: relative;
}

.shop-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    width: 300px;
    height: 300px;
    background-image: url('images/pyrohead.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

/* Ensure content stays above watermarks */
.gallery-grid,
.shop-grid {
    position: relative;
    z-index: 1;
}

.section-content {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.about-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.sparks-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 60px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    flex: 1;
    align-content: start;
}

.gallery-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.gallery-empty-state p {
    margin: 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.gallery-item:hover {
    transform: scale(1.08);
    border-color: #ff0066;
    box-shadow: 
        0 0 40px rgba(255, 0, 102, 0.8),
        0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.gallery-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 0, 102, 0.8), rgba(0, 102, 255, 0.8));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay::before {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Shop Section */
.shop {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 60px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    flex: 1;
    transition: opacity 0.2s ease;
    align-content: start;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.no-products h3 {
    font-family: 'Orbitron', monospace;
    color: #ff0066;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.no-products p {
    color: #cccccc;
    font-size: 1.1rem;
    margin: 0;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 102, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 25px 50px rgba(255, 0, 102, 0.4),
        0 0 30px rgba(255, 0, 102, 0.6);
    border-color: #ff0066;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 0, 102, 0.1), rgba(0, 102, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

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

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.product-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ff0066;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 0, 102, 0.5);
}

.product-description {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.product-price {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #0066ff;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 15px rgba(0, 102, 255, 0.6);
}

.add-to-cart-btn {
    background: linear-gradient(45deg, #ff0066, #0066ff);
    border: none;
    padding: 12px 30px;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 102, 0.4);
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 102, 0.3);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 40px rgba(255, 0, 102, 0.2);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 0, 102, 0.3);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff0066;
    box-shadow: 
        0 0 25px rgba(255, 0, 102, 0.6),
        inset 0 0 15px rgba(255, 0, 102, 0.1);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #cccccc;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #ff0066, #0066ff);
    border: none;
    padding: 18px;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.4);
}

.button-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Footer */
.footer {
    background: #000000;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 0, 102, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 10px 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ff0066;
    box-shadow: 0 0 15px rgba(255, 0, 102, 0.5);
}

.footer-logo span {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff0066, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links {
    display: flex;
    gap: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 0, 102, 0.4);
    color: #ffffff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 0 15px rgba(255, 0, 102, 0.3);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-instagram:hover {
    background: #E1306C;
    border-color: #E1306C;
    box-shadow: 0 0 25px rgba(225, 48, 108, 0.8), 0 8px 20px rgba(225, 48, 108, 0.4);
    color: #ffffff;
}

.social-facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 0 25px rgba(24, 119, 242, 0.8), 0 8px 20px rgba(24, 119, 242, 0.4);
    color: #ffffff;
}

.social-youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.8), 0 8px 20px rgba(255, 0, 0, 0.4);
    color: #ffffff;
}

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

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    cursor: pointer;
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    max-width: 90%;
    max-height: 90%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active .lightbox-content {
    transform: translate(-50%, -50%) scale(1);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.lightbox-close:hover {
    color: #ff0066;
    text-shadow: 0 0 15px rgba(255, 0, 102, 1);
    transform: scale(1.2);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    box-shadow: 
        0 0 60px rgba(255, 0, 102, 0.6),
        0 0 120px rgba(0, 102, 255, 0.3);
}

/* Utility Classes */
.fade-in-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Location & Hours Section */
.location {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.location-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin: -40px 0 60px;
    font-weight: 300;
}

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

.location-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 102, 0.3);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 102, 0.3);
    border-color: #ff0066;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.05), rgba(0, 102, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.location-card:hover::before {
    opacity: 1;
}

.location-card-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #ff0066;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 0, 102, 0.5);
}

.trust-message {
    background: rgba(255, 0, 102, 0.1);
    border-left: 3px solid #ff0066;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.trust-message p {
    margin: 0;
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.address-block {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.address-icon {
    font-size: 2rem;
    line-height: 1;
}

.address-content {
    flex: 1;
}

.address-text {
    margin-bottom: 15px;
}

.address-line {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
}

.address-line.store-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #ff0066;
    text-shadow: 0 0 8px rgba(255, 0, 102, 0.4);
}

.btn-copy {
    background: rgba(255, 0, 102, 0.2);
    border: 1px solid #ff0066;
    color: #ff0066;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    background: rgba(255, 0, 102, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 102, 0.4);
}

.btn-copy.copied {
    background: rgba(76, 175, 80, 0.3);
    border-color: #4caf50;
    color: #4caf50;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #ff0066;
    text-shadow: 0 0 10px rgba(255, 0, 102, 0.6);
}

.directions-cta {
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.btn-directions {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.hours-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-badge.open {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4caf50;
    color: #4caf50;
}

.status-badge.closed {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid #f44336;
    color: #f44336;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-badge.open .status-dot {
    background: #4caf50;
    animation: statusPulse 2s infinite;
}

.status-badge.closed .status-dot {
    background: #f44336;
}

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

.hours-table {
    width: 100%;
    border-collapse: collapse;
    position: relative;
    z-index: 1;
}

.hours-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hours-table tr.today {
    background: rgba(255, 0, 102, 0.15);
    border-left: 3px solid #ff0066;
}

.hours-table td {
    padding: 12px 15px;
    color: #ffffff;
}

.day-name {
    font-weight: 600;
    color: #ff0066;
}

.day-hours {
    text-align: right;
    color: #cccccc;
}

.hours-table tr.today .day-name {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 0, 102, 0.6);
}

.hours-note {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    z-index: 1;
}

.hours-note small {
    color: #888888;
    font-style: italic;
}

.map-card {
    grid-column: 1 / -1;
}

.map-container {
    display: block;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 0, 102, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-container:hover .map-placeholder {
    border-color: #ff0066;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 0, 102, 0.4);
}

.map-preview {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 0, 102, 0.3);
}

.map-container:hover .map-overlay {
    background: rgba(255, 0, 102, 0.9);
    border-color: #ff0066;
}

.map-icon {
    font-size: 3rem;
    margin-bottom: 8px;
}

.map-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.safety-card {
    grid-column: 1 / -1;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.safety-item {
    text-align: center;
    padding: 25px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.safety-item:hover {
    transform: translateY(-5px);
    border-color: #ff0066;
    background: rgba(255, 0, 102, 0.1);
    box-shadow: 0 8px 20px rgba(255, 0, 102, 0.3);
}

.safety-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.safety-item h4 {
    font-size: 1.1rem;
    color: #ff0066;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
}

.safety-item p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}