/* Basic reset for common elements to remove default browser padding and margin */
body, h1, h2, h3, p, ul, li, nav {
    margin: 0;
    padding: 0;
}

/* Apply a universal box-sizing rule to work with borders and padding more predictably */
*, *:before, *:after {
    box-sizing: border-box;
}

/* Apply borders to all images */
img {
    border: 5px solid black;
}

/* ---------------------------------------------------------- Background -------------------------------------------------------------------------------------- */



/* html, body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    text-align: center;
} */


.section, .player-cards, .intro, .photo-section {
    background: transparent;
}
.section {
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white */
}
.player-cards, .intro, .photo-section {
    background: none; /* Or 'transparent', or use 'rgba(255,255,255,0.3)' for semi-transparent white, as appropriate */
}


/* ------------------------------------------------------- Cover page styling --------------------------------------------------------------------------------*/
#cover-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e8ecef;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

#cover-logo {
    width: 200px;
    height: auto;
    opacity: 0; /* Start with logo hidden */
    animation: fadeInLogo 1s ease forwards; /* Animation to fade in */
    border: none;
}

@keyframes fadeInLogo {
    to {
        opacity: 0.99; /* Semi-transparent logo */
    }
}

#enter-site {
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 1.5em;
    color: #fff; /* White text */
    background-color: #f03e24; /* Adjust the color as needed */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#enter-site:hover {
    background-color: #365f91; /* Darker shade on hover */
    transform: scale(1.05); /* Slightly increase size on hover */
}

/* Progress Bar Loader Styles */
.loader-container {
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Align to the bottom */
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); /* Light overlay */
    z-index: 2000; /* Above everything else */
    padding-bottom: 50px; /* Space from the bottom */
}

.progress-circle {
    width: 15px;
    height: 15px;
    margin: 0 5px; /* Reduced space between circles */
    background-color: #fff; /* Start with white background */
    border-radius: 50%;
    /* Animation will be added by JavaScript */
}

/* No keyframes needed since animation will be controlled by JavaScript */

/* Progress Bar Animations */
/* @keyframes load {
    0%, 100% {
        transform: scale(0);
    }
    50% {
        transform: scale(1);
    }
} */


/* ------------------------------------------------------- Main body styling --------------------------------------------------------------------------------*/
body {
    font-family: 'Arial', sans-serif; /* Fallback font */
    line-height: 1.6; /* Line height for better readability */
    color: #333; /* Dark grey text, which should be easy to read and matches the logo's theme */
    /* background-color: #f4f4f4; */
    background-color: #e8ecef;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* -------------------------------Header styling with flexbox for vertical alignment ----------------------------------*/
header {
    background: #f03e24;
    color: #fff;
    padding: 0 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo styling */
#logo {
    width: 100px;
    height: auto;
    border: none;
}

/* Navigation menu styling with flexbox for vertical alignment */
nav {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

nav ul {
    list-style: none;
    display: flex;
    padding-left: 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

nav ul li {
    margin: 0 10px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    text-align: center;
    display: block;
}

.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
}

/* Mobile Navigation Menu */
@media (max-width: 768px) {
    header {
        padding: 10px;
    }

    #logo {
        width: 80px;
    }

    .menu-icon {
        display: block;
    }

    nav {
        justify-content: flex-end;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a1a1a;
        padding: 0.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        max-height: 40vh;
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .nav-menu li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 0.5rem 0.75rem;
        font-size: 1rem;
        border-radius: 4px;
        transition: all 0.3s ease;
        text-align: center;
    }

    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: none;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }

    .menu-toggle:hover {
        color: #f03e24;
    }
}

/* Smaller mobile devices */
@media (max-width: 480px) {
    header {
        padding: 5px 10px;
    }

    #logo {
        width: 60px;
    }

    nav a {
        font-size: 1em;
    }

    .nav-menu {
        padding: 0.4rem;
    }

    .nav-menu a {
        font-size: 0.95rem;
        padding: 0.4rem 0.6rem;
    }
}

/* Section styles for thin black lines between sections */
section {
    width: 100%;
    border-bottom: 1px solid black;
    padding: 40px 20px;
    margin-bottom: 40px;
    position: relative;
}
.section-title {
    text-align: center;
    font-size: 48px;
    color: #333;
    margin-bottom: 40px;
    padding: 20px 0;
}

/* Styles for when the menu is shown */
nav ul.show {
    display: flex; /* Makes the ul visible */
}

/* Ensure the default state of the menu is hidden on smaller screens */
@media (max-width: 768px) {
    nav ul {
        display: none; /* Hides the menu initially */
        flex-direction: column; /* Stack the items vertically when menu is open */
        position: absolute;
        top: 60px; /* Position below the header */
        left: 0;
        width: 100%;
        background: #D50000;
    }

    nav ul.show {
        display: flex; /* Shows the menu when .show class is added */
    }
}


/* ----------------------------------------------------------- Highlights video section styling -------------------------------------------------------------------*/
#highlights {
    padding-top: 60px; /* Padding to push section down below fixed header */
}

#highlight-video {
    width: 100%; /* Full width to be responsive */
    height: auto; /* Auto height to maintain aspect ratio */
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* background-color: black; For letterboxing */
  height: 100vh; /* Adjust based on your layout needs */
}

.responsive-video {
  max-height: 90vh; /* Adjust based on your layout */
  max-width: 100%;
  object-fit: contain; /* Maintains aspect ratio and adds letterboxing as needed */
  border: 2px solid black; /* Adds a black border around the video */
  box-shadow: 0 0 8px rgba(0,0,0,0.6); /* Optional: Adds a subtle shadow for depth, similar to a picture frame */
  margin: 0 auto; /* Ensures the video is centered horizontally */
}

/* ----------------------------------------------------------- Tickets section styling -------------------------------------------------------------------*/
#tickets {
    padding-top: 60px;
    background-color: #f8f9fa;
}

.tickets-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.ticket-option {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.ticket-option:hover {
    transform: translateY(-5px);
}

.ticket-option h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.ticket-option .price {
    font-size: 2rem;
    color: #f03e24;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.ticket-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.ticket-features li {
    margin-bottom: 0.8rem;
    color: #666;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
}

.ticket-features li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #f03e24;
}

.game-selector {
    margin: 1.5rem 0;
    width: 100%;
}

.game-dropdown {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #f03e24;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ticket-button {
    background-color: #f03e24;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.ticket-button:hover {
    background-color: #d50000;
}

@media (max-width: 768px) {
    .tickets-container {
        padding: 1rem;
        gap: 1rem;
    }

    .ticket-option {
        padding: 1.5rem;
        min-width: 100%;
    }

    .ticket-features li {
        font-size: 0.9rem;
    }

    .ticket-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/*-------------------------------------------------------------------- About section styling -------------------------------------------------------------------*/
#about {
    background: #fff;
    text-align: center;
    padding: 4em 2em;
    padding-top: 80px;
}

/* Responsive image styling with increased size */
.responsive-img {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* History text styling */
.history-text {
    color: #333;
    margin: 20px auto;
    max-width: 90%;
    font-size: 1.1em;
    line-height: 1.6;
    padding: 15px;
}

.history-text p {
    margin-bottom: 10px; /* Add a small gap between paragraphs */
}
/* Styles for the new paragraphs in the About section */
.about-extensions {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.about-column {
    flex: 1;
    min-width: 280px;
    max-width: 100%;
    margin-bottom: 20px;
}

.about-logo {
    width: 300px; /* Adjust the size of the logo as needed */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensures the image is block-level for margin auto */
    margin: 0 auto 10px; /* Center the logo and add space below */
}

.about-column h3 {
    text-align: center; /* Center the subheadings */
    margin-bottom: 10px; /* Space below the subheadings */
}

.about-column p {
    text-align: justify; /* Justify the paragraph text for better readability */
    font-size: 1.2em; /* Slightly larger font size for readability */
    line-height: 1.6; /* Adjust line height for readability */
}

.about-column img {
    max-width: 200px;
    height: auto;
    margin: 0 auto 15px;
}

/* --------------------------------------------------------- Sponsors Styles --------------------------------------------------------------*/
#sponsors {
    padding: 40px 20px;
}

#sponsors .sponsor-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

#sponsors .sponsor-logo {
    flex: 0 0 200px;
    text-align: center;
    padding: 10px;
}

#sponsors .sponsor-logo img {
    width: 100%;
    max-width: 150px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

#sponsors .sponsor-logo img:hover {
    transform: scale(1.05);
}

#sponsors .sponsor-description {
    flex: 1;
    min-width: 250px;
}

#sponsors .sponsor-description p {
    font-size: 1.1em;
    color: #333;
    text-align: left;
    line-height: 1.6;
    margin: 0;
}

#sponsors .sponsor-description a {
    color: #f03e24;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

#sponsors .sponsor-description a:hover {
    color: #d50000;
}

@media (max-width: 768px) {
    #sponsors {
        padding: 20px 10px;
    }

    #sponsors .sponsor-row {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }

    #sponsors .sponsor-logo {
        flex: 0 0 auto;
        width: 100%;
    }

    #sponsors .sponsor-description p {
        font-size: 1em;
        text-align: center;
    }
}

/* ----------------------------------------------------------------- Photo Carousel Styles ----------------------------------------------------------------------*/
.carousel {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    margin: auto;
    padding: 0 20px;
}

.carousel-inner {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.carousel-item {
    text-align: center;
    width: 100%;
    flex-shrink: 0;
}

.carousel-item img {
    max-height: 700px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border: 5px solid grey;
    display: inline-block;
}

.carousel-arrows {
    text-align: center;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

.arrow {
    display: inline-block;
    cursor: pointer;
    background-color: #f03e24;
    color: white;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    margin: 0 10px;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.arrow:hover {
    background-color: #d50000;
}

@media (max-width: 768px) {
    .carousel {
        padding: 0 10px;
    }

    .carousel-item img {
        max-height: 400px;
        border-width: 3px;
    }

    .arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* ------------------------------------------------------------------ Player Bios Styles ------------------------------------ */
/* Base Styles for the Player Bios Section */
#player-bios {
    padding: 40px;  /* Increased padding */
    background-color: #f5f5f5;
}

#player-bios .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;  /* Increased gap */
    padding: 30px;  /* Increased padding */
}

/* Styles for Each Bio */
#player-bios .bio {
    text-align: center;
    background-color: white;
    padding: 25px;  /* Increased padding */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-radius: 10px;
}

#player-bios .bio img {
    width: 120px; /* Reduced from 150px */
    height: 120px; /* Reduced from 150px */
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
}

#player-bios .bio h3 {
    margin: 10px 0;
    color: #333; /* Adjust title color as needed */
}

#player-bios .bio p {
    text-align: center;
    padding: 10px 0;
    color: #666; /* Adjust text color as needed */
    font-size: 14px; /* Adjust font size as needed */
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
    #player-bios .grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for smaller screens */
    }
}

@media (max-width: 480px) {
    #player-bios .grid {
        grid-template-columns: 1fr; /* 1 column for very small screens */
    }
}


/* --------------------------------------------------------- Leadership Styles ---------------------------------------------------------*/
#leadership {
    background-color: #f5f5f5;
    padding: 40px;  /* Increased padding */
}

#leadership .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;  /* Increased gap */
    padding: 30px;  /* Increased padding */
}

#leadership .leader {
    background-color: white;
    padding: 25px;  /* Increased padding */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

#leadership .leader img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
}
#leadership .leader h3, #leadership .leader h4 {
    text-align: center;
    color: #333; /* Adjust the color */
    margin: 10px 0; /* Adjust spacing */
    /* You may add font-size or font-weight as needed */
}

#leadership .leader p {
    text-align: center;
    color: #666; /* Adjust the text color */
    padding: 10px 0;
    font-size: 14px; /* Adjust font size as needed */
}


@media (max-width: 768px) {
    #leadership .grid {
        grid-template-columns: 1fr; /* 1 column for smaller screens */
    }
}

@media (max-width: 480px) {
    /* Additional adjustments for very small screens, if needed */
}



/* ------------------------------------------------------------------- Contact Us Styles -------------------------------------------------------- */
#contact .contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px;
    text-align: center;
}

#contact .contact-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

#contact .contact-item img {
    width: 50px;
    height: 50px;
}

#contact .contact-item a {
    color: #007bff;
    text-decoration: none;
    padding: 5px 10px;
}

/* Mailing List Styles */
.mailing-list-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mailing-list-container h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.mailing-list-container p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.mailing-list-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.mailing-list-form input[type="email"] {
    padding: 12px 15px;
    border: 2px solid #f03e24;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.mailing-list-form input[type="email"]:focus {
    outline: none;
    border-color: #d50000;
    box-shadow: 0 0 5px rgba(240, 62, 36, 0.3);
}

.mailing-list-form button {
    background-color: #f03e24;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.mailing-list-form button:hover {
    background-color: #d50000;
}

@media (max-width: 768px) {
    #contact .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
        gap: 20px;
    }

    .mailing-list-container {
        margin: 20px auto;
        padding: 20px;
    }

    .mailing-list-form {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    #contact .contact-grid {
        grid-template-columns: 1fr;
    }

    .mailing-list-container h3 {
        font-size: 1.5rem;
    }
}

/* ------------------------------------------------------------------- Roscoe In the News Styles -------------------------------------------------------- */
#news {
    padding: 40px;  /* Increased padding */
    background-color: #f5f5f5;
}

#news .section-title {
    text-align: center;
    margin-bottom: 40px;  /* Increased margin */
    padding: 20px 0;  /* Added padding */
}

#news ul {
    list-style-type: none; /* Removes default list bullets */
    padding: 0;
}

#news li {
    margin-bottom: 20px;  /* Increased margin */
    padding: 10px;  /* Added padding */
}

#news a {
    color: #007bff; /* Example link color, adjust as needed */
    text-decoration: none; /* Removes underline from links */
    font-size: 1em; /* Adjust font size as needed */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

#news a:hover,
#news a:focus {
    color: #0056b3; /* Darker color on hover/focus for interaction feedback */
    text-decoration: underline; /* Adds underline on hover/focus for clarity */
}

/* Stats table */

/* General Styles */
body {
  font-family: sans-serif;
}

.container {
  padding: 5%;
}

.table-responsive {
  margin: 20px 0;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  border-collapse: collapse;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}

.table-dark.table-bordered th,
.table-dark.table-bordered td {
  border-color: #343a40;
}

/* Custom Styles */
.table thead th {
  background-color: #b24147;
  color: #fff;
  font-weight: 600;
}

.table tbody td {
  text-align: center;
}

.table tbody tr:hover {
  background-color: rgba(178, 65, 71, 0.2);
}

.table th {
  text-transform: uppercase;
}

.table-responsive {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.w-title {
  margin-bottom: 20px;
  font-size: 2em;
  font-weight: 600;
  color: #343a40;
}

/* Content container */
.content-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    #about {
        padding: 60px 1em 2em;
    }

    .history-text {
        max-width: 100%;
        font-size: 1em;
        padding: 10px;
    }

    .about-column {
        min-width: 100%;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 20px;
        padding: 10px 0;
    }
}

/* ----------------------------------------------------------- Merchandise section styling -------------------------------------------------------------------*/
#merchandise {
    padding-top: 60px;
    background-color: #f8f9fa;
}

.merchandise-container {
    display: flex;
    justify-content: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.merchandise-item {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 400px;
    width: 100%;
}

.merchandise-item:hover {
    transform: translateY(-5px);
}

.merchandise-img {
    max-width: 200px;
    height: auto;
    margin: 20px auto;
    border: none;
}

.merchandise-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.merchandise-item p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.merchandise-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.merchandise-features li {
    margin-bottom: 0.8rem;
    color: #666;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
}

.merchandise-features li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #f03e24;
}

.merchandise-button {
    background-color: #f03e24;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.merchandise-button:hover {
    background-color: #d50000;
}

@media (max-width: 768px) {
    .merchandise-container {
        padding: 1rem;
    }

    .merchandise-item {
        padding: 1.5rem;
    }

    .merchandise-img {
        max-width: 150px;
    }

    .merchandise-features li {
        font-size: 0.9rem;
    }

    .merchandise-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}
