body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

.header {
    background-color: #005b5e;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    height: 140px;
    margin-bottom: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    margin-right: 100px;
    margin-left: 250px;
}

.logo img {
    height: 130px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    justify-content: center;
    flex: 1;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.slideshow-container {
    max-width: 100%;
    position: relative;
    height: 100%;
}

.mySlides {
    display: none;
    height: 100%;
}

.mySlides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


.next {
    right: 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.text {
    color: #fff;
    font-size: 20px;
    padding: 8px 12px;
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
}

.hero-content h1 {
    font-size: 90px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 10px;
    margin-bottom: 20px;
}

.hero-btn {
    background-color: #FFD700;
    color: #005B5E;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.hero-btn:hover {
    background-color: #ffc400;
}

/* Matches, About, Newsletter */
.matches, .about, .newsletter {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.matches h2, .about h2, .newsletter h2 {
    font-size: 32px;
    color: #005B5E;
    margin-bottom: 20px;
}

/* Team Highlights */
.team-highlights {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.player-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.player-card:hover {
    transform: translateY(-10px);
}

.player-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.player-card h3 {
    font-size: 18px;
    color: #005B5E;
    margin: 10px 0 5px;
}

.player-card p {
    font-size: 14px;
    color: #333;
}

.footer {
    background: linear-gradient(135deg, #005B5E, #007A7C);
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    padding: 10px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff; /* Changed from #FFD700 to white for a professional look */
    text-decoration: underline;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: #e0e0e0;
    margin: 0 12px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #fff; /* Changed from #FFD700 to white */
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 12px;
    color: #e0e0e0;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-column {
        margin-bottom: 20px;
    }
    .social-icons a {
        margin: 0 10px;
    }
}
/* Animations */
.fade {
    animation: fade 1.5s ease-in-out;
}

@keyframes fade {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        height: auto;
        padding: 10px;
    }
    .logo {
        margin: 0 20px;
    }
    .logo img {
        height: 80px;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 16px;
    }
}
.cta-banner {
    background: #005B5E;
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin: 60px 0;
}
.cta-banner h2 {
    font-size: 32px;
    margin-bottom: 10px;
}
.cta-banner p {
    font-size: 18px;
    margin-bottom: 20px;
}
.cta-btn {
    background-color: #eeeeee;
    color: #005B5E;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}
.cta-btn:hover {
    background-color: #dddde6;
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

/* Header (Consistent with Homepage) */
.header {
    background-color: #005b5e;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    height: 140px;
    margin-bottom: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    margin-right: 100px;
    margin-left: 250px;
}

.logo img {
    height: 130px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    justify-content: center;
    flex: 1;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* Merch Header */
.merch-header {
    background-color: #005B5E;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
}

/* Breadcrumbs */
.breadcrumbs {
    max-width: 1800px;
    margin: 10px auto;
    padding: 0 20px;
    font-size: 14px;
    color: #666;
}

.breadcrumbs a {
    color: #005B5E;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Search Bar */
.search-bar {
    max-width: 1800px;
    margin: 20px auto;
    padding: 0 20px;
    display: flex;
    gap: 10px;
}

.search-bar input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-bar button {
    background: #005B5E;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-bar button:hover {
    background: #007A7C;
}

/* Main Content */
.main-content {
    display: flex;
    max-width: 1800px;
    margin: 20px auto;
    gap: 20px;
}

.filter-sidebar {
    position: sticky;
    top: 20px;
    width: 250px;
    flex-shrink: 0;
}

.filter-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.filter-section h4 {
    margin-bottom: 10px;
    color: #005B5E;
}

.filter-section label {
    display: block;
    margin: 5px 0;
}

.filter-section input[type="checkbox"] {
    margin-right: 10px;
}

.filter-section .size-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.filter-section .size-grid button {
    padding: 5px;
    border: 1px solid #ccc;
    background: white;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-section .size-grid button.active {
    background-color: #005B5E;
    color: white;
    border-color: #005B5E;
}

.filter-section .price-range {
    margin-top: 10px;
}

.price-range input[type="range"] {
    width: 100%;
    accent-color: #005B5E;
}

#price-display {
    font-size: 14px;
    color: #005B5E;
    margin-top: 10px;
}

.merch-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.merch-item {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.merch-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.merch-item img {
    max-width: 100%;
    border-radius: 8px;
}

.merch-title {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    color: #005B5E;
}

.merch-price {
    font-size: 14px;
    margin-top: 5px;
    color: #333;
}

.add-to-cart {
    background: #005B5E;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart:hover {
    background: #007A7C;
}

.product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FFD700;
    color: #005B5E;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.product-tag.new {
    background: #FFD700;
}

/* Footer (Consistent with Homepage) */
.footer {
    background: linear-gradient(135deg, #005B5E, #007A7C);
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    padding: 10px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: #e0e0e0;
    margin: 0 12px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 12px;
    color: #e0e0e0;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        height: auto;
        padding: 10px;
    }
    .logo {
        margin: 0 20px;
    }
    .logo img {
        height: 80px;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
    .main-content {
        flex-direction: column;
    }
    .filter-sidebar {
        width: 100%;
        position: static;
    }
    .merch-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .search-bar {
        flex-direction: column;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-column {
        margin-bottom: 20px;
    }
}.social-icons a {
    color: #e0e0e0;
    margin: 0 12px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
}
/* Page Header */
.page-header {
    background-color: #005B5E;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
}

/* Breadcrumbs (Reused from Merch Page) */
.breadcrumbs {
    max-width: 1800px;
    margin: 10px auto;
    padding: 0 20px;
    font-size: 14px;
    color: #666;
}

.breadcrumbs a {
    color: #005B5E;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Fixtures and Results Container */
.fixtures-results {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Fixtures Section */
.fixtures, .results {
    margin-bottom: 40px;
}

.fixtures h2, .results h2 {
    font-size: 28px;
    color: #005B5E;
    margin-bottom: 20px;
    text-align: center;
}

.fixture-list, .result-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fixture-item, .result-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

.fixture-item:hover, .result-item:hover {
    transform: translateY(-5px);
}

.fixture-date, .result-date {
    font-size: 16px;
    font-weight: bold;
    color: #005B5E;
    min-width: 150px;
}

.fixture-teams, .result-teams {
    font-size: 18px;
    color: #333;
    flex: 1;
    text-align: center;
}

.fixture-details, .result-details {
    font-size: 14px;
    color: #666;
    min-width: 250px;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fixture-item, .result-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .fixture-date, .result-date {
        min-width: auto;
    }
    .fixture-details, .result-details {
        text-align: center;
        min-width: auto;
    }
}/* Page Header */
.page-header {
    background-color: #005B5E;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
}

/* Breadcrumbs (Reused from Merch Page) */
.breadcrumbs {
    max-width: 1800px;
    margin: 10px auto;
    padding: 0 20px;
    font-size: 14px;
    color: #666;
}

.breadcrumbs a {
    color: #005B5E;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Fixtures and Results Container */
.fixtures-results {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Fixtures Section */
.fixtures, .results {
    margin-bottom: 40px;
}

.fixtures h2, .results h2 {
    font-size: 28px;
    color: #005B5E;
    margin-bottom: 20px;
    text-align: center;
}

.fixture-list, .result-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fixture-item, .result-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

.fixture-item:hover, .result-item:hover {
    transform: translateY(-5px);
}

.fixture-date, .result-date {
    font-size: 16px;
    font-weight: bold;
    color: #005B5E;
    min-width: 150px;
}

.fixture-teams, .result-teams {
    font-size: 18px;
    color: #333;
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.team {
    display: flex;
    align-items: center;
    gap: 5px;
}

.team-logo {
    width: 250px;
    height: 180px;
    object-fit: contain;
}

.fixture-details, .result-details {
    font-size: 14px;
    color: #666;
    min-width: 250px;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fixture-item, .result-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .fixture-date, .result-date {
        min-width: auto;
    }
    .fixture-details, .result-details {
        text-align: center;
        min-width: auto;
    }
    .fixture-teams, .result-teams {
        flex-direction: column;
        gap: 15px;
    }
}
/* Page Header */
.page-header {
    background-color: #005B5E;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
}

/* Breadcrumbs (Reused from Other Pages) */
.breadcrumbs {
    max-width: 1800px;
    margin: 10px auto;
    padding: 0 20px;
    font-size: 14px;
    color: #666;
}

.breadcrumbs a {
    color: #005B5E;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* News Content */
.news-content {
    max-width: 2000px;
    margin: 40px auto;
    padding: 0 20px;
}

.news-section {
    margin-bottom: 40px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 90px;
}

.news-item {
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.news-text {
    padding: 20px;
}

.news-text h3 {
    font-size: 20px;
    color: #005B5E;
    margin-bottom: 10px;
}

.news-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.news-text p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.news-link {
    display: inline-block;
    color: #005B5E;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #007A7C;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-image {
        height: 150px;
    }
}
.cta-banner {
    background: #005B5E;
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin: 60px 0;
}

.cta-banner h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.merch-slideshow {
    position: relative;
    max-width: 600px;
    margin: 0 auto 20px;
    height: 300px;
    overflow: hidden;
}

.merch-slide {
    display: none;
    height: 100%;
    animation: fade 1.5s ease-in-out;
    border-radius: 100px;
}

.merch-slide img {
    width: 100%;
    height: 80%;
    object-fit: contain;
    border-radius: 100px;
}

.slide-caption {
    font-size: 16px;
    color: #f1f1ed;
    position: absolute;
    top: 85%; /* Position near the bottom */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Offset to true center */
    width: 80%;
    text-align: center;
}

.cta-banner .prev, .cta-banner .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    background: rgba(0,0,0,0.5);
    
}

.cta-banner .next {
    right: 0;
}

.cta-banner .prev:hover, .cta-banner .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.dots {
    text-align: center;
    position: absolute;
    bottom: 5px;
    width: 100%;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
    background-color: #f5f4ee;
}

.cta-btn {
    background-color: #f8f8f4;
    color: #005B5E;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
    display: inline-block;
}

.cta-btn:hover {
    background-color: #f5f3ef;
}

/* Fade Animation */
@keyframes fade {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .merch-slideshow {
        max-width: 100%;
        height: 250px;
    }
    .cta-banner h2 {
        font-size: 24px;
    }
    .slide-caption {
        font-size: 14px;
    }
}
/* Page Header */
.page-header {
    background-color: #005B5E;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
}

/* Breadcrumbs (Reused from Other Pages) */
.breadcrumbs {
    max-width: 1800px;
    margin: 10px auto;
    padding: 0 20px;
    font-size: 14px;
    color: #666;
}

.breadcrumbs a {
    color: #005B5E;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Contact Content */
.contact-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.contact-section {
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.contact-form, .contact-info {
    flex: 1;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-form h2, .contact-info h2 {
    font-size: 24px;
    color: #005B5E;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: #005B5E;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #007A7C;
}

.contact-info p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.contact-details li {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.contact-details i {
    color: #005B5E;
    margin-right: 10px;
    font-size: 20px;
}

.contact-details a {
    color: #005B5E;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.social-links h3 {
    font-size: 18px;
    color: #005B5E;
    margin-bottom: 15px;
}

.social-links a {
    color: #005B5E;
    font-size: 24px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007A7C;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 20px;
    }
    .contact-form, .contact-info {
        padding: 20px;
    }
}
/* Header (Existing Styles, Updated for Cart) */
.header {
    background-color: #005b5e;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    height: 140px;
    margin-bottom: 20px;
}

.nav-links {
    display: flex;
    justify-content: center;
    flex: 1;
    align-items: center; /* Center vertically */
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* Cart Icon Styles */
.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    margin-left: 15px; /* Space from Contact Us */
}

.cart-icon i {
    font-size: 20px;
    color: white; /* Ensure visibility */
    margin-right: 5px; /* Space between icon and count */
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #FFD700;
    color: #005B5E;
    font-size: 12px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
    .cart-icon {
        margin-left: 0;
        margin-top: 10px;
    }
}
.cart-img {
    width: 120px;
    height: 25px;
    margin-right: 5px;
}
.merch-item {
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.merch-item[style*="display: none"] {
    opacity: 0;
    transform: translateY(10px);
}

.merch-item[style*="display: block"] {
    opacity: 1;
    transform: translateY(0);
}
.merch-item {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.merch-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
/* Form Group Styles for Product Page */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: #005B5E;
    margin-bottom: 5px;
    font-weight: 700;
}

.form-group select,
.form-group input[type="text"] {
    width: 100%;
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

.form-group select:focus,
.form-group input[type="text"]:focus {
    border-color: #005B5E;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 91, 94, 0.3);
}

.form-group input[type="text"] {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-group select,
    .form-group input[type="text"] {
        font-size: 14px;
        padding: 6px;
    }
}
/* Product Page Styles */
.product-container {
    max-width: 1100px;
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 20px;
}

.product-image {
    flex: 1;
    min-width: 300px;
}

.product-image img {
    width: 100%;
    border-radius: 12px;
}

.product-info {
    flex: 1;
    min-width: 300px;
}

.product-info h2 {
    color: #005B5E;
    font-size: 28px;
    margin: 0 0 10px;
}

.product-info .price {
    font-size: 24px;
    margin: 10px 0;
    color: #333;
}

.free-delivery {
    color: #00c37e;
    font-weight: bold;
    font-size: 16px;
}

.form-group {
    margin: 15px 0;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: #005B5E;
    margin-bottom: 5px;
}

input[type="text"], select {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

input[type="text"]:focus, select:focus {
    border-color: #005B5E;
    outline: none;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-controls button {
    padding: 5px 10px;
    font-size: 16px;
    background-color: #005B5E;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quantity-controls button:hover {
    background-color: #007A7C;
}

.quantity-controls span {
    font-size: 16px;
    min-width: 30px;
    text-align: center;
}

/* Footer Styles */
.footer {
    background-color: #f9f9f9;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.footer-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 14px;
    color: #005B5E;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }

    .product-image, .product-info {
        min-width: 100%;
    }

    .product-info h2 {
        font-size: 24px;
    }

    .product-info .price {
        font-size: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 10px;
    }
}
/* General Reset and Base Styles */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    
}

* {
    box-sizing: border-box;
}

/* Header Styles */
.header {
    background-color: #005b5e;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    height: 140px;
    margin-bottom: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    margin-right: 100px;
    margin-left: 250px;
}

.logo img {
    height: 130px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    justify-content: center;
    flex: 1;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* Cart Icon Styles */
.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    margin-left: 15px;
}

.cart-icon i {
    font-size: 20px;
    color: white;
    margin-right: 5px;
}

.cart-img {
    width: 40px;
    height: 25px;
    margin-right: 5px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #FFD700;
    color: #005B5E;
    font-size: 12px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
}

/* Page Header */
.page-header {
    background-color: #005B5E;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
}

/* Breadcrumbs */
.breadcrumbs {
    max-width: 1800px;
    margin: 10px auto;
    padding: 0 20px;
    font-size: 14px;
    color: #666;
}

.breadcrumbs a {
    color: #005B5E;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Main Content */
.main-content {
    display: flex;
    max-width: 1800px;
    margin: 20px auto;
    gap: 20px;
    padding: 0 20px;
}

/* Checkout Form and Cart Layout */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -16px;
}

.col-25 {
    flex: 25%;
    padding: 0 16px;
}

.col-50 {
    flex: 50%;
    padding: 0 16px;
}

.col-75 {
    flex: 75%;
    padding: 0 16px;
}

.container {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.container h3 {
    font-size: 20px;
    color: #005B5E;
    margin-bottom: 15px;
}

.container h4 {
    font-size: 18px;
    color: #005B5E;
    margin-bottom: 10px;
}

/* Form Group Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: #005B5E;
    margin-bottom: 5px;
    font-weight: 700;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus {
    border-color: #005B5E;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 91, 94, 0.3);
}

/* Checkbox Styling */
label input[type="checkbox"] {
    margin-right: 10px;
}

/* Icon Container for Payment Cards */
.icon-container {
    margin-bottom: 20px;
    padding: 7px 0;
    font-size: 24px;
}

/* Checkout Button */
.btn {
    background: #005B5E;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #007A7C;
}

/* Cart Summary Styles */
.col-25 .container {
    text-align: left;
}

.col-25 .container p {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
}

.col-25 .container a {
    color: #005B5E;
    text-decoration: none;
}

.col-25 .container a:hover {
    text-decoration: underline;
}

span.price {
    float: right;
    color: #333;
    font-weight: bold;
}

hr {
    border: 1px solid #e0e0e0;
    margin: 10px 0;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #005B5E, #007A7C);
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    padding: 10px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: #e0e0e0;
    margin: 0 12px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 12px;
    color: #e0e0e0;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 800px) {
    .row {
        flex-direction: column-reverse;
    }
    .col-25 {
        margin-bottom: 20px;
    }
    .col-75, .col-50, .col-25 {
        flex: 100%;
    }
}

@media (max-width: 768px) {
    .header {
        height: auto;
        padding: 10px;
    }
    .logo {
        margin: 0 20px;
    }
    .logo img {
        height: 80px;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
    .cart-icon {
        margin-left: 0;
        margin-top: 10px;
    }
    .main-content {
        flex-direction: column;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-column {
        margin-bottom: 20px;
    }
}
/* Cart Item Styles */
.cart-item {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.cart-item-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.cart-item-image {
    width: 90px; /* Reduced from 50px */
    height: 80px; /* Reduced from 50px */
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
}

.cart-item-content div {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-content a {
    font-size: 16px;
    color: #005B5E;
}

.cart-item-content span.price {
    font-size: 16px;
}


.hero-content h1, .hero-content p {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1s ease forwards;
}

.hero-content h1 {
    animation-delay: 0.2s;
}

.hero-content p {
    animation-delay: 0.4s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.merch-slide img {
    transition: transform 0.3s ease;
}

.merch-slide img:hover {
    transform: scale(1.05);
}

.slide-caption {
    background: rgba(0, 91, 94, 0.8);
    padding: 8px 12px;
    border-radius: 5px;
    font-weight: bold;
    color: #FFD700;
    top: 90%; /* Adjust position */
}
.footer-bottom {
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: #FFD700;
    transition: width 0.5s ease, left 0.5s ease;
}

.footer:hover .footer-bottom::before {
    width: 100%;
    left: 0;
}
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.merch-item {
    animation: slideIn 0.5s ease forwards;
    opacity: 0;
}

.merch-item:nth-child(1) { animation-delay: 0.1s; }
.merch-item:nth-child(2) { animation-delay: 0.2s; }
.merch-item:nth-child(3) { animation-delay: 0.3s; }
.merch-item:nth-child(4) { animation-delay: 0.4s; }
.merch-item:nth-child(5) { animation-delay: 0.5s; }
.merch-item:nth-child(6) { animation-delay: 0.6s; }
.merch-item:nth-child(7) { animation-delay: 0.7s; }
.merch-item:nth-child(8) { animation-delay: 0.8s; }
.merch-item:nth-child(9) { animation-delay: 0.9s; }
.merch-item:nth-child(10) { animation-delay: 1s; }
.merch-item:nth-child(11) { animation-delay: 1.1s; }
.merch-item:nth-child(12) { animation-delay: 1.2s; }
/* Add more as needed */

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Container for the merchandise slideshow */
.merch-slideshow {
    position: relative;
    max-width: 800px; /* Adjust to match your design */
    margin: 0 auto; /* Center the slideshow */
    overflow: hidden; /* Hide overflow for smooth transitions */
    border-radius: 10px; /* Rounded corners for a modern look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Individual slide */
.merch-slide {
    display: none; /* Hidden by default */
    width: 100%;
    text-align: center; /* Center content */
}

/* Active slide */
.merch-slide.active {
    display: block; /* Show active slide */
}

/* Slide image */
.merch-slide img {
    width: 250px;
    height: auto;
    max-height: 300px; /* Limit image height */
    object-fit: cover; /* Ensure images fill space without distortion */
    border-radius: 8px; /* Rounded corners for images */
}

/* Fade animation */
.fade {
    animation: fadeEffect 0.5s ease-in-out;
}

/* Keyframes for fade effect */
@keyframes fadeEffect {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

/* Caption styling */
.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    color: #fff;
    padding: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    text-align: center;
    border-radius: 0 0 8px 8px; /* Match image border */
    transition: background 0.3s ease; /* Smooth hover effect */
}

/* Caption hover effect */
.slide-caption:hover {
    background: rgba(0, 0, 0, 0.9); /* Darker on hover */
}

/* Dots container */
.dots {
    text-align: center;
    padding: 10px 0;
}

/* Individual dot */
.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb; /* Inactive dot color */
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Active dot */
.dot.active {
    background-color: #007bff; /* Active dot color (blue, adjust to your theme) */
    transform: scale(1.2); /* Slightly larger active dot */
}

/* Dot hover effect */
.dot:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .merch-slideshow {
        max-width: 100%; /* Full width on smaller screens */
    }

    .merch-slide img {
        max-height: 300px; /* Smaller images on mobile */
    }

    .slide-caption {
        font-size: 0.9rem; /* Smaller font on mobile */
        padding: 8px;
    }

    .dot {
        height: 10px;
        width: 10px;
        margin: 0 4px;
    }
}

@media (max-width: 480px) {
    .merch-slide img {
        max-height: 200px; /* Even smaller for very small screens */
    }

    .slide-caption {
        font-size: 0.8rem;
        padding: 6px;
    }
}
/* Sitemap Section Styling */
.sitemap {
    padding: 40px 20px;
    background: #f8f9fa; /* Light gray background */
    text-align: center;
    font-family: 'Roboto', sans-serif;
    width: 100%; /* Full width of parent container */
    max-width: 1200px; /* Wider than before (was 800px) */
    margin: 0 auto; /* Center the section */
}

.sitemap h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.sitemap p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

/* Map Container */
.map-container {
    max-width: 100%; /* Full width of .sitemap */
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    height: 300px; /* Fixed height, reduced from implied 400px */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Hover Effect */
.map-container:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sitemap {
        padding: 30px 15px;
        max-width: 100%; /* Full width on smaller screens */
    }

    .sitemap h2 {
        font-size: 1.8rem;
    }

    .sitemap p {
        font-size: 1rem;
        max-width: 90%;
    }

    .map-container {
        height: 250px; /* Slightly shorter on tablets */
    }
}

@media (max-width: 480px) {
    .sitemap h2 {
        font-size: 1.5rem;
    }

    .sitemap p {
        font-size: 0.9rem;
    }

    .map-container {
        height: 200px; /* Even shorter on mobile */
    }
}
.result-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.result-link:hover .result-item {
    background-color: #f0f0f0; /* Adjust based on your theme */
}
.match-details {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.match-info {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-left: 5px solid #005B5E; /* Green accent for sports theme */
}

.match-info h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #005B5E; /* Green for headings */
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.match-score {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #333333;
}

.match-score .team {
    display: flex;
    align-items: center;
    gap: 10px;
}

.match-score .team-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.match-score .score {
    font-weight: 700;
    color: #d32f2f; /* Red for scores */
}

.match-score .vs {
    font-weight: 700;
    color: #333333;
}

.match-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #666666;
    margin-bottom: 20px;
}

.match-meta p {
    margin: 0;
}

.match-meta strong {
    color: #333333;
}

.match-summary {
    font-family: 'Roboto', sans-serif;
    color: #333333;
}

.match-summary h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #005B5E; /* Green for subheadings */
    margin-bottom: 15px;
}

.match-summary p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.match-summary h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333333;
    margin: 15px 0 10px;
}

.match-summary ul {
    list-style-type: none;
    padding: 0;
}

.match-summary li {
    font-size: 1rem;
    line-height: 1.5;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.match-summary li::before {
    content: "⚽"; /* Football emoji for key moments */
    position: absolute;
    left: 0;
    color: #005B5E; /* Green for emoji */
}

.back-link {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background-color: #005B5E; /* Green for button */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.back-link:hover {
    background-color: #005B5E; /* Darker green on hover */
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 600px) {
    .match-details {
        padding: 0 10px;
    }

    .match-info {
        padding: 20px;
    }

    .match-info h2 {
        font-size: 1.5rem;
    }

    .match-score {
        font-size: 1.4rem;
        flex-wrap: wrap;
        gap: 10px;
    }

    .match-score .team-logo {
        width: 30px;
        height: 30px;
    }

    .match-meta {
        font-size: 0.9rem;
    }

    .match-summary h3 {
        font-size: 1.3rem;
    }

    .match-summary p,
    .match-summary li {
        font-size: 0.9rem;
    }

    .match-summary h4 {
        font-size: 1.1rem;
    }

    .back-link {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}
.match-details {
    max-width: 900px; /* Slightly wider for professional spacing */
    margin: 50px auto;
    padding: 0 20px;
}

.match-info {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15), inset 0 0 8px rgba(0, 100, 0, 0.1); /* Inner shadow for depth */
    padding: 40px;
    border: 2px solid #006400; /* Double green border */
    animation: fadeIn 0.5s ease-in; /* Subtle fade-in */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.match-info h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(90deg, #005B5E, #005B5E); /* Green gradient */
    text-align: center;
    padding:  Ascending;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
}

.match-score {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 25px 0;
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #333333;
    background-color: #e6f3e6; /* Light green background */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.match-score .team {
    display: flex;
    align-items: center;
    gap: 12px;
}

.match-score .team-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 50%; /* Circular logos */
}

.match-score .score {
    font-weight: 700;
    color: #d32f2f; /* Red for scores */
}

.match-score .vs {
    font-weight: 700;
    color: #333333;
}

.match-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 25px;
    text-align: center;
}

.match-meta p {
    margin: 0;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.match-meta strong {
    color: #333333;
}

.match-meta p[data-result="Win"]::before {
    content: "🏆 "; /* Trophy for wins */
    font-size: 1.2rem;
}

.match-details hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #006400, transparent);
    margin: 30px 0;
}

.match-summary {
    font-family: 'Roboto', sans-serif;
    color: #333333;
}

.match-summary h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #005B5E;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.match-summary p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.match-summary h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #005B5E;
    margin: 20px 0 12px;
}

.match-summary ul {
    list-style-type: none;
    padding: 0;
}

.match-summary li {
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
}

.match-summary li::before {
    content: "⚽"; /* Football emoji */
    position: absolute;
    left: 0;
    color: #ffffff;
    
    background-color: #005B5E;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.back-link {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(45deg, #005B5E, #005B5E); /* Green gradient */
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 25px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.back-link:hover {
    background: linear-gradient(45deg, #004d00, #006400); /* Darker gradient on hover */
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 600px) {
    .match-details {
        padding: 0 15px;
    }

    .match-info {
        padding: 25px;
    }

    .match-info h2 {
        font-size: 1.8rem;
    }

    .match-score {
        font-size: 1.6rem;
        flex-wrap: wrap;
        gap: 15px;
        padding: 10px;
    }

    .match-score .team-logo {
        width: 35px;
        height: 35px;
    }

    .match-meta {
        grid-template-columns: 1fr;
        font-size: 1rem;
    }

    .match-meta p {
        padding: 8px;
    }

    .match-summary h3 {
        font-size: 1.4rem;
    }

    .match-summary p,
    .match-summary li {
        font-size: 1rem;
    }

    .match-summary h4 {
        font-size: 1.2rem;
    }

    .back-link {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .match-details hr {
        margin: 20px 0;
    }
}

.page-header.style-2 {
    color: #333333;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAAXNSR0IArs4c6QAAAB1JREFUGFdjZGBg+M9gYGBgYGD4z2BgYGBgYGBgAAAACgB4qAfBAAAAAElFTkSuQmCC') repeat; /* Subtle field texture */
    padding: 20px 30px;
    border: 3px solid #006400; /* Green border */
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0, 100, 0, 0.815), 0 4px 12px rgba(0, 0, 0, 0.15);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* 3D text effect */
    animation: fadeInStadium 0.5s ease-in;
}
.footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #005B5E, #007A7C);
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 91, 94, 0.3), transparent);
    animation: shine 5s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    padding: 10px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: #e0e0e0;
    margin: 0 12px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 12px;
    color: #e0e0e0;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-column {
        margin-bottom: 20px;
    }
    .social-icons a {
        margin: 0 10px;
    }
    .footer::before {
        animation: shine 3s infinite;
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer::before {
        animation: none;
        background: none;
    }
}

.logo {
    font-size: 24px;
    font-weight: bold;
    margin-right: 100px;
    margin-left: 250px;
}

.logo img {
    height: 130px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInScale 1s ease-in-out forwards;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.logo img:hover {
    transform: rotate(10deg) scale(1.1);
    filter: drop-shadow(0 0 10px rgba(233, 233, 231, 0.8));
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .logo {
        margin: 0 20px;
    }
    .logo img {
        height: 80px;
        animation-duration: 0.8s;
    }
    .logo img:hover {
        transform: rotate(5deg) scale(1.05);
        filter: drop-shadow(0 0 5px rgba(230, 229, 228, 0.959));
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo img {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .logo img:hover {
        transform: none;
        filter: none;
    }
}
/* Container for the merchandise slideshow */
.merch-slideshow {
    position: relative;
    max-width: 1200px; /* Full-width feel */
    margin: 0 auto; /* Centered */
    height: auto; /* Adaptive height */
    min-height: 400px; /* Ensure enough space */
    background: linear-gradient(180deg, #1a2a2f, #0f1c20); /* Dark stadium vibe */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5); /* Dramatic shadow */
    padding: 20px; /* Inner spacing */
}

/* Individual slide */
.merch-slide {
    display: none; /* Hidden by default */
    width: 100%;
    height: auto; /* Adaptive height */
    text-align: center; /* Center content */
    padding: 40px; /* Generous padding */
    transform: rotate(2deg); /* Slight tilt for sporty feel */
    transition: transform 0.5s ease, opacity 0.5s ease;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent); /* Spotlight effect */
}


/* Slide image */
.merch-slide img {
    max-width: 100%; /* Prevent overflow */
    max-height: 350px; /* Cap height */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* No cropping */
    border-radius: 8px; /* Soft corners */
    border: 3px solid transparent;
    background: linear-gradient(45deg, #00ffcc, #ff00cc); /* Neon gradient border */
    background-clip: padding-box;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.5); /* Neon glow */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover effect for images */
.merch-slide img:hover {
    transform: scale(1.15); /* Bold zoom */
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.8); /* Brighter glow */
}

/* Caption styling */
.slide-caption {
    position: absolute;
    bottom: 20px; /* Below image */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7); /* Dark semi-transparent */
    color: #00ffcc; /* Neon cyan */
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.8); /* Neon text glow */
    transition: transform 0.3s ease, background 0.3s ease;
    animation: glowPulse 1.5s infinite alternate; /* Pulsing glow */
}

/* Caption hover effect */
.slide-caption:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateX(-50%) scale(1.1);
}

/* Navigation arrows */





/* Animations */
@keyframes spotlight {
    from {
        opacity: 0;
        transform: rotate(2deg) scale(0.95);
        box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
        box-shadow: 0 0 20px rgba(0, 255, 204, 0.6);
    }
}

@keyframes glowPulse {
    from {
        text-shadow: 0 0 10px rgba(0, 255, 204, 0.8);
        box-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
    }
    to {
        text-shadow: 0 0 15px rgba(0, 255, 204, 1);
        box-shadow: 0 0 15px rgba(0, 255, 204, 0.8);
    }
}
.cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #1a2a2f, #0f1c20); /* Dark stadium vibe */
    color: #00ffcc; /* Neon cyan text */
    padding: 12px 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.8); /* Neon text glow */
    border-radius: 12px; /* Match slideshow corners */
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 255, 204, 0.5); /* Dramatic shadow + neon glow */
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.3s ease;
    animation: glowPulse 1.5s infinite alternate; /* Pulsing glow */
}

.cta-button:hover {
    background: linear-gradient(180deg, #f5f6f7, #fcfcfc); /* Slightly lighter on hover */
    transform: scale(1.1); /* Bold zoom */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 255, 204, 0.8); /* Brighter glow */
    text-shadow: 0 0 15px rgba(0, 255, 204, 1);
}

/* Glow pulse animation */
@keyframes glowPulse {
    from {
        text-shadow: 0 0 10px rgba(0, 255, 204, 0.8);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 255, 204, 0.5);
    }
    to {
        text-shadow: 0 0 15px rgba(0, 255, 204, 1);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 255, 204, 0.8);
    }
}
/* Merch Grid Styles */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px; /* Full-width feel */
    margin: 0 auto; /* Centered */
    min-height: 400px; /* Ensure enough space */
    background: linear-gradient(180deg, #e6eaeb, #e9edee); /* Dark stadium vibe */
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5); /* Dramatic shadow */
    padding: 20px; /* Inner spacing */
    overflow: hidden; /* Prevent content spillover */
}

/* Merch Item Styles */
.merch-item {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent); /* Spotlight effect */
    border-radius: 8px; /* Soft corners */
    padding: 15px;
    text-align: center;
    position: relative;
    transform: rotate(2deg); /* Slight tilt for sporty feel */
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 0 1px #005B5E; /* Neon glow */
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.5s ease;
    animation: spotlight 0.5s ease forwards; /* Dynamic entrance */
    opacity: 0; /* For animation */
}

/* Individual item animation delays */
.merch-item:nth-child(1) { animation-delay: 0.1s; }
.merch-item:nth-child(2) { animation-delay: 0.2s; }
.merch-item:nth-child(3) { animation-delay: 0.3s; }
.merch-item:nth-child(4) { animation-delay: 0.4s; }
.merch-item:nth-child(5) { animation-delay: 0.5s; }
.merch-item:nth-child(6) { animation-delay: 0.6s; }
.merch-item:nth-child(7) { animation-delay: 0.7s; }
.merch-item:nth-child(8) { animation-delay: 0.8s; }
.merch-item:nth-child(9) { animation-delay: 0.9s; }
.merch-item:nth-child(10) { animation-delay: 1s; }
.merch-item:nth-child(11) { animation-delay: 1.1s; }
.merch-item:nth-child(12) { animation-delay: 1.2s; }
.merch-item:nth-child(13) { animation-delay: 1.3s; }
.merch-item:nth-child(14) { animation-delay: 1.4s; }
.merch-item:nth-child(15) { animation-delay: 1.5s; }
.merch-item:nth-child(16) { animation-delay: 1.6s; }
.merch-item:nth-child(17) { animation-delay: 1.7s; }
.merch-item:nth-child(18) { animation-delay: 1.8s; }
.merch-item:nth-child(19) { animation-delay: 1.9s; }
.merch-item:nth-child(20) { animation-delay: 2s; }
.merch-item:nth-child(21) { animation-delay: 2.1s; }
.merch-item:nth-child(22) { animation-delay: 2.2s; }
.merch-item:nth-child(23) { animation-delay: 2.3s; }
.merch-item:nth-child(24) { animation-delay: 2.4s; }

/* Hover effect for merch items */
.merch-item:hover {
    transform: scale(1.15) rotate(0deg); /* Bold zoom, straighten on hover */
    box-shadow: 0 0 25px #005B5E; /* Brighter glow */
}

/* Merch item image */
.merch-item img {
    max-width: 100%;
    height: auto;
    object-fit: cover; /* Ensure images fill space */
    border-radius: 8px; /* Match item corners */
    border: 3px solid transparent;
    background: linear-gradient(45deg, #00ffcc, #ff00cc); /* Neon gradient border */
    background-clip: padding-box;
    box-shadow: 0 0 1px rgba(0, 255, 204, 0.5); /* Neon glow */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover effect for images */
.merch-item img:hover {
    transform: scale(1.15); /* Bold zoom */
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.8); /* Brighter glow */
}

/* Merch title and price */
.merch-title {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    color: #0a0a0a; /* White font */
}

.merch-price {
    font-size: 14px;
    margin-top: 5px;
    color: #0a0a0a; /* White font */
}

/* Product tag */
.product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7); /* Dark semi-transparent */
    color: #fffefe; /* White font */
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.product-tag.new {
    background: rgba(0, 0, 0, 0.7); /* Consistent with other tags */
}

/* Animation for merch items */
@keyframes spotlight {
    from {
        opacity: 0;
        transform: rotate(2deg) scale(0.95);
        box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
        box-shadow: 0 0 20px rgba(0, 255, 204, 0.6);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .merch-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        max-width: 100%; /* Full width on smaller screens */
        padding: 15px; /* Slightly less padding */
    }
    .merch-item img {
        max-height: 150px; /* Smaller images on mobile */
    }
    .merch-title {
        font-size: 14px; /* Smaller font */
    }
    .merch-price {
        font-size: 12px; /* Smaller font */
    }
    .product-tag {
        font-size: 10px; /* Smaller tag */
        padding: 4px 8px;
    }
}
/* Success Container Styles */
.success-container {
    max-width: 750px;
    margin: 50px auto;
    padding: 40px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.success-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.success-icon {
    font-size: 4em;
    color: #005B5E;
    margin-bottom: 25px;
    animation: pulse 1.5s ease-in-out infinite;
}

.success-container h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.4em;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.success-container p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2em;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 35px;
}

.success-container .btn {
    display: inline-block;
    background-color: #005B5E;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1em;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.success-container .btn:hover {
    background-color: #005B5E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Pulse Animation for Success Icon */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .success-container {
        max-width: 90%;
        padding: 30px;
        margin: 30px auto;
    }
    .success-container h1 {
        font-size: 2em;
    }
    .success-container p {
        font-size: 1.1em;
    }
    .success-icon {
        font-size: 3em;
    }
}

@media (max-width: 480px) {
    .success-container {
        padding: 20px;
        margin: 20px auto;
    }
    .success-container h1 {
        font-size: 1.6em;
    }
    .success-container p {
        font-size: 1em;
    }
    .success-icon {
        font-size: 2.5em;
        margin-bottom: 15px;
    }
    .success-container .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}
/* Page Header Styles */
.page-header {
    font-family: 'Roboto', sans-serif;
    font-size: 2.8em;
    font-weight: 700;
    color: #ffffff;
    background-color: #005B5E;
    text-align: center;
    padding: 25px 20px;
    margin: 30px auto;
    max-width: 1000px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    transform: rotate(15deg);
    opacity: 0.5;
    z-index: 0;
    animation: shimmer 3s infinite linear;
}

.page-header span {
    position: relative;
    z-index: 1;
}

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        transform: translateX(-50%) rotate(15deg);
    }
    100% {
        transform: translateX(50%) rotate(15deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        font-size: 2.2em;
        padding: 20px 15px;
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .page-header {
        font-size: 1.8em;
        padding: 15px 10px;
        margin: 15px auto;
        border-radius: 8px;
    }
}
/* Merch Header Styles */
.merch-header {
    font-family: 'Roboto', sans-serif;
    font-size: 2.8em;
    font-weight: 700;
    color: #ffffff;
    background-color: #005B5E;
    text-align: center;
    padding: 25px 20px;
    margin: 30px auto;
    max-width: 1000px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.merch-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    transform: rotate(15deg);
    opacity: 0.5;
    z-index: 0;
    animation: shimmer 3s infinite linear;
}

.merch-header span {
    position: relative;
    z-index: 1;
}

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        transform: translateX(-50%) rotate(15deg);
    }
    100% {
        transform: translateX(50%) rotate(15deg);
    }
}

/* Responsive Design for Merch Header */
@media (max-width: 768px) {
    .merch-header {
        font-size: 2.2em;
        padding: 20px 15px;
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .merch-header {
        font-size: 1.8em;
        padding: 15px 10px;
        margin: 15px auto;
        border-radius: 8px;
    }
}
/* Cart Icon Styles */
.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    margin-left: 15px;
}

.cart-icon i {
    font-size: 20px;
    color: white;
    margin-right: 5px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #FFD700;
    color: #005B5E;
    font-size: 12px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
    .cart-icon {
        margin-left: 0;
        margin-top: 10px;
    }
    .cart-icon i {
        font-size: 18px;
    }
}