/* Custom Styles for Evidence Run Club */

/* Import AOS animations */
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

/* Custom CSS Variables */
:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --dark-color: #000000;
    --light-color: #ffffff;
    --gradient-primary: linear-gradient(135deg, #000000 0%, #333333 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

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

html {
    scroll-behavior: smooth;
    background-color: #000000;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #000000;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: #000000 !important;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    padding: 1.2rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 2rem;
    letter-spacing: 3px;
    font-weight: 900;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: inline-block;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Hero Section */

.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    background-image: url('assets/gallery/gallery-02.jpg');
    background-size: cover;
    background-position: center bottom;
    background-attachment: scroll;
    filter: grayscale(100%) contrast(1.2);
}

.video-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(35px) saturate(1.1);
    transform: scale(1.05);
    z-index: -3;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    z-index: 1;
    filter: brightness(0.65) contrast(1.1);
    transform: translate(-50%, -50%);
}

@media (min-aspect-ratio: 4/3) {
    .hero-video {
        width: auto;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
}

.about-photo-trigger,
.gallery-trigger {
    background: transparent;
    border: 0;
    padding: 0;
    display: block;
    width: 100%;
    cursor: zoom-in;
}

.about-photo-trigger:focus-visible,
.gallery-trigger:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 4px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content .lead {
    font-size: 1.8rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.4;
}

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

.hero-logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    display: inline-block;
}

.hero-content .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-content .btn-primary {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000 !important;
}

.hero-content .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
    background: #f0f0f0;
}

.hero-content .btn-outline-light:hover {
    background: white;
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Video Vlog Section */
#vlogs {
    padding: 8rem 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

#vlogs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

#vlogs .container {
    position: relative;
    z-index: 2;
}

#vlogs h2 {
    font-weight: 800;
    color: #ffffff;
}

#vlogs .text-primary {
    background: linear-gradient(135deg, #ffffff 0%, #b0b0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#vlogs .text-muted,
#vlogs .text-light {
    color: #d0d0d0 !important;
}

#vlogs .video-container {
    max-width: 900px;
    margin: 0 auto;
}

#vlogs .ratio {
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#vlogs .ratio:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(255, 255, 255, 0.15);
}

#vlogs iframe {
    border: none;
}

#vlogs .btn-outline-primary {
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
    padding: 12px 32px;
    transition: all 0.3s ease;
    background: transparent;
}

#vlogs .btn-outline-primary:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

#vlogs .bi-youtube {
    font-size: 1.2rem;
}

/* About Section */
#about {
    padding: 8rem 0;
    background: #ffffff;
    color: #000000;
}

#about h2 {
    margin-bottom: 2rem;
}

#about .text-primary {
    color: #000000 !important;
    font-weight: 900;
}

#about img {
    transition: transform 0.3s ease;
}

#about img:hover {
    transform: scale(1.05);
}

#about .bi {
    color: #000000 !important;
}

/* Gallery Section */
#gallery {
    padding: 8rem 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%) !important;
    color: #ffffff !important;
    position: relative;
    overflow: hidden;
}

#gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

#gallery .container {
    position: relative;
    z-index: 2;
}

#gallery h2 {
    color: #ffffff !important;
}

#gallery .text-muted {
    color: #d0d0d0 !important;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* FAQ Section */
#faq {
    padding: 8rem 0;
    background: #ffffff;
    color: #000000;
}

/* WhatsApp CTA Section */
#whatsapp-cta {
    padding: 8rem 0;
    background: #000000;
    color: #ffffff;
}

#whatsapp-cta h2 {
    color: #ffffff !important;
}

#whatsapp-cta .lead {
    color: #cccccc !important;
}

.btn-whatsapp {
    background: #25D366;
    border: 3px solid #25D366;
    color: #ffffff !important;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.btn-strava {
    background: #FC4C02;
    border: 3px solid #FC4C02;
    color: #ffffff !important;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(252, 76, 2, 0.3);
    text-decoration: none;
}

.btn-strava:hover {
    background: #E34402;
    border-color: #E34402;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(252, 76, 2, 0.4);
    text-decoration: none;
}

.btn-spotify {
    background: #1DB954;
    border: 3px solid #1DB954;
    color: #ffffff !important;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(29, 185, 84, 0.3);
    text-decoration: none;
}

.btn-spotify:hover {
    background: #1AA34A;
    border-color: #1AA34A;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(29, 185, 84, 0.4);
    text-decoration: none;
}

/* Quick Join Section */
#quick-join {
    background: #f8f9fa;
    padding: 3rem 0;
}

.quick-join-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #000000;
}

.btn-whatsapp-mini, .btn-strava-mini, .btn-instagram-mini {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid;
}

.btn-whatsapp-mini {
    background: #25D366;
    border-color: #25D366;
    color: #ffffff !important;
}

.btn-whatsapp-mini:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
}

.btn-strava-mini {
    background: #FC4C02;
    border-color: #FC4C02;
    color: #ffffff !important;
}

.btn-strava-mini:hover {
    background: #E34402;
    border-color: #E34402;
    transform: translateY(-2px);
}

.btn-instagram-mini {
    background: #E4405F;
    border-color: #E4405F;
    color: #ffffff !important;
}

.btn-instagram-mini:hover {
    background: #C13584;
    border-color: #C13584;
    transform: translateY(-2px);
}

/* Header WhatsApp Button */
.btn-whatsapp-header {
    background: #25D366;
    border: 2px solid #25D366;
    color: #ffffff !important;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-whatsapp-header:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: #ffffff !important;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Merch Header Button */
.btn-merch-header {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    border: 2px solid #ffffff;
    color: #000000 !important;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-merch-header:hover {
    background: linear-gradient(135deg, #f0f0f0 0%, #d0d0d0 100%);
    border-color: #f0f0f0;
    color: #000000 !important;
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    background: white;
    border: none;
    padding: 1.5rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 15px !important;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: #000000;
    color: white;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    background: #fafafa;
}

/* Footer */
footer {
    background: #000000 !important;
}

footer h3, footer h5 {
    color: #ffffff !important;
}

footer .text-muted {
    color: #cccccc !important;
}

footer p {
    color: #ffffff !important;
}

footer .btn-outline-light {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

footer .btn-outline-light:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000 !important;
    transform: translateY(-3px);
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Prevent horizontal scroll from AOS animations */
    .container {
        overflow-x: hidden;
    }

    /* Disable problematic AOS animations on mobile */
    [data-aos="fade-left"] {
        transform: none !important;
        opacity: 1 !important;
    }

    [data-aos="fade-right"] {
        transform: none !important;
        opacity: 1 !important;
    }

    .hero-content h1 {
        font-size: 4rem;
        letter-spacing: 2px;
    }

    .hero-content .lead {
        font-size: 1.4rem;
        max-width: 90%;
    }

    .hero-content .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        margin: 0.5rem;
    }

    .hero-logo-img {
        height: 80px;
    }

    #about, #gallery, #faq {
        padding: 4rem 0;
    }

    .gallery-item img {
        height: 250px;
    }

}

@media (max-width: 576px) {
    /* Extra small screens - ensure no horizontal scroll */
    body, html {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .container, .container-fluid {
        overflow-x: hidden;
        max-width: 100%;
    }

    /* Disable all horizontal AOS animations on very small screens */
    [data-aos="fade-left"], [data-aos="fade-right"] {
        transform: none !important;
        opacity: 1 !important;
    }

    .hero-content h1 {
        font-size: 3rem;
        letter-spacing: 1px;
    }

    .hero-content .lead {
        font-size: 1.2rem;
    }

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

    .gallery-item img {
        height: 200px;
    }

    .hero-content .d-flex {
        flex-direction: column;
        gap: 1rem !important;
    }

    #whatsapp-cta .d-flex {
        flex-direction: column;
        gap: 1rem !important;
    }

    .btn-whatsapp, .btn-strava, .btn-spotify {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .btn-whatsapp-mini, .btn-strava-mini, .btn-instagram-mini {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .btn-whatsapp-header {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Back to top button styling */
.back-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
}

/* Smooth Animations */
.btn, .gallery-item, .accordion-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   MERCH SECTION STYLES
   =================================== */

.merch-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.merch-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.merch-content h2 {
    color: #ffffff;
}

.merch-content .lead {
    color: #d0d0d0;
}

.merch-form-text {
    color: #b0b0b0 !important;
}

.merch-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    color: #000000;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #b0b0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.merch-features {
    list-style: none;
    padding: 0;
}

.merch-features li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: #e0e0e0;
    display: flex;
    align-items: center;
}

.merch-features i {
    font-size: 1.3rem;
}

/* Merch Image Wrapper */
.merch-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    max-height: 500px;
}

.merch-image {
    transition: transform 0.5s ease;
    filter: brightness(0.95) contrast(1.1);
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 500px;
}

.merch-image-wrapper:hover .merch-image {
    transform: scale(1.05);
}

/* Merch Badge */
.merch-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #000000;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse-badge 2s ease-in-out infinite;
}

.merch-badge i {
    font-size: 1.2rem;
    color: #000000;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(255, 255, 255, 0.5);
    }
}

/* Merch Button */
.btn-merch {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    color: #000000;
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

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

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

.btn-merch:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
    color: #000000;
}

.btn-merch:active {
    transform: translateY(-1px);
}

/* Merch Button in Hero - Small */
.btn-merch-hero-small {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-merch-hero-small:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 991px) {
    .merch-section {
        padding: 3rem 0 !important;
    }

    .merch-content h2 {
        font-size: 2rem;
    }

    .merch-features li {
        font-size: 1rem;
    }

    .merch-badge {
        top: 15px;
        right: 15px;
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .merch-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .merch-content h2 {
        font-size: 1.75rem;
    }

    .merch-content .lead {
        font-size: 1rem;
    }

    .merch-features li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    .btn-merch {
        width: 100%;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .merch-badge {
        top: 10px;
        right: 10px;
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    .merch-badge i {
        font-size: 1rem;
    }
}
