/* ZANTRA PREMIUM THEME OVERRIDES (v2.0) */

/* 1. Hero Typography (Flashy & Big) */
.hero-title {
    font-size: 2.75rem;
    line-height: 1.1;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
        /* Massive on desktop */
        line-height: 1.05;
    }
}

/* 2. Gradient Text (Neon Effect) */
.text-gradient {
    background: linear-gradient(135deg, #c084fc 0%, #ec4899 50%, #fb923c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* 3. Glassmorphism Cards (Premium Look) */
.glass-panel,
.feature-card,
.bg-gray-800\/50,
.bg-white\/5 {
    background: rgba(30, 41, 59, 0.4) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2) !important;
    border-radius: 1rem !important;
    transition: all 0.3s ease !important;
}

.glass-panel:hover,
.feature-card:hover,
.bg-gray-800\/50:hover,
.bg-white\/5:hover {
    background: rgba(30, 41, 59, 0.7) !important;
    transform: translateY(-5px) !important;
    border-color: #4da6ff !important;
    /* Primary Color Border */
    box-shadow: 0 15px 40px 0 rgba(77, 166, 255, 0.15) !important;
}

/* 4. Buttons (Gradients) */
.btn-primary {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%) !important;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4) !important;
    border: none !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6) !important;
}

/* 5. Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.animate-float {
    animation: float 5s ease-in-out infinite;
}

/* 6. Video Facade Styles */
.aspect-video {
    aspect-ratio: 16 / 9;
}

.scale-\[1\.02\]:hover {
    transform: scale(1.02);
}

/* 7. Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4da6ff;
}

/* 8. Success Button */
.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4) !important;
}

.btn-success:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6) !important;
    transform: translateY(-2px);
}

/* 9. Product Like Button */
.like-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.like-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

.like-btn.liked {
    color: #ef4444;
    background: white;
}

.like-btn.liked i {
    animation: heartBeat 0.3s ease-in-out;
}

/* 10. Product Share Button */
.share-btn {
    position: absolute;
    top: 1rem;
    right: 3.75rem; /* Next to like button */
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.share-btn:hover {
    transform: scale(1.1);
    background: var(--primary);
    border-color: white;
    box-shadow: 0 0 15px var(--primary);
}

.share-btn i {
    font-size: 0.9rem;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* 11. Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background: var(--primary, #4da6ff);
    border-color: white;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(77, 166, 255, 0.4);
}

/* 12. Table Enhancement */
table {
    border-spacing: 0;
    border-collapse: separate;
}

thead th:first-child { border-top-left-radius: 1rem; }
thead th:last-child { border-top-right-radius: 1rem; }
tbody tr:last-child td:first-child { border-bottom-left-radius: 1rem; }
tbody tr:last-child td:last-child { border-bottom-right-radius: 1rem; }

/* 13. Mobile Menu Customization */
.mobile-menu-drawer .drawer-content {
    background: #05000d !important;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-nav-link {
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    color: #94a3b8;
    font-weight: 500;
}

.drawer-nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding-left: 1.5rem;
}

/* 14. Responsive Utils */
@media (max-width: 640px) {
    .container-premium {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .back-to-top-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }
}

/* 15. Data Animations */
@keyframes grow-up {
    0% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
    100% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
}

.animate-grow-up {
    animation: grow-up 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* 16. Pagination & Search */
.btn-pagination {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-pagination:hover {
    background: var(--primary, #4da6ff);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(77, 166, 255, 0.3);
}

#search-stores-section input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

#search-stores-section input:focus {
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

