/* Frontend CSS - Public website styles */

body {
    background: linear-gradient(135deg, var(--thunder-yellow) 0%, var(--thunder-gold) 100%);
    padding-top: 0; /* Will be adjusted by JS */
}

/* Animated background elements */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(246, 194, 67, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(246, 194, 67, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Navigation Styles */
.navbar {
    /* background: rgba(246, 194, 67, 0.9) !important; */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    padding: 15px 0;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(246, 194, 67, 0.95) !important;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); */
    padding: 5px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--thunder-black) !important;
    transition: transform 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--thunder-black) !important;
    font-weight: 550;
    margin: 0 20px;
    text-transform: uppercase;
    font-size: 1.3rem;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -8px;
    left: 50%;
    background: linear-gradient(90deg, var(--thunder-black), var(--thunder-dark));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::before {
    width: 90%;
}

.navbar-nav .nav-link:hover {
    color: var(--thunder-dark) !important;
    transform: translateY(-2px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Sticky navbar adjustments */
.sticky-top {
    position: sticky !important;
    top: 0 !important;
}

/* Smooth navbar transitions */
.navbar-collapse {
    background: rgba(246, 194, 67, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    margin-top: 10px;
    padding: 10px;
}

@media (min-width: 768px) {
    .navbar-collapse {
        background: transparent;
        backdrop-filter: none;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
    }
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section .container {
    position: relative;
    z-index: 10;
}

.hero-section .col-lg-6:first-child {
    z-index: 15;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top left, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(246, 194, 67, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 900;
    color: var(--thunder-black);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 20;
}

.hero-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--thunder-black), transparent);
    border-radius: 2px;
}

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

.hero-subtitle-thai {
    font-size: 2.2rem;
    color: var(--thunder-black);
    margin-bottom: 50px;
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.btn-group-thai {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-outline {
    background: linear-gradient(135deg, transparent, rgba(26, 26, 26, 0.05));
    color: var(--thunder-black);
    border: 3px solid var(--thunder-black);
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 26, 26, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.btn-outline:hover {
    background: var(--thunder-black);
    color: var(--thunder-yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.shop-btn {
    background: linear-gradient(135deg, var(--thunder-black) 0%, var(--thunder-dark) 100%);
    color: var(--thunder-yellow);
    padding: 13px 35px;
    font-size: 1..85rem;
    font-weight: 600;
    text-transform: uppercase;
    border: 3px solid var(--thunder-black);
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.shop-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(246, 194, 67, 0.3), transparent);
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.shop-btn:hover::before {
    width: 300px;
    height: 300px;
}

.shop-btn:hover {
    background: linear-gradient(135deg, var(--thunder-gray) 0%, var(--thunder-black) 100%);
    color: var(--thunder-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Vape Device Visualization */
.vape-container {
    position: absolute;
    height: 650px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    z-index: 1;
}

.vape-device {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    width: 90px;
    height: 450px;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    opacity: 0.7;
}

.vape-body {
    width: 100%;
    height: 85%;
    background: linear-gradient(180deg, var(--thunder-yellow) 0%, #f0b841 50%, var(--thunder-gold) 100%);
    border-radius: 45px 45px 20px 20px;
    position: relative;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 2px 10px rgba(255, 255, 255, 0.2),
        inset 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.vape-top {
    width: 70%;
    height: 15%;
    background: linear-gradient(180deg, var(--thunder-black) 0%, var(--thunder-dark) 100%);
    border-radius: 30px 30px 15px 15px;
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.vape-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--thunder-black);
    text-align: center;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.lightning-bolt {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    color: var(--thunder-black);
    text-shadow: 0 0 10px rgba(246, 194, 67, 0.5);
    animation: pulse 2s infinite;
}

/* Products Section */
.products-section {
    background: linear-gradient(180deg, var(--thunder-black) 0%, var(--thunder-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 20%, rgba(246, 194, 67, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(246, 194, 67, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.products-title {
    color: var(--thunder-yellow);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(246, 194, 67, 0.3);
    position: relative;
}

.products-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--thunder-yellow), transparent);
    border-radius: 2px;
}

/* Horizontal scrolling container */
.products-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    margin: 0 -15px;
    /* Enable smooth scrolling on iOS */
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar on desktop but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.products-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.products-wrapper {
    display: flex;
    gap: 30px;
    padding: 0 15px;
    min-width: max-content;
}

.product-card {
    background: linear-gradient(135deg, var(--thunder-gray) 0%, #282828 50%, #1f1f1f 100%);
    border-radius: 0.5rem;
    padding: 40px 25px;
    text-align: center;
    flex-shrink: 0;
    width: 280px;
    min-width: 280px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(246, 194, 67, 0.1);
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(246, 194, 67, 0.1), transparent);
    transition: left 0.6s ease;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(246, 194, 67, 0.2);
    border-color: rgba(246, 194, 67, 0.3);
}

.product-image {
    width: 230px;
    height: 350px;
    background: linear-gradient(180deg, var(--thunder-black) 0%, var(--thunder-gray) 50%, #444 100%);
    /* border-radius: 45px 45px 20px 20px; */
    border-radius: 0.5rem;
    margin: 0 auto 25px;
    position: relative;
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.6),
        inset 0 2px 5px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.product-card:hover .product-image {
    transform: scale(1.05);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(246, 194, 67, 0.3);
}

/* .product-image::before {
    content: "THUNDER";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    color: var(--thunder-yellow);
    font-size: 0.65rem;
    font-weight: 700;
    font-family: "Kanit", sans-serif;
    text-shadow: 0 0 5px rgba(246, 194, 67, 0.5);
} */

/* .product-image::after {
    content: "\f0e7";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--thunder-yellow);
    font-size: 1.1rem;
    text-shadow: 0 0 8px rgba(246, 194, 67, 0.5);
    animation: sparkle 2s infinite alternate;
} */

.product-name {
    color: var(--thunder-yellow);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(246, 194, 67, 0.3);
}

.product-price {
    color: var(--thunder-gold);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.order-btn {
    background: linear-gradient(135deg, var(--thunder-yellow) 0%, var(--thunder-gold) 100%);
    color: var(--thunder-black);
    padding: 15px 40px;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 15px rgba(246, 194, 67, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.order-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.order-btn:hover::before {
    width: 200px;
    height: 200px;
}

.order-btn:hover {
    background: linear-gradient(135deg, var(--thunder-gold) 0%, #ffe55c 100%);
    color: var(--thunder-black);
    transform: translateY(-3px);
    box-shadow:
        0 8px 25px rgba(246, 194, 67, 0.4),
        0 0 20px rgba(246, 194, 67, 0.3);
}

/* Product Detail Contact Buttons */
.contact-section {
    background: rgba(246, 194, 67, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(246, 194, 67, 0.3);
}

.contact-section h5 {
    color: var(--thunder-black);
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-buttons .btn {
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
}

.contact-buttons .btn i {
    margin-right: 8px;
}

.contact-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-thunder {
    background: linear-gradient(135deg, var(--thunder-yellow), var(--thunder-gold));
    color: var(--thunder-black);
}

.btn-thunder:hover {
    background: linear-gradient(135deg, var(--thunder-gold), var(--thunder-yellow));
    color: var(--thunder-black);
}

/* Responsive contact buttons */
@media (max-width: 576px) {
    .contact-buttons {
        flex-direction: column;
    }

    .contact-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Lightning Decorations */
.lightning-decoration {
    position: absolute;
    color: var(--thunder-yellow);
    font-size: 2.5rem;
    opacity: 0.15;
    text-shadow: 0 0 20px rgba(246, 194, 67, 0.5);
    animation: float 3s ease-in-out infinite;
}

.lightning-decoration.top-left {
    top: 30px;
    left: 30px;
    --rotation: -20deg;
    animation-delay: 0s;
}

.lightning-decoration.top-right {
    top: 30px;
    right: 30px;
    --rotation: 20deg;
    animation-delay: 0.5s;
}

.lightning-decoration.bottom-left {
    bottom: 30px;
    left: 30px;
    --rotation: 20deg;
    animation-delay: 1s;
}

.lightning-decoration.bottom-right {
    bottom: 30px;
    right: 30px;
    --rotation: -20deg;
    animation-delay: 1.5s;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--thunder-yellow) 0%, var(--thunder-gold) 50%, #ffe55c 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 30%, rgba(26, 26, 26, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(26, 26, 26, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-title {
    color: var(--thunder-black);
    font-size: 3.8rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.contact-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--thunder-black), transparent);
    border-radius: 2px;
}

/* Enhanced Footer Visual Effects */
.thunder-footer {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    background-attachment: fixed;
}

/* Add subtle pattern overlay */
.thunder-footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(246, 194, 67, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.03) 0%, transparent 25%);
    pointer-events: none;
    z-index: 1;
}

.thunder-footer .container {
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle-thai {
        font-size: 1.8rem;
    }

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

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

    .btn-group-thai {
        flex-direction: column;
        align-items: center;
    }

    .vape-container {
        display: none;
    }

    .category-buttons-wrapper {
        margin: 0 -15px;
    }

    .category-buttons {
        padding: 10px 15px;
        gap: 8px;
    }

    .category-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        min-width: max-content;
    }

    .category-btn i {
        margin-right: 6px;
        font-size: 0.7rem;
    }
}

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

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

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

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

    .category-buttons {
        gap: 6px;
    }

    .category-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

/* Footer Styles */
.thunder-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.thunder-footer::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, var(--thunder-yellow) 0%, var(--thunder-gold) 100%);
    clip-path: polygon(0 50%, 100% 100%, 0 100%);
    z-index: 1;
}

.thunder-footer .container {
    position: relative;
    z-index: 2;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--thunder-yellow) 0%, var(--thunder-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    animation: pulse 2s infinite;
}

.footer-logo-icon i {
    font-size: 24px;
    color: var(--thunder-black);
}

.footer-brand-text {
    color: var(--thunder-yellow);
    font-weight: 900;
    font-size: 1.8rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 15px;
}

.footer-title {
    color: var(--thunder-yellow);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--thunder-yellow), var(--thunder-gold));
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: var(--thunder-yellow);
    transform: translateX(5px);
}

.footer-links a.view-all {
    color: var(--thunder-yellow);
    font-weight: 600;
}

.footer-contact {
    margin-top: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 8px 0;
}

.contact-item i {
    width: 20px;
    color: var(--thunder-yellow);
    margin-right: 12px;
    font-size: 1.1rem;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--thunder-yellow);
}

.contact-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--thunder-yellow);
    color: var(--thunder-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(246, 194, 67, 0.3);
}

.social-link i {
    font-size: 1.1rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .thunder-footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }

    .footer-brand-text {
        font-size: 1.5rem;
    }

    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .footer-social {
        justify-content: center;
        margin-top: 20px;
    }

    .footer-copyright {
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .thunder-footer::before {
        top: -30px;
        height: 60px;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 40px;
    }

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

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

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

    .contact-item {
        justify-content: center;
    }
}

/* Additional Footer Enhancements */
@keyframes footerFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thunder-footer .row > div {
    animation: footerFadeInUp 0.6s ease-out;
}

.thunder-footer .row > div:nth-child(2) {
    animation-delay: 0.1s;
}

.thunder-footer .row > div:nth-child(3) {
    animation-delay: 0.2s;
}

.thunder-footer .row > div:nth-child(4) {
    animation-delay: 0.3s;
}

/* Lightning effect for footer brand */
@keyframes footerLightning {
    0%,
    100% {
        box-shadow: 0 0 5px var(--thunder-yellow);
    }
    50% {
        box-shadow:
            0 0 20px var(--thunder-yellow),
            0 0 30px var(--thunder-gold);
    }
}

.footer-logo-icon:hover {
    animation: footerLightning 1s ease-in-out;
}

/* Hover effects for contact items */
.contact-item {
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 12px 8px;
}

.contact-item:hover {
    background: rgba(246, 194, 67, 0.1);
    transform: translateX(5px);
}

/* Enhanced footer links hover effect */
.footer-links a::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--thunder-yellow), var(--thunder-gold));
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

/* Glowing effect for social links */
.social-link:hover {
    box-shadow:
        0 4px 15px rgba(246, 194, 67, 0.4),
        0 0 0 3px rgba(246, 194, 67, 0.2);
}

/* Loading effect for footer */
.thunder-footer {
    opacity: 0;
    animation: footerLoad 1s ease-out 0.5s forwards;
}

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

/* View More Featured Products Button */
.view-more-btn {
    background: linear-gradient(135deg, rgba(246, 194, 67, 0.9) 0%, rgba(255, 215, 0, 0.9) 100%);
    color: var(--thunder-black);
    padding: 18px 50px;
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 6px 20px rgba(246, 194, 67, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.view-more-btn:hover::before {
    left: 100%;
}

.view-more-btn:hover {
    background: linear-gradient(135deg, var(--thunder-yellow) 0%, var(--thunder-gold) 100%);
    color: var(--thunder-black);
    transform: translateY(-3px) scale(1.05);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 10px 30px rgba(246, 194, 67, 0.5),
        0 0 30px rgba(246, 194, 67, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.view-more-btn i {
    transition: transform 0.3s ease;
}

.view-more-btn:hover i.fa-arrow-right {
    transform: translateX(5px);
}

.view-more-btn:hover i.fa-star {
    transform: rotate(180deg);
}

/* ===========================================
   PRODUCTS PAGE STYLES
   =========================================== */

/* Products Hero Section */
.products-hero {
    background: linear-gradient(135deg, rgba(246, 194, 67, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    padding: 60px 0 40px;
    margin-bottom: 0;
    border-radius: 0 0 30px 30px;
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(246, 194, 67, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.05) 0%, transparent 25%);
    pointer-events: none;
    z-index: 1;
}

.products-hero .container {
    position: relative;
    z-index: 2;
}

.products-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--thunder-black);
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.products-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Category Filter Section */
.category-filter {
    background: #ffffff;
    padding: 30px 10px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: -20px 0 40px;
    position: relative;
    z-index: 3;
}

.filter-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--thunder-black);
    margin-bottom: 20px;
    text-align: center;
}

.category-buttons-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.category-buttons {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    padding: 10px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--thunder-yellow) transparent;
}

.category-buttons::-webkit-scrollbar {
    height: 4px;
}

.category-buttons::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.category-buttons::-webkit-scrollbar-thumb {
    background: var(--thunder-yellow);
    border-radius: 2px;
    transition: background 0.3s ease;
}

.category-buttons::-webkit-scrollbar-thumb:hover {
    background: var(--thunder-gold);
}

.category-btn {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e9ecef;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: max-content;
}

.category-btn i {
    margin-right: 8px;
    font-size: 0.8rem;
}

.category-btn:hover {
    background: var(--thunder-yellow);
    color: var(--thunder-black);
    border-color: var(--thunder-yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(246, 194, 67, 0.3);
    text-decoration: none;
}

.category-btn.active {
    background: linear-gradient(135deg, var(--thunder-yellow), var(--thunder-gold));
    color: var(--thunder-black);
    border-color: var(--thunder-yellow);
    box-shadow: 0 4px 15px rgba(246, 194, 67, 0.4);
}

.category-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 194, 67, 0.5);
}

/* Enhanced category buttons styling */
.category-buttons:focus {
    outline: 2px solid var(--thunder-yellow);
    outline-offset: 2px;
    border-radius: 8px;
}

.category-buttons::before,
.category-buttons::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    pointer-events: none;
    z-index: 5;
    transition: opacity 0.3s ease;
}

.category-buttons::before {
    left: -10px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), transparent);
    opacity: 0;
}

.category-buttons::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.9), transparent);
    opacity: 0;
}

.category-buttons-wrapper.has-left-scroll .category-buttons::before {
    opacity: 1;
}

.category-buttons-wrapper.has-right-scroll .category-buttons::after {
    opacity: 1;
}

/* Better visual feedback for scrollable area */
.category-buttons:hover::-webkit-scrollbar-thumb {
    background: var(--thunder-gold);
}

/* Animation for category buttons on load */
.category-btn {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.category-btn:nth-child(1) {
    animation-delay: 0.1s;
}
.category-btn:nth-child(2) {
    animation-delay: 0.2s;
}
.category-btn:nth-child(3) {
    animation-delay: 0.3s;
}
.category-btn:nth-child(4) {
    animation-delay: 0.4s;
}
.category-btn:nth-child(5) {
    animation-delay: 0.5s;
}
.category-btn:nth-child(n + 6) {
    animation-delay: 0.6s;
}

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

/* Products Grid */
.products-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

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

.products-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.products-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--thunder-yellow);
}

.product-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

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

.products-card:hover .product-image {
    transform: scale(1.05);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(246, 194, 67, 0.1), rgba(255, 215, 0, 0.1));
    color: #adb5bd;
}

.product-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 10px;
}

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

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

.product-overlay i {
    font-size: 2.5rem;
    color: var(--thunder-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--thunder-yellow), var(--thunder-gold));
    color: var(--thunder-black);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.product-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.products-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--thunder-black);
    margin-bottom: 10px;
    line-height: 1.3;
    height: 2.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.products-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--thunder-yellow);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.products-price i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.products-category {
    display: inline-block;
    background: rgba(246, 194, 67, 0.15);
    color: #666;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 15px;
    width: fit-content;
}

.product-actions {
    margin-top: auto;
}

.btn-view-product {
    background: linear-gradient(135deg, var(--thunder-yellow), var(--thunder-gold));
    color: var(--thunder-black);
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
}

.btn-view-product:hover {
    background: linear-gradient(135deg, var(--thunder-gold), var(--thunder-yellow));
    color: var(--thunder-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(246, 194, 67, 0.4);
    text-decoration: none;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.empty-state i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--thunder-black);
    margin-bottom: 15px;
}

.empty-state p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination .page-link {
    color: var(--thunder-black);
    border: 2px solid #e9ecef;
    margin: 0 2px;
    border-radius: 8px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: var(--thunder-yellow);
    border-color: var(--thunder-yellow);
    color: var(--thunder-black);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--thunder-yellow), var(--thunder-gold));
    border-color: var(--thunder-yellow);
    color: var(--thunder-black);
}

/* Categories Section */
.categories-section {
    background: linear-gradient(135deg, var(--thunder-yellow) 0%, var(--thunder-gold) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.categories-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.categories-title {
    color: var(--thunder-black);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    text-transform: uppercase;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 255, 255, 0.3);
    position: relative;
}

.categories-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--thunder-black), transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.category-card {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a 0%, #000000 100%);
    border-radius: 15px;
    overflow: hidden;
    border: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    height: 300px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(246, 194, 67, 0.2);
}

.category-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.category-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--thunder-yellow);
    opacity: 0.9;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 1;
    transition: all 0.4s ease;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.category-badge {
    background: var(--thunder-yellow);
    color: var(--thunder-black);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-lightning {
    color: var(--thunder-yellow);
    font-size: 2rem;
    opacity: 0.8;
    animation: lightning-glow 2s infinite alternate;
}

@keyframes lightning-glow {
    0% {
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(246, 194, 67, 0.5);
    }
    100% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(246, 194, 67, 0.8);
    }
}

.category-content {
    color: white;
    margin-top: auto;
}

.category-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0px;
    color: var(--thunder-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-description {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 15px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.category-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.category-products-count {
    font-size: 1rem;
    color: var(--thunder-yellow);
    font-weight: 700;
    background: rgba(246, 194, 67, 0.1);
    padding: 8px 16px;
    border-radius: 15px;
    border: 1px solid rgba(246, 194, 67, 0.3);
}

.category-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--thunder-yellow) 0%, var(--thunder-gold) 100%);
    color: var(--thunder-black);
    padding: 10px 18px;
    border-radius: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(246, 194, 67, 0.4);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-btn:hover {
    background: linear-gradient(135deg, var(--thunder-gold) 0%, #ffe55c 100%);
    color: var(--thunder-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246, 194, 67, 0.6);
}

.category-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.category-btn:hover i {
    transform: translateX(5px);
}

.empty-categories {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 20px;
    color: var(--thunder-black);
    background: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    border: 2px dashed rgba(0, 0, 0, 0.2);
}

.empty-icon {
    font-size: 5rem;
    color: var(--thunder-black);
    margin-bottom: 30px;
    opacity: 0.7;
}

.empty-categories h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--thunder-black);
    font-weight: 700;
}

.empty-categories p {
    font-size: 1.2rem;
    opacity: 0.8;
    color: var(--thunder-black);
}

.view-all-categories-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 26, 0.95) 100%);
    color: var(--thunder-yellow);
    padding: 20px 40px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.2rem;
    border: 2px solid var(--thunder-black);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all-categories-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--thunder-yellow);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.view-all-categories-btn:hover::before {
    width: 400px;
    height: 400px;
}

.view-all-categories-btn:hover {
    color: var(--thunder-black);
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    border-color: var(--thunder-yellow);
}

/* Scroll indicators for category buttons */
.scroll-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(10px);
}

.scroll-indicator.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-indicator:hover {
    background: var(--thunder-yellow);
    color: var(--thunder-black);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(246, 194, 67, 0.3);
}

.scroll-left {
    left: -20px;
}

.scroll-right {
    right: -20px;
}

.scroll-indicator i {
    font-size: 0.9rem;
}

/* Hide scroll indicators on mobile */
@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}
