/* #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
} */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
}

.rgb-loader {
    position: relative;
    width: 150px;
    height: 150px;
}

.color-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 6px solid transparent;
    border-top: 6px solid red;
    border-right: 6px solid orange;
    border-bottom: 6px solid cyan;
    border-left: 6px solid lime;
    animation: spinBorder 1.5s linear infinite;
    z-index: -1;
    box-shadow: 0 0 10px red, 0 0 20px orange, 0 0 30px yellow;
}

.logo-static {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    /* background: #000; */
    z-index: 2;
}

@keyframes spinBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



/*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*/
/*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*/
/*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*/

html {
    height: 100%;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    font-family: "Outfit", sans-serif;
    margin: 0;
}
body > *:not(.footer-container) {
    flex-shrink: 0;
}
.footer-container{
    margin-top: auto;

}

nav {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
    align-items: center;
    padding: 24px 24px;
    flex-wrap: wrap;
    position: fixed;
    /* <-- make it fixed */
    top: 0;
    /* <-- stick to top */
    left: 0;
    /* <-- align left */
    width: 100%;
    /* <-- full width */
    z-index: 9999;
    /* <-- stay above other content */
}

nav.scrolled {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    position: absolute;
    left: 5%;
}

.menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-btn div {
    width: 25px;
    height: 3px;
    background-color: rgb(0, 0, 0);
    transition: 0.3s;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 1rem;
}

.nav-links a:hover {
    color: #343434;
}

/* ========== Mobile Styles ========== */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
        position: absolute;
        right: 5%;
        top: 35%;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.4s ease;
        z-index: 2;
    }

    .nav-links.show {
        /* max-height: 300px; */
        max-height: max-content;
        opacity: 1;
        padding-bottom: 20px;
    }

    .nav-links a {
        padding: 3px 24px;
        width: 100%;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* .bottom-nav {
    height: 80px;
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #4C687D;
    padding: 5px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1000;
}

.bottom-nav a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 20px;
    padding: 0 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-radius: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
}

i.fa-regular.fa-heart,
i.fa-solid.fa-cart-shopping,
i.fa-solid.fa-magnifying-glass,
i.fa-solid.fa-user {
    padding: 10px 0px;
}

.bottom-nav img {
    width: 75px;
    height: 100%;
    border-radius: 50%;
    transition: transform 0.3s ease;
    position: relative;
    bottom: 25px;
}


.bottom-nav a.nav-icons.active {
    background-color: rgba(255, 0, 0, 0.151);
    transform: scale(1.3);
    color: red;
}

.bottom-nav img:hover {
    transform: scale(1.1);
} */







/* club section */
.club-title {
    text-align: center;
    margin: 40px;
}

.owl-carousel .owl-stage {
    display: flex !important;
    justify-content: space-between;
}

.owl-carousel .item img {
    width: 100% !important;
    object-fit: cover;
}

/* Center Owl Carousel nav buttons */

.heading {
    text-align: center;
    padding: 120px 0 40px;

}

.decorated-heading {
    font-family: "Outfit", sans-serif;
    text-transform: uppercase;
    font-size: 24px;
    white-space: 5px;
}

/* .decorated-heading {
    position: relative;
    display: inline-block;
    padding: 0 40px;
    font-family: "Outfit", sans-serif;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: bold;
}

.decorated-heading::before,
.decorated-heading::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.decorated-heading::before {
    left: 0;
}

.decorated-heading::after {
    right: 0;
}
 */


.owl-club,
.owl-country {
    position: relative;
}

.owl-theme .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 35%;
    width: 100%;
    padding: 0 10px;
    pointer-events: none;
}


.owl-nav button.owl-prev,
.owl-nav button.owl-next,
.custom-nav button {
    background: rgba(255, 255, 255, 0.8) !important;
    color: rgb(0, 0, 0) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important; 
    border-radius: 50% !important;
    font-size: 20px !important;
    cursor: pointer !important;
    transition: all 0.3s ease-in-out !important;
    position: relative !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px !important; 
    height: 40px !important;
    padding: 0 !important;
    pointer-events: auto; 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); 
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover,
.custom-nav button:hover {
    background: rgba(0, 0, 0, 0.8) !important; 
    color: white !important; 
    transform: scale(1.1); 
}

/* Remove default text inside nav buttons */
.owl-nav button.owl-prev span,
.owl-nav button.owl-next span {
    display: none;
    line-height: 1;
}

/* Add Font Awesome icons using pseudo-elements */
.owl-nav button.owl-prev::before {
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.owl-nav button.owl-next::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Position buttons more to edges */
.owl-nav button.owl-prev {
    margin-left: -20px;
}

.owl-nav button.owl-next {
    margin-right: -20px;
}

/* Make custom nav buttons clickable */
.custom-nav button {
    pointer-events: auto;
}

/* Add hover effect to carousel items */
.owl-players .item img,
.owl-clubs .item img,
.owl-countries .item img {
    transition: transform 0.3s ease;
}

.owl-players .item:hover img,
.owl-clubs .item:hover img,
.owl-countries .item:hover img {
    transform: scale(1.05);
}

/* only use players section */
.custom-nav {
    position: absolute;
    top: 50%;
    left: 10px;
    right: -10px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0;
    pointer-events: none;
    z-index: 2;
}


.player-carousel-section {
    padding: 2rem 0;
    text-align: center;
}

.owl-players .item,
.owl-clubs .item,
.owl-countries .item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-players .item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}




/****************** product listing area ******************/

.product-listing .row.g-4 > [class*='col-'] {
    display: flex;
    
}


.product-card {
    flex: 1;
    position: relative;
    border-radius: 5px;
    padding: 15px;
    text-align: justify;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;


}

/* .product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
} */

.product-img {
    /* max-width: 100%; */
    width: 100%;
    height: 270px;
    object-fit: contain;
    border-radius: 8px;
}

.product-name {
    font-size: 16px;
    font-weight: 500;
    margin-left: 10px;
}

.product-price {
    color: rgba(0, 0, 0, 0.677);
    font-weight: bold;
    margin-top: 5px;
    margin-left: 10px;
}

.cart-icon {
    position: absolute;
    top: 10px;
    /* right: 20px; */
    left: 20px;
    font-size: 18px;
    color: #fd0000;
    cursor: pointer;
    padding: 6px;
    transition: 0.2s;
}


/* .cart-icon:hover {
      background: #0d6efd;
      color: #fff;
    } */
.delete {
    color: rgba(66, 65, 65, 0.681);
    font-size: 10px;
}







/* footer section */
.borderline {
    /* border-top: 1px solid gray; */
    margin-top: 75px;
    border-top: 1px solid #cbcbcb;
}

.site-footer {
    background: #ffffff;
    color: #292727;
    padding: 20px 20px 0px;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
}

.site-footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.site-footer .footer-logo img {
    width: 120px;
    margin-bottom: 10px;
}

.site-footer .footer-logo p {
    margin: 0;
    color: #2d2c2ce4;
}

.site-footer .footer-icon {
    color: #4a4947;
    margin-bottom: 8px;
    display: flex;
    gap: 15px;
    font-size: 25px;
}

.fa-instagram,
.fa-facebook,
.fa-whatsapp {
    color: #4a4947;
    transition: color 0.3s ease;
}

.fa-instagram:hover,
.fa-facebook:hover,
.fa-whatsapp:hover {
    color: rgb(255, 85, 0);
}


.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #2f2f2f;
    border-top: 1px solid #cbcbcb;
    padding-top: 15px;
}


select:focus,
.form-select:focus,
.form-control:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #ccc !important;
    border: none !important;
    appearance: none;
}


/**********************************************************             ********************************************************/
/********************************************************** mobile view ********************************************************/
/**********************************************************             ********************************************************/

@media (max-width: 1024px) {
    .owl-theme .owl-nav {
        top: 20%;
    }
}

@media (max-width: 768px) {

    /* products */
    .product-img {
        height: 135px;
    }

    .product-name {
        font-size: 15px;
    }

    .product-price {
        margin-top: 0px;
        font-size: 13px;
    }

    /* owl carousel */
    .owl-theme .owl-nav {
        top: 25%;
    }
    .owl-nav button.owl-prev {
        margin-left: -10px;
    }
   
    .owl-nav button.owl-next {
        margin-right: -10px;
    }

     .heading {
        padding: 90px 0 0px;
    }
}

@media (max-width: 426px) {
    .custom-nav {
        display: none;
    }

    .product-card {
        padding: 10px 5px;
    }

    .heading {
        text-align: center;
        padding: 83px 0 0px;
    }

    /* i.fa-regular.fa-heart,
    i.fa-solid.fa-cart-shopping,
    i.fa-solid.fa-magnifying-glass {
        position: absolute;
        right: 12px;
        font-size: 14px;
    } */



    /* owl carousel */
    .owl-theme .owl-nav {
        top: 20%;
    }

    /* foooter */

    .site-footer .footer-logo p {
        font-size: 10px;
    }

    .site-footer .footer-icon {
        font-size: 20px;
    }
}

@media (max-width: 375px) {
    .product-name {
        font-size: 13px;
    }
}

@media (max-width: 320px) {
    .owl-theme .owl-nav {
        top: 0%;
    }

    a.wishlist-btn {
        position: absolute;
        left: 150px;
        top: 0px;
    }
}




.nav-links .dropdown {
    position: relative;
    display: inline-block;
}

.nav-links .dropdown .dropbtn {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links .dropdown .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 140px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 9999;
    /* top: 100%; */
    top :48px;
    left: 0;
    padding-top: 10px;
    flex-direction: column;
}

.nav-links .dropdown:not(.show):hover .dropdown-content {
    display: none;
}

.nav-links .dropdown .dropdown-content a {
    color: #000;
    padding: 10px 12px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.nav-links .dropdown .dropdown-content i{
    margin-right: 10px;
}

.nav-links .dropdown .dropdown-content a:hover {
    background-color: #d8d8d8ff;
    color: #202020ff;
}

.nav-links .dropdown.show .dropdown-content {
    display: flex;
    flex-direction: column;
}

/* Show dropdown on hover for desktop */


/* On mobile, dropdowns appear like normal links in the toggle menu */
@media (max-width: 768px) {
    .nav-links .dropdown .dropdown-content {
        position: relative;
        background-color: #fff;
        top: 0;
        left: 0;
        min-width: 100%;
        box-shadow: none;
        display: none;
        padding-left: 20px;
    }

    .nav-links .dropdown.show .dropdown-content {
        display: flex;
        flex-direction: column;
    }

    .nav-links .dropdown .dropbtn::after {
        content: "\25BC"; /* small arrow */
        margin-left: 5px;
        font-size: 10px;
    }
}


@media (min-width:768px){
    .nav-links .p-search {
        position: absolute !important;
        right: 13% !important;
        /* padding: 4px; */
    }

    .nav-links .p-icon {
        position: absolute !important;
        right: 10% !important;
        padding: 4px;
    }

    .nav-links .dropdown.p-icon .dropdown-content{
        left: -20px;
        top: 48px;
    }
}



/* Empty State Styling */
/* Empty State Container */
.empty-data {
    display: block;
    margin: 0px auto; /* adds spacing */
    max-width: 500px;
    height: auto;
    opacity: 0.9;
    position: relative; /* back to normal flow */
    transform: none; /* remove center positioning */
}

/* Tablet View */
@media (max-width: 992px) {
    .empty-data {
        max-width: 80%;
        max-height: 300px;
    }
}

/* Mobile View */
@media (max-width: 576px) {
    .empty-data {
        max-width: 85%;
        max-height: 250px;
    }
}

/* Ultra-wide screens (web >1400px) */
@media (min-width: 1400px) {
    .empty-data {
        max-width: 90%;
        max-height: 550px;
    }
}

