/* -------------------
   Import Fonts
-------------------- */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@400;500;700&display=swap");

/* -------------------
   Reset & Base Styles
-------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: #000 !important;
    color: #f9f9f9;
    line-height: 1.6;
}

/* -------------------
   Sticky Header
-------------------- */

.custom-navbar {
    background-color: #000;
    padding: 10px 20px !important;
    position: sticky !important;
    top: 0;
    z-index: 1000;
}

.container-fluid {
    max-width: 1800px;
}

.navbar-brand img {
    height: 100px;
    width: auto;
}

.navbar-nav {
    font-weight: bold;
}

.nav-link {
    color: #fff !important;
    margin: 0 10px;
    font-weight: 500;
}

.nav-link:hover {
    color: #2F8141 !important;
}

.btn-stream {
    background-color: #0b307e;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    padding: 8px 16px;
    border: none;
}

.btn-stream:hover {
    background-color: #0b307e;
}

/* .offcanvas {
  background-color: #0b307e;
} */
.offcanvas.offcanvas-end {
    width: 300px !important;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.85);
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.btn-close {
    --bs-btn-close-opacity: 1 !important;
}

.offcanvas-body.d-flex.flex-column.align-items-start {
    padding-top: 0;
}

.offcanvas .nav-link {
    margin: 10px 0;
    font-size: 18px;
    color: #0b307e !important;
    font-weight: 600;
}

.offcanvas .livestream-btn {
    display: block !important;
}

.livestream-btn {
    background-color: transparent;
    max-width: 250px;
    color: white;
    border: 1px solid;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-family: "Bebas Neue", sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    transition: transform 0.3s;
    text-decoration: none;
}

.livestream-btn img {
    max-width: 100%;
}

.livestream-btn:hover {
    transform: scale(1.05);
    background-color: transparent;
}

@media (min-width: 992px) {
    .offcanvas {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .navbar-brand img {
        height: 110px;
        width: auto;
    }
}

/* -------------------
   Banner Section
-------------------- */
.banner-section {
    width: 100%;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    display: block;
}

.tournament-info {
    background-color: #111;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
}

.info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.info-box {
    background: #111;
    border: 2px solid #3f72af;
    border-radius: 12px;
    padding: 30px 20px;
    min-width: 240px;
    max-width: 300px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.info-box:hover {
    transform: scale(1.05);
    border-color: #ff0000;
}

.info-box h3 {
    font-size: 22px;
    color: #ff1744;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.info-box p {
    font-size: 18px;
    color: #f1f1f1;
}

.info-icon {
    font-size: 36px;
    color: #3f72af;
    margin-bottom: 15px;
}

/*-------------------
Venue, Date & Time for the tournament section 
------------------------*/

.event-highlight {
    background: linear-gradient(135deg, #EB2024, #2f8141, #EB2024);
    border: 3px solid #EB2024;
    padding: 30px 30px;
    max-width: 1400px;
    width: 95%;
    margin: 100px auto;
    border-radius: 15px;
    box-shadow: 0 0 10px #f1a5a6;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.event-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.event-highlight h2 {
    font-size: 48px;
    color: #fff;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.event-highlight h2 i {
    margin-right: 12px;
    color: #f9f9f9;
    font-size: 50px;
}

.event-highlight ul {
    list-style: none;
    padding: 0;
}

.event-highlight li {
    margin: 15px 0;
    font-size: 24px;
    display: flex;
    align-items: center;
    color: aliceblue;
    display: flex;
    align-items: flex-start;
}

.event-highlight li a {
    text-decoration: none;
    color: inherit;
}

.event-highlight li i {
    margin-right: 12px;
    color: #bbbcef;
    font-size: 24px;
}

.event-image {
    margin-top: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: stretch;
    flex-wrap: wrap;
}

.event-image .sponser-link {
    border: 2px solid #aaabed;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(60, 138, 255, 0.4);
    max-width: 100px;
    width: 10%;
    min-width: 60px;
    height: auto;
    background: white;
    display: flex;
    overflow: hidden;
}

.event-image img {
    width: 100%;
}

@media (max-width: 767px) {
    .event-highlight h2 {
        font-size: 34px;
        display: flex;
        flex-direction: column;
    }

    .section-heading {
        font-size: 32px !important;
    }

    .event-highlight h2 i {
        font-size: 36px;
    }

    .event-highlight li {
        font-size: 18px;
    }

    .event-highlight li i {
        font-size: 18px;
    }

    .event-image {
        gap: 10px;
    }

    .event-image .sponser-link {
        width: 12%;
    }
}

@media (max-width: 576px) {
    .event-highlight {
        padding: 30px 10px;
    }

    .event-highlight h2 {
        font-size: 28px;
        line-height: normal;
    }

    .event-highlight h2 i {
        font-size: 24px;
    }

    .event-highlight li {
        font-size: 16px;
    }

    .event-highlight li i {
        font-size: 18px;
    }

    .event-image {
        flex-wrap: wrap;
        margin: 30px 10px 0 10px;
    }

    .event-image .sponser-link {
        width: calc(19% - 8px);
        max-width: 100%;
        min-width: 43px;
    }

    .event-image .sponser-link {
        border: 1px solid #aaabed;
    }
}

/* ---------------
   team-details section
---------------- */

.team-section {
    padding: 20px;
    text-align: center;
}

.section-heading {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 1px 2px 15px #EB2024;
}

.team-captains-container {
    width: 30%;
}

.captains-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.teams-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    align-items: center;
}

.team-column {
    width: calc(35% - 40px);
}

.team-name {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.two-player-container {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
}

.player-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: calc(33% - 20px);
    background: aliceblue;
    line-height: normal;
}

.player-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.player-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1;
}

span.player-fargo-points {
    font-size: 14px;
    color: #730404;
}

.team-name {
    color: #ff1b1e;
    font-size: 38px;
    border-bottom: 1px solid #fff;
}

p.player-name {
    margin: 4px 0 6px 0;
    font-size: 16px;
    font-weight: bolder;
    color: #14128d;
}

@media screen and (max-width: 1200px) {
    .teams-wrapper {
        gap: 15px;
    }

    .two-player-container {
        gap: 6px;
    }

    .player-card {
        width: calc(32% - 0px);
        border-radius: 6px;
    }

    .team-name {
        font-size: 24px;
    }

    p.player-name {
        font-size: 10px;
    }
}

@media screen and (max-width: 1023px) {
    .event-highlight {
        margin: 60px auto;
    }
}

@media screen and (max-width: 991px) {
    .teams-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .team-captains-container {
        width: 100%;
        max-width: 400px;
        order: -1;
    }

    .team-column {
        width: 100%;
    }

    .team-name {
        border: none;
        margin: 10px;
    }

    .two-player-container {
        display: inline-flex;
        justify-content: center;
    }

    .two-player-container.first-container {
        width: 36%;
    }

    .two-player-container.second-container {
        width: 54%;
    }

    .two-player-container.first-container .player-card {
        width: 48%;
    }

    .two-player-container.second-container .player-card {
        width: 32%;
    }

    .player-card {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 768px) {

    .two-player-container.first-container,
    .two-player-container.second-container {
        width: 100%;
        margin-bottom: 20px;
        gap: 10px;
    }

    .two-player-container.first-container .player-card,
    .two-player-container.second-container .player-card {
        width: 32%;
        max-width: 200px;
    }
}

@media screen and (max-width: 540px) {
    .section-heading {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .team-name {
        font-size: 22px;
    }

    .player-card {
        border-radius: 6px;
    }

    .two-player-container {
        gap: 6px;
        margin: 1px;
    }

    p.player-name,
    span.player-fargo-points {
        font-size: 10px !important;
    }
}

/*----------------
 sponser auto slider section
 ---------------- */

.image-container {
    position: relative;
    width: 100%;
    width: 300px;
    /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgb(255, 255, 255);
    text-shadow: 1px 1px 2px #17689e;
    margin: 1px;
    max-width: 100vw;
    aspect-ratio: 1;
}

.text-content {
    position: relative;
    z-index: 1;
    font-size: 24px;
    font-weight: bold;
    padding: 20px;
}

.scroll.d-flex {
    display: flex;
    gap: 20px;
}

.event-section {
    width: 100%;
    max-width: 1800px;
    margin: 10px auto;
    overflow: hidden;
    background: linear-gradient(135deg, #2F8141, #EB2024, #2F8141);
    padding: 30px;
}

.card-container {
    flex-wrap: nowrap;
    margin-right: 0px;
    margin-left: 0px;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* @keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.scroll {
  animation: scroll 50s linear infinite;
}
.scroll:hover {
  animation-play-state: paused;
} */
.event-card {
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
    width: 150px;
    user-select: none;
    max-width: 200px;
}

img.sponser-img {
    width: 100%;
    object-fit: contain;
    border-radius: 8px;
    height: 100%;
    background: #161718;
    border: 2px solid #ffc1078a;
    padding: 3px;
}

@media screen and (max-width: 768px) {
    .event-card {
        width: 100px;
    }

    .scroll.d-flex {
        gap: 10px;
    }
}

@media screen and (max-width: 540px) {
    .logos_strip {
        gap: 10px !important;
        justify-content: center;
        flex-wrap: wrap;
    }

    .event-card {
        width: 100px;
        max-width: 24%;
        min-width: 20px;
    }

    .scroll.d-flex {
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .scroll.d-flex .event-card {
        min-width: 100px;
    }

    .event-section {
        padding: 15px;
    }
}

@media screen and (max-width: 370px) {
    .event-card {
        width: 100px;
        max-width: 15%;
        min-width: 80px;
    }
}

/* -------------------
   Footer Section
-------------------- */
.footer {
    background-color: #2F8141;
    color: #ffffff;
    font-weight: bold;
    padding: 50px 20px 20px;
    font-family: "Segoe UI", sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-logo,
.footer-links,
.footer-contact {
    flex: 1 1 0;
    min-width: 280px;
}

.footer-logo img {
    height: 100px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-weight: bold;
    font-size: 24px;
    color: #ffffff;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: 400;
    color: #eb2024 !important;
}

.footer-links ul li a:hover {
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: 400;
    color: #eb2024 !important;
}

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

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #3f72af;
}

.footer-contact p,
.footer-contact a {
    color: #ddd;
    margin: 6px 0;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #eb2024;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 20px 0 0;
    margin-top: 30px;
    border-top: 1px solid #eb2024;
    font-size: 14px;
    color: #aaa;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #fff;
}

.powered-by img {
    height: 44px;
    vertical-align: middle;
}

.powered-by a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* -------------------
   Responsive Styles
-------------------- */
@media (max-width: 768px) {
    .nav-center {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #222831;
        padding: 10px 0;
        text-align: center;
    }

    .nav-center.show {
        display: flex;
    }

    .nav-center a {
        padding: 10px;
        border-bottom: 1px solid #3f72af;
    }

    .hamburger {
        display: block;
    }

    .livestream-btn {
        display: none;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo,
    .footer-links,
    .footer-contact {
        width: 100%;
        margin-bottom: 25px;
    }
}

/* Subscribe Section */
#mc_embed_signup {
    max-width: 600px;
    width: 90%;
    margin: auto;
    border-radius: 12px;
    padding: 20px;
    color: #fff;
    border: 1.5px solid #ffffff;
    position: relative;
    z-index: 2;
}

#mc_embed_shell {
    background: url("../images/banners/email-signup-background.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 30px 5px;
    position: relative;
}

#mc_embed_shell::before {
    content: "";

    background: #000;
    /* soft overlay */
    backdrop-filter: blur(2px);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.mc-field-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    color: #fff;
}

#mc_embed_signup .mc-field-group {
    width: 100% !important;
}

#mc_embed_signup #mc-embedded-subscribe-form input {
    border: 1px solid #bbbcef;
    border-radius: 6px;
    padding: 10px 0;
    color: #000;
}

#mc_embed_signup #mc-embedded-subscribe-form .button {
    width: 150px;
    margin: 0;
    text-align: center;
    padding: 10px 0;
    align-items: center;
    height: auto;
    line-height: normal;
    border: none;
    background: #EB2024;
    font-weight: bold;
    font-size: 17px;
}

#mc_embed_signup h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
    color: #EB2024;
    line-height: normal;
}

#mc_embed_signup label {
    text-align: center;
    margin-bottom: 10px !important;
}

.optionalParent {
    display: block;
    width: fit-content;
    margin: auto;
}

#mc_embed_signup .foot {
    display: block !important;
}

/* Responsive */
@media (max-width: 600px) {
    .subscribe-container {
        padding: 0 10px;
    }

    #mc_embed_signup h2 {
        font-size: 22px;
    }

    #mc-embedded-subscribe {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .schedule-section {
        padding: 20px 20px !important;
    }
}

.schedule-section {
    background-color: #000;
    color: #ffffff;
    padding: 20px 10%;
    font-family: "Roboto", sans-serif;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #ff1744;
    margin-bottom: 40px;
}

.accordion-item.schedule-day {
    border: none;
    background: linear-gradient(135deg, #EB2024, #2f8141);
    border-left: 5px solid #2f8141;
    margin-bottom: 40px;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(63, 114, 175, 0.3);
    color: #fff !important;
}

.schedule-day h3 {
    color: #ffffff !important;
    background: transparent !important;
    font-size: 24px;
    margin-bottom: 15px;
    padding-bottom: 0px;
    --bs-border-color: #3f72af !important;
}

.accordion-button:not(.collapsed) {
    padding-bottom: 8px;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 #3f72af !important;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.schedule-day ul {
    list-style: none;
    padding-left: 0;
}

.schedule-day ul li {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.schedule-day ul li strong {
    color: #EB2024;
    margin-right: 8px;
}

.org--img {
    border-radius: 10px;
    width: auto;
    max-width: 100%;
    max-height: 350px;
}

.org--name {
    font-size: 20px;
    line-height: 24px;
    margin-top: 6px;
    font-weight: bold;
}

.about-fuca-cup {
    background: #2F8141;
    color: #fff;
    padding: 20px 20px;
    font-family: "Poppins", sans-serif;
}

.about-fuca-cup .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    font-size: 40px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
}

.about_subheading {
    background: linear-gradient(135deg, #2F8141, #EB2024);
    font-weight: bold;
}

.sub-heading {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.organizers-gallery .sub-heading,
.management-section .sub-heading {
    text-shadow: 1px 1px 7px #c50a33;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.about-text {
    flex: 1;
    min-width: 280px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-highlights {
    flex: 1;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.highlight-card {
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(255, 23, 68, 0.2);
    text-align: center;
}

.highlight-card h4 {
    font-size: 18px;
    color: #ff1744;
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 14px;
    color: #cccccc;
}

.management-section {
    margin-top: 60px;
}

.management-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* mobile default */
    gap: 20px;
    margin-top: 20px;
}

.live-stream-photography-container {
    display: grid;
    grid-template-columns: 1fr;
    /* mobile default */
    gap: 20px;
    margin-top: 20px;
}

@media (min-width: 600px) {

    .management-grid,
    .live-stream-photography-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .management-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.manager-box {
    background-color: #151515;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #831d2a;
    transition: transform 0.3s ease;
    height: 100%;
}

.manager-box:hover {
    transform: translateY(-4px);
}

.manager-box h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: bold;
}

.manager-box p {
    font-size: 14px;
    line-height: 1.5;
}

.organizers-gallery {
    margin-top: 60px;
    text-align: center;
}

.social-links {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    font-size: 28px;
    color: #ffffff;
    /* bright white for visibility */
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    color: #ff1744;
    /* vibrant red accent on hover */
    transform: scale(1.2);
}

.social-links svg {
    width: 37.8px;
    height: 37.8px;
    transform: translate(-6px, -3px);
}

.social-links a:hover svg circle {
    fill: #ff1744;
}

.streamhub-iframe iframe {
    width: 100%;
    height: 130vh;
}

@media screen and (max-width: 1399px) {
    .streamhub-iframe iframe {
        width: 100%;
        height: 120vh;
    }
}

@media screen and (max-width: 1199px) {
    .streamhub-iframe iframe {
        width: 100%;
        height: 100vh;
    }
}

@media screen and (max-width: 991px) {
    .streamhub-iframe iframe {
        width: 100%;
        height: 700px;
    }
}

@media screen and (max-width: 767px) {
    .streamhub-iframe iframe {
        width: 100%;
        height: 600px;
    }
}

/* ----------------------------
       Score pill layout 
 ------------------------------*/
.score-pill {
    background: #ffffff;
    color: #8b1eff;
    border-radius: 8px;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 0 20px rgba(139, 30, 255, 0.25);
    transition: 0.3s ease;
}

.score-pill .trophy-icon {
    font-size: 18px;
    margin-right: 6px;
}

.score-pill .team-name {
    color: #333;
    font-weight: 700;
    font-size: 16px;
    margin: 0 !important;
    padding: 0;
}

.team-score {
    font-weight: bold;
    font-size: 16px;
    padding: 7px 10px;
    border-radius: 3px;
    background: #8b1eff;
    color: white;
}

.score-a {
    background: #EB2024;
}

.score-b {
    background: #2F8141;
}

.dash {
    font-size: 16px;
    margin: 0 6px;
    color: #666;
}

/* Panel */
.score-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 0 20px rgba(139, 30, 255, 0.2);
}

.neon-heading {
    color: #0b307e;
    font-weight: 800;
    font-size: 22px;
    text-shadow: 0 0 2px #831d2a;
}

/* Teams */
.score-team {
    flex: 1;
    padding: 10px 10px;
    text-align: center;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.bg-team-a {
    background-color: #EB2024;
    margin-right: 6px;
}

.bg-team-b {
    background-color: #2F8141;
    margin-left: 6px;
}

/* Scoreboard button */
.btn-scoreboard {
    background-color: #000 !important;
    color: white;
    font-weight: 900 !important;
    border-radius: 8px;
    border: 1px solid #000 !important;
    transition: all 0.3s ease;
}

.score-team .points {
    width: 100%;
    display: block;
}

.btn-scoreboard:hover {
    background-color: #d62f2f !important;
    color: #fff !important;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 10px rgba(255, 44, 117, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 44, 117, 0.6);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 44, 117, 0.3);
    }
}

.score-pill {
    animation: glowPulse 2.5s ease-in-out infinite;
}

@media screen and (max-width: 540px) {
    .score-pill {
        padding: 10px 10px;
    }

    .score-pill .team-name,
    .score-pill .team-score {
        font-size: 12px;
        margin: 0;
    }

    .score-team {
        padding: 7px 5px;
    }
}

/* ------------------
       score bord
----------------- */

.bg-team-payne {
    border-color: #730404;
}

.bg-team-lambo {
    border-color: #730404;
}

.team-name {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    color: #ffffff;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
}

/* ------accordion points style---------- */

.match-row {
    display: grid;
    grid-template-columns: 3fr 5fr;
    margin-bottom: 15px;
    border-bottom: 1px solid #ffffff4f;
    padding-bottom: 10px;
}

.match-meta {
    display: flex;
    gap: 12px;
}

.match-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.team {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.team .team-name {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 0;
    text-align: center;
    color: #ffffff;
    border-bottom: none;
    padding-bottom: 0;
}

.match-number {
    color: #ff1744;
    margin-right: 8px;
    font-size: 18px;
    font-weight: 600;
    min-width: 90px;
}

.match-type {
    font-size: 18px;
    margin-right: 12px;
}

.match-row .team-score {
    background: #ffffff;
    color: #030025;
    font-weight: bold;
    font-size: 16px;
}

@media screen and (max-width: 1200px) {
    .team .team-name {
        font-size: 14px;
    }

    .match-number {
        font-size: 14px;
    }

    .match-type {
        font-size: 14px;
    }
}

@media screen and (max-width: 991px) {
    .match-row {
        display: grid;
        grid-template-columns: 1fr;
        margin-bottom: 15px;
        border-bottom: 1px solid #ffffff4f;
        padding-bottom: 10px;
        gap: 10px;
        background: #09083780;
        border: 1px solid #ffffff4f;
        border-radius: 12px;
        padding: 10px 1px 14px;
    }

    .match-number {
        font-size: 18px;
    }

    .match-meta {
        display: flex;
        gap: 12px;
        justify-content: center;
        align-items: center;
    }

    .match-number {
        font-size: 18px;
        width: fit-content;
        text-align: center;
    }

    .team .team-name {
        font-size: 14px;
        margin: 0;
    }
}

@media screen and (max-width: 540px) {
    .match-meta {
        display: flex;
        gap: 4px;
        flex-direction: column;
        align-items: center;
    }

    .team .team-name {
        font-size: 12px;
        margin: 0;
    }

    .accordion-body {
        padding: 5px !important;
    }

    .team {
        gap: 8px;
    }

    .match-row .team-score {
        font-size: 12px;
    }

    .match-score {
        gap: 12px;
    }
}

@media screen and (max-width: 375px) {
    .accordion-item.schedule-day {
        border: none;
        background: linear-gradient(135deg, #090837, #730404);
        border-left: 5px solid #ff2d2d;
        margin-bottom: 40px;
        padding: 20px 5px;
    }
}

.match-score .team {
    width: 48%;
}

.match-score .team:first-child {
    justify-content: end;
}

.match-score .team:last-child {
    justify-content: flex-start;
}

/* ------------------
winners section
------------------ */

/* Floating animation for image */

/* Golden glow text */
.winner-section {
    background-color: #090837;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.05);
    border-radius: 20px;
    box-shadow: 0 0 25px #aaabed !important;
    width: 95% !important;
}

.text-gold {
    color: #ffd700;
    color: #c4e7f5;
    /* color: #fff; */
    text-shadow: 1px 1px 5px #0d6efd;
}

.glow-text {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.thankyou-line {
    font-size: 1.05rem;
    font-style: italic;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.1);
}

.hannacup-title {
    text-shadow: 1px 2px 10px red;
    font-size: 42px;
}

.congratulations-msg {
    font-weight: normal;
    font-size: 24px;
}

.thankyou-line {
    color: rgb(204, 6, 65);
    font-size: 18px;
}

.text-18 {
    font-size: 16px;
    text-align: left !important;
}

.runner-up-team {
    font-size: 19px;
}

.champions-team {
    text-align: left !important;
}

.mb-shown {
    display: none;
}

.card-hover-overlay i {
    color: #fff !important;
    margin-left: 2px !important;
    font-size: 18px !important;
    margin-right: 2px;
}

@media screen and (max-width: 767px) {
    .mb-shown {
        display: block;
        color: #fff;
        text-align: center;
    }

    .mb-hide {
        display: none;
    }
}

@media screen and (max-width: 540px) {
    .hannacup-title {
        font-size: 30px;
    }

    .congratulations-msg {
        font-size: 24px;
    }

    .champions-team {
        text-align: left !important;
        font-size: 14px;
    }

    .text-18 {
        font-size: 13px;
        text-align: left !important;
    }

    .champions-team.mvp {
        margin-bottom: 20px !important;
    }

    p.thankyou-line.mt-5.fw-medium {
        margin-top: 40px !important;
        font-size: 13px;
    }
}

.flags {
    height: 50px;
}

.meet-teams-title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logos_strip {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* -----------------------
------ team jersey--------
----------------------- */

.buy-btn {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    color: #fff;
    background: #090837;
    /* default dark blue */
    overflow: hidden;
}

.buy-btn:hover {
    transform: scale(1.01);
}

.buy-btn.red {
    background: #730404;
}

/* Shine effect */
.buy-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75px;
    width: 50px;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-20deg);
}

.buy-btn:hover::before {
    animation: shine 0.8s forwards;
}

@keyframes shine {
    0% {
        left: -75px;
    }

    100% {
        left: 120%;
    }
}

/* ------------------------------
--------discount code section ---
--------------------------------- */

.discount-section {
    background: linear-gradient(135deg, #090837 0%, #730404 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.discount-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

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

.discount-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.discount-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.store-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.store-logo,
.store-logo img {
    width: 150px;
}

@keyframes logoFloat {

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

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

.store-name {
    text-align: center;
}

.store-name h3 {
    color: #090837;
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.store-tagline {
    color: #730404;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.pool-decorations {
    position: absolute;
    color: rgba(9, 8, 55, 0.1);
    font-size: 3rem;
    animation: float 4s ease-in-out infinite;
}

.pool-decorations.pool-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.pool-decorations.pool-2 {
    top: 20%;
    right: 8%;
    animation-delay: 1s;
}

.pool-decorations.pool-3 {
    bottom: 15%;
    left: 3%;
    animation-delay: 2s;
}

.pool-decorations.pool-4 {
    bottom: 25%;
    right: 5%;
    animation-delay: 3s;
}

@keyframes float {

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

    33% {
        transform: translateY(-10px) rotate(2deg);
    }

    66% {
        transform: translateY(-5px) rotate(-2deg);
    }
}

.coupon-code {
    color: #730404;
    border: 2px dashed #730404;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

.coupon-code:hover::before {
    left: 100%;
}

.discount-badge {
    background: #730404;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(115, 4, 4, 0.4);
    animation: pulse 2s infinite;
}

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

    50% {
        transform: scale(1.05);
    }

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

.store-btn {
    background: linear-gradient(135deg, #730404, #090837);
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    color: white;
}

.feature-item {
    display: flex;
    align-items: center;
    margin: 15px 0;
    font-size: 1.1rem;
}

.feature-item i {
    color: #730404;
    margin-right: 15px;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.section-title {
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copy-btn {
    background: #090837;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-left: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.copy-btn:hover {
    background: #730404;
    transform: scale(1.05);
}

.timer {
    background: rgba(9, 8, 55, 0.1);
    border: 2px solid #090837;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin: 20px 0;
}

.timer h5 {
    color: #730404;
    font-weight: bold;
    margin-bottom: 10px;
}

.pool-sports-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.pool-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,
            rgba(9, 8, 55, 0.1),
            rgba(115, 4, 4, 0.1));
    border: 2px solid rgba(9, 8, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #090837;
    font-size: 1.8rem;
    animation: iconSpin 6s linear infinite;
}

.pool-icon:nth-child(2) {
    animation-delay: 1s;
}

.pool-icon:nth-child(3) {
    animation-delay: 2s;
}

.pool-icon:nth-child(4) {
    animation-delay: 3s;
}

@keyframes iconSpin {

    0%,
    90% {
        transform: rotate(0deg);
    }

    95% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }

    .store-name h3 {
        font-size: 1.8rem;
    }

    .store-header {
        flex-direction: column;
        gap: 10px;
    }

    .store-logo {
        width: 60px;
        height: 60px;
    }

    .coupon-code {
        font-size: 1.2rem;
        padding: 15px;
    }

    .discount-badge {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .discount-card {
        padding: 30px 20px;
    }

    .discount-section {
        padding: 40px 0;
    }

    .pool-sports-icons {
        gap: 15px;
    }

    .pool-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .coupon-code {
        font-size: 1.2rem;
    }

    .store-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .store-name h3 {
        font-size: 1.5rem;
    }

    .discount-badge {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .feature-item {
        font-size: 1rem;
    }

    .feature-item i {
        font-size: 1.3rem;
        margin-right: 10px;
    }

    .pool-decorations {
        font-size: 2rem;
    }

    .team-pill {
        display: none;
    }
}

/* -----  wolfpacksportz accordion section----- */

.accordion-item.wolfpacksportz {
    background: transparent;
    border: 1px solid #ffffff36;
    box-shadow: none;
    border-radius: 12px !important;
    padding: 10px 10px 30px;
}

.accordion-item.wolfpacksportz .accordion-header {
    color: #ffffff !important;
    background: transparent !important;
    font-size: 24px;
    padding: 10px;
    --bs-border-color: #ffffff !important;
}

.accordion-item.wolfpacksportz .accordion-body {
    margin-top: 20px;
}

.schedule-round {
    font-size: 22px;
    text-align: center;
    margin: 35px;
    font-weight: bold;
    background: linear-gradient(135deg, #2F8141, #eb2024);
    border: 2px solid white;
    border-radius: 8px;
}

/* ----------------
--gallary section--
----------------- */

.gallery-section {
    background: #eb2024;
    border-top: 4px solid #2F8141;
    border-bottom: 4px solid #2F8141;
}

.gallery-section .container {
    width: 100% !important;
    max-width: 1900px !important;
}

.gallery-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #730404;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.gallery-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
    aspect-ratio: 1;
    object-fit: cover;
}

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

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: rgba(115, 4, 4) !important;
    background: #fff;
    border: 1px solid rgba(115, 4, 4);
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s;
    width: 40px !important;
    height: 40px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #730404;
    color: #fff !important;
}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.8 !important;
}

.swiper-pagination-bullet-active {
    background: #730404 !important;
    opacity: 1;
}

/* Optional: lightbox accents to match brand */
.glightbox-clean .gslide-description {
    color: #fff;
}

.glightbox-container .gbtn {
    color: #fff;
}

.glightbox-container .gprev,
.glightbox-container .gnext {
    background: #730404;
}

/* -------------raffle info section ------------------ */

.raffle-card {
    background: linear-gradient(135deg, #730404, #090837);
    border-radius: 15px;
    max-width: 1200px;
    border: 2px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.raffle-info-container {
    border-left: 1px dashed #fff;
}

.raffle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 768px) {

    .raffle-card .raffle-heading-container,
    .raffle-card .raffle-info-container {
        width: 100% !important;
        border: none !important;
    }

    .raffle-card .raffle-heading-container {
        border-bottom: 1px dashed #fff !important;
    }
}

.raffle-tkt-cta {
    font-weight: bold;
    font-size: 22px;
    color: white;
}

.notice-strip {
    background: black;
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.notice-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

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

.notice-title {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.notice-message {
    font-size: 14px;
    line-height: 1.4;
}

.facebook-link {
    color: #87CEEB;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.facebook-link:hover {
    color: white;
    text-decoration: underline;
}

.alert-icon {
    display: inline-block;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes pulse {

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

    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .notice-strip {
        padding: 10px 15px;
    }

    .notice-title {
        font-size: 14px;
    }

    .notice-message {
        font-size: 13px;
    }
}

.not-found {
    padding: 120px 0px;
}

.not-found a.btn {
    background-color: #2f8141;
}

@media (max-width: 768px) {
    .not-found {
        padding: 80px 0px;
    }
}

/* Winner Section */
.card.team-card.team-or {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
    border: none;
    border-radius: 10px;
    background-color: #357336;
    color: #ffffff;
    width: 70%;
    padding: 30px 0px 50px 0px;
}

.card.team-card.team-wa {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
    border: none;
    border-radius: 10px;
    background-color: #f62d2c;
    color: #ffffff;
    width: 70%;
    padding: 30px 0px 50px 0px;
}

.card-t-name {
    font-size: 50px;
    font-weight: 700;
}

@media (max-width: 768px) {

    .card.team-card.team-or,
    .card.team-card.team-wa {
        width: 100%;
        padding: 20px 0px 40px 0px;
    }

    .card-t-name {
        font-size: 40px;
    }
}

/*.card-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  width: 100%;
  height: 100%;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.team-card:hover .card-hover-overlay {
  opacity: 1;
} */

/* WC - CSS - Start */
#coming-soon-footer-banner {
    color: #000;
}

.woocommerce-result-count,
.woocommerce-ordering {
    display: none;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt {
    background: #eb2024;
    color: #fff;
    font-size: 16px;
    padding: 15px 20px;
    border-radius: var(--bs-border-radius) !important;
    border: none;
    overflow: hidden;
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
    text-decoration: none !important;
    font-weight: 700 !important;
}

.woocommerce a.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover {
    background: #2f8141;
    background-color: #2f8141;
    color: #fff !important;
    transform: scale(1.01);
    border-color: var(--bs-btn-hover-border-color);
    --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

.woocommerce div.product .product_title,
.woocommerce-loop-product__title,
.woocommerce-products-header__title.page-title,
.related.products h2 {
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 7px #c50a33;
}

.woocommerce .quantity .qty {
    height: 46px;
}

.woocommerce-products-header {
    padding: 0;
    margin-bottom: 30px;
    text-align: center;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
    background: #eb2024;
    border: 1px solid #eb2024;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link):hover {
    background: #2F8141;
    border: 1px solid #2F8141;
}

.wc-block-components-product-name {
    color: #fff;
    text-decoration: navajowhite;
}

div[data-partner-attribution-id="WooPPCP_Ecom_PS_CoreProfiler"] {
    display: none !important;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
    color: #fff;
}

.wc-block-grid__product-link {
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 7px #c50a33;
    text-decoration: none;
    font-size: 16px;
}

/* Mini Cart Wrapper */
.mini-cart-wrapper {
    position: relative;
}

/* Dropdown Styling */
.mini-cart-wrapper .mini-cart-dropdown {
    display: none;
    width: 380px;
    max-height: 500px;
    overflow-y: auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    right: 0;
    left: auto;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
}

/* Show dropdown on hover */
.mini-cart-wrapper:hover .mini-cart-dropdown {
    display: block;
}

/* Mini Cart Items List */
.woocommerce-mini-cart.cart_list.product_list_widget {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Cart Item Styling */
.woocommerce-mini-cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0 !important;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    position: relative;
    transition: background-color 0.2s ease-in-out;
}

.woocommerce-mini-cart-item:hover {
    background-color: #f8f8f8;
}

/* Remove Button Styling */
.woocommerce-mini-cart-item .remove {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
}

.woocommerce-mini-cart-item .remove:hover {
    color: #d32f2f;
}

/* Product Image Styling */
.woocommerce-mini-cart-item img {
    width: 60px !important;
    max-width: 60px;
    max-height: 60px;
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 6px;
    object-fit: cover;
    float: unset !important;
}

/* Product Name Styling */
.woocommerce-mini-cart-item a {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: block;
    line-height: 1.4;
    flex: 1;
    margin-bottom: 5px;
    transition: color 0.3s ease-in-out;
    margin-left: 15px;
}

.woocommerce-mini-cart-item a:hover {
    color: #f44336;
}

/* Price and Quantity Styling */
.woocommerce-mini-cart-item .quantity,
.woocommerce-mini-cart-item .woocommerce-Price-amount {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    font-weight: 600;
    vertical-align: middle;
}

/* Price Formatting */
.woocommerce-mini-cart-item .woocommerce-Price-amount {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* Cart Count Badge Styling */
.cart-count {
    border-radius: 50%;
}

/* Total and Buttons Section */
.woocommerce-mini-cart__total {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.woocommerce-mini-cart__total strong {
    color: #f44336;
}

.woocommerce-mini-cart__total .woocommerce-Price-amount {
    font-size: 18px;
    font-weight: 700;
}

/* View Cart and Checkout Button Styling */
.woocommerce-mini-cart__buttons a {
    background-color: #f44336;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.3s ease-in-out;
}

.woocommerce-mini-cart__buttons a:last-child {
    float: right;
}

.woocommerce-mini-cart__buttons a:hover {
    background-color: #e53935;
}

/* Button Styling on Hover */
.woocommerce-mini-cart__buttons a:focus,
.woocommerce-mini-cart__buttons a:hover {
    outline: none;
    background-color: #d32f2f;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .mini-cart-wrapper .mini-cart-dropdown {
        max-height: 400px;
        width: 320px !important;
        right: -300%;
    }

    .woocommerce-mini-cart-item {
        padding: 10px 0;
    }

    .woocommerce-mini-cart-item img {
        max-width: 50px;
    }

    .woocommerce-mini-cart__total {
        font-size: 14px;
    }

    .woocommerce-mini-cart__buttons a {
        padding: 8px 16px;
        font-size: 12px;
    }
}
/* WC - CSS - End */