/**
 * Football Land – product page design tokens & supplemental styles.
 * Main layout rules live in custom.css; this file adds variables and refinements.
 */
:root {
    --fl-black: #000000;
    --fl-gold: #c5a059;
    --fl-gold-dark: #d6a743;
    --fl-white: #ffffff;
    --fl-grey-light: #f8f8f8;
    --fl-green: #28a745;
    --fl-radius: 4px;
    --fl-font: "Montserrat", "Inter", "Roboto", "Helvetica Neue", Arial, sans-serif;
}

body#product #main,
#main {
    font-family: var(--fl-font);
}

/* Product rating module output */
body#product .fl-product-rating,
body#product .iqitreviews-simple.fl-product-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

body#product .fl-rating-score {
    color: #111;
    font-size: 14px;
    font-weight: 700;
}

body#product .fl-product-rating .iqitreviews-nb {
    color: #666;
    font-size: 14px;
    font-weight: 400;
}

/* Attribute pills (JOUEUR) vs square sizes (TAILLE) */
body#product .fl-attr-pill .radio-label {
    border-radius: 999px;
    min-width: auto;
    padding: 10px 18px;
}

body#product .fl-attr-size .radio-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
    padding: 0 12px;
    border-radius: var(--fl-radius);
}

body#product .fl-product-variants input:checked + .radio-label {
    border-color: var(--fl-gold);
    background: var(--fl-white);
    color: var(--fl-black);
    box-shadow: inset 0 0 0 1px var(--fl-gold);
}

body#product .fl-product-variants .fl-attr-size input:checked + .radio-label {
    border-color: var(--fl-black);
    background: var(--fl-black);
    color: var(--fl-white);
    box-shadow: none;
}

/* Video button */
body#product .fl-video-btn,
body#product .after-cover-tumbnails .fl-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 16px;
    border: 1px solid #d8d8d8;
    border-radius: var(--fl-radius);
    background: var(--fl-white);
    color: #111;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

body#product .fl-video-btn:hover {
    border-color: var(--fl-gold);
    color: var(--fl-gold);
}

/* Wishlist text link */
body#product .fl-wishlist-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

body#product .fl-wishlist-link:hover {
    color: var(--fl-gold);
}

body#product .fl-wishlist-link .added {
    display: none;
}

body#product .fl-wishlist-link.is-added .not-added {
    display: none;
}

body#product .fl-wishlist-link.is-added .added {
    display: inline;
    color: var(--fl-gold);
}

/* Footer trust row */
#main .fl-footer-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1370px;
    margin: 0 auto 32px;
    padding: 24px 34px;
    border-top: 1px solid #e5e5e5;
    background: var(--fl-white);
}

#main .fl-footer-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

#main .fl-footer-trust-item i {
    color: var(--fl-gold);
    font-size: 22px;
}

#main .fl-footer-trust-item span {
    color: #111;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
}

/* Stock badge green */
body#product #product-availability.product-available,
body#product #product-availability.badge-success {
    color: var(--fl-green);
}

/* Zoom expander */
body#product .product-cover .expander span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    background: var(--fl-white);
    color: #111;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

@media (max-width: 991px) {
    #main .fl-footer-trust {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    #main .fl-footer-trust {
        grid-template-columns: 1fr;
        padding: 22px 18px;
    }
}

/* Prefer accessories carousel over category products when both exist */
body#product #main .product-accessories.block-section ~ .category-products.block-section {
    display: none !important;
}

/* Hide duplicate social/additional blocks on product sheet. */
body#product .product-additional-info,
body#product .social-sharing {
    display: none !important;
}

/* Breadcrumb white bar */
body#product #wrapper .breadcrumb,
body#product .breadcrumb-wrapper .breadcrumb {
    margin: 0;
    padding: 12px 38px;
    border-bottom: 1px solid #eee;
    background: var(--fl-white);
    color: #666;
    font-size: 13px;
}

body#product #wrapper .breadcrumb a {
    color: #666;
}

/* Cart badge gold */
body#product .cart-products-count,
body#product #_desktop_cart .cart-products-count.badge,
body#product .header-cart .badge {
    background: var(--fl-gold) !important;
    color: var(--fl-white) !important;
    border: 0;
}

/* Gallery: left thumbs + video under column */
body#product .images-container-left .col-left-product-thumbs {
    display: flex;
    flex-direction: column;
}

body#product .after-cover-tumbnails {
    margin-top: 4px;
    text-align: left;
}

body#product .images-container-left .product-cover {
    position: relative;
}

body#product .product-cover .expander {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    background: var(--fl-white) !important;
    color: var(--fl-black) !important;
    box-shadow: 0 10px 24px rgba(17, 17, 17, .08);
}

body#product .product-lmage-large .expander {
    display: none !important;
}

/* Product tabs – gold underline */
#main .fl-product-info-section .product-tabs .nav-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 28px;
    margin-bottom: 22px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}

#main .fl-product-info-section .product-tabs .nav-link {
    position: relative;
    margin: 0;
    padding: 14px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #111;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

#main .fl-product-info-section .product-tabs .nav-link.active,
#main .fl-product-info-section .product-tabs .nav-link:hover {
    color: #111;
    background: transparent;
}

#main .fl-product-info-section .product-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--fl-gold);
}

#main .fl-product-info-section .tab-content {
    color: #303030;
    font-size: 14px;
    line-height: 1.65;
}

#main .fl-product-info-section .fl-tab-static p {
    margin-bottom: 12px;
}

/* Hide brand line in buy box */
body#product .product_header_container .product-manufacturer,
body#product .product_header_container label.label,
body#product .product_header_container label.label + span,
body#product .product-manufacturer {
    display: none !important;
}

/* Price + stock row */
body#product .product-prices .product-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

body#product #product-availability {
    float: none;
    margin: 0;
    order: 2;
}

body#product #product-availability::before {
    content: "\f00c";
    font-family: FontAwesome;
    margin-right: 6px;
}

/* Variant pills wrap */
body#product .fl-product-variants .fl-variant-pills .radio-label {
    max-width: 100%;
    white-space: normal;
    line-height: 1.25;
    text-align: center;
}

body#product .fl-attr-pill .fl-variant-pills {
    gap: 8px;
}

body#product .fl-qty-label,
#main .fl-qty-label {
    display: block;
    margin: 20px 0 10px;
    color: #111;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

/* Carousel arrows – related products */
#main .category-products .swiper-button-prev,
#main .category-products .swiper-button-next,
#main .product-accessories .swiper-button-prev,
#main .product-accessories .swiper-button-next {
    top: 42%;
    width: 40px;
    height: 40px;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    background: var(--fl-white);
    color: #111;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

#main .category-products .swiper-button-prev::after,
#main .category-products .swiper-button-next::after,
#main .product-accessories .swiper-button-prev::after,
#main .product-accessories .swiper-button-next::after {
    font-size: 14px;
    font-weight: 800;
}

/* Service strip card */
#main .fl-service-strip {
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    background: var(--fl-white);
    box-shadow: 0 18px 40px rgba(17, 17, 17, .035);
}

#main .fl-service-strip > div {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 14px;
    align-items: center;
}

#main .fl-service-strip > div > div {
    display: block;
    min-width: 0;
}

#main .fl-service-strip strong,
#main .fl-service-strip span {
    display: block;
    line-height: 1.25;
}

/* Official badge star icon */
#main .fl-official-card--satisfaction .fl-official-icon::before {
    content: "\f005";
    font-family: FontAwesome;
}

#main .fl-official-card--satisfaction .fa-smile-o {
    display: inline-block;
}

/* Gold badge color unify */
body#product .fl-product-badge,
#main .fl-product-badge {
    background: var(--fl-gold);
}

/* Product visual polish loaded after the Warehouse custom stylesheet. */
#main .fl-product-sheet {
    gap: 0;
}

#main .col-product-image .images-container,
body#product #main .col-product-image .images-container {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    background:
        radial-gradient(ellipse at 55% 82%, rgba(15, 15, 15, .12), transparent 18%),
        linear-gradient(145deg, rgba(255, 255, 255, .95) 0%, rgba(248, 248, 248, .98) 42%, rgba(255, 255, 255, 1) 100%);
}

#main .thumb-container,
body#product #main .thumb-container {
    border-radius: 8px;
    background: #fafafa;
}

#main .thumb-container .thumb.selected,
body#product #main .thumb-container .thumb.selected {
    box-shadow: inset 0 0 0 2px var(--fl-gold);
}

#main .images-container-left #product-images-large .swiper-wrapper,
body#product #main .images-container-left #product-images-large .swiper-wrapper {
    display: flex !important;
    align-items: center;
}

#main .images-container-left #product-images-large .swiper-slide,
#main .images-container-left #product-images-large .product-lmage-large,
body#product #main .images-container-left #product-images-large .swiper-slide,
body#product #main .images-container-left #product-images-large .product-lmage-large {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    height: 612px;
    margin: 0 !important;
    align-items: center;
    justify-content: center;
}

#main .images-container-left #product-images-large .easyzoom,
#main .images-container-left #product-images-large .easyzoom a,
body#product #main .images-container-left #product-images-large .easyzoom,
body#product #main .images-container-left #product-images-large .easyzoom a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

#main .images-container-left #product-images-large img,
body#product #main .images-container-left #product-images-large img {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 612px !important;
    object-fit: contain;
}

#main .fl-product-info-section__tabs,
#main .fl-product-info-section__badges {
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    background: var(--fl-white);
}

#main .fl-product-info-section__tabs {
    padding: 24px 38px 26px;
}

#main .fl-product-info-section__badges {
    padding: 22px 28px;
}

#main .fl-official-badges {
    gap: 0;
}

#main .fl-official-card {
    grid-template-columns: 58px 1fr;
    padding: 26px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

#main .fl-official-card + .fl-official-card {
    border-top: 1px solid #e7e7e7;
}

#main .fl-official-card:first-child {
    padding-top: 0;
}

#main .fl-official-card:last-child {
    padding-bottom: 0;
}

#main .fl-official-logo {
    width: 58px;
    height: 58px;
}

#main .fl-official-icon {
    width: 52px;
    height: 52px;
    border: 2px solid var(--fl-gold);
    border-radius: 50%;
    color: var(--fl-gold);
    font-size: 24px;
    line-height: 48px;
    text-align: center;
}

#main .fl-product-info-section .product-tabs .nav-tabs {
    gap: 4px 42px;
}

#main .fl-product-info-section .product-tabs .nav-link {
    font-size: 12px;
}

body#product > .container-blockreassurance {
    display: block !important;
}

body#product > .container-blockreassurance .blockreassurance {
    max-width: 1370px;
}

body#product .fl-wishlist-row .btn-iqitwishlist-add::after {
    content: none !important;
}

body#product #main .blockreassurance_product {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    max-width: 1370px;
    margin: 42px auto 22px;
    padding: 26px 34px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
}

body#product #main .fl-product-footer-strip .blockreassurance_product {
    margin: 0 auto 32px;
}

body#product #main .fl-delivery-card {
    display: block;
    margin: 18px 0 34px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

body#product #main .fl-delivery-card .blockreassurance_product {
    display: block !important;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

body#product #main .fl-delivery-card .blockreassurance_product > div {
    display: none !important;
}

body#product #main .fl-delivery-card .blockreassurance_product > div:first-child {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 14px;
    min-height: 76px;
    padding: 16px 22px;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    background: #fbfbfb;
    align-items: center;
}

body#product #main .fl-delivery-card .blockreassurance_product .item-product {
    grid-row: span 2;
}

body#product #main .fl-delivery-card .blockreassurance_product img,
body#product #main .fl-delivery-card .blockreassurance_product svg {
    width: 28px !important;
    height: 28px !important;
    filter: brightness(0);
}

body#product #main .fl-delivery-card .blockreassurance_product .block-title {
    font-size: 13px;
}

body#product #main .fl-delivery-card .blockreassurance_product p {
    font-size: 13px;
}

body#product .fl-product-rating .iqitreviews-rating {
    color: var(--fl-gold);
    letter-spacing: 1px;
}

body#product .product-prices {
    position: relative;
}

body#product .product-prices #product-availability {
    position: absolute;
    right: 0;
    bottom: 6px;
    padding: 0;
    border: 0;
    background: transparent !important;
    color: var(--fl-green) !important;
    font-size: 13px;
    font-weight: 600;
    text-transform: none;
}

body#product .tax-shipping-delivery-label {
    max-width: calc(100% - 120px);
    color: #666;
    font-size: 12px;
    line-height: 1.45;
}

body#product #main .images-container-left #product-images-large .product-lmage-large {
    height: 660px;
}

body#product #main .images-container-left #product-images-large img {
    max-height: 660px !important;
}

body#product #main .blockreassurance_product > div {
    display: grid !important;
    grid-template-columns: 34px 1fr;
    column-gap: 14px;
    align-items: center;
}

body#product #main .blockreassurance_product .item-product {
    grid-row: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

body#product #main .blockreassurance_product img,
body#product #main .blockreassurance_product svg {
    width: 25px !important;
    height: 25px !important;
    object-fit: contain;
    filter: sepia(1) saturate(3) hue-rotate(350deg);
}

body#product #main .blockreassurance_product .block-title {
    display: block;
    margin: 0;
    color: #111 !important;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

body#product #main .blockreassurance_product p {
    grid-column: 2;
    margin: 2px 0 0;
    color: #666 !important;
    font-size: 13px;
    line-height: 1.35;
}

body#product #footer {
    border-top: 1px solid #e5e5e5;
    background: #fff;
}

body#product #footer > .elementor {
    display: none !important;
}

@media (max-width: 991px) {
    #main .fl-product-info-section__tabs,
    #main .fl-product-info-section__badges {
        padding: 22px;
    }

    body#product #main .blockreassurance_product {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    #main .fl-product-info-section__tabs,
    #main .fl-product-info-section__badges {
        padding: 18px;
    }

    body#product #main .blockreassurance_product {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    body#product #main .images-container-left .row {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
    }

    body#product #main .images-container-left .col-left-product-cover {
        order: 1;
        flex: 0 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    body#product #main .images-container-left .col-left-product-thumbs {
        order: 2;
        flex: 0 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        max-height: 96px !important;
        margin-top: 12px;
        padding: 0 !important;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
    }

    body#product #main .images-container-left .col-left-product-thumbs::-webkit-scrollbar {
        display: none;
    }

    body#product #main .images-container-left #product-images-large .swiper-wrapper,
    body#product #main .images-container-left #product-images-large .swiper-slide,
    body#product #main .images-container-left #product-images-large .product-lmage-large,
    body#product #main .images-container-left #product-images-large .easyzoom,
    body#product #main .images-container-left #product-images-large .easyzoom a {
        width: 100% !important;
        max-width: 100% !important;
        height: 420px !important;
        min-height: 0 !important;
    }

    body#product #main .images-container-left #product-images-large .swiper-slide,
    body#product #main .images-container-left #product-images-large .product-lmage-large {
        flex: 0 0 100% !important;
    }

    body#product #main .images-container-left #product-images-large picture,
    body#product #main .images-container-left #product-images-large img {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        max-height: 420px !important;
        object-fit: contain;
    }
}

body#product #main #pco_widget {
    margin: 8px 0 0;
}

body#product #main #pco_widget .pco-option-wrapper {
    margin: 0 0 24px;
}

body#product #main #pco_widget .label-option {
    display: block;
    margin: 0 0 10px;
    color: #111;
    font-size: 13px;
    font-weight: 800 !important;
    text-transform: uppercase;
}

body#product #main #pco_widget .pco-option-radio,
body#product #main #pco_widget .pco-option-checkboxes,
body#product #main #pco_widget .pco-option-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
}

body#product #main #pco_widget .pco-option-value-wrapper {
    margin: 0;
}

body#product #main #pco_widget .pco-option-value-wrapper label {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 16px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    background: #fff;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
}

body#product #main #pco_widget .pco-option-value-wrapper input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

body#product #main #pco_widget .pco-option-value-wrapper input:checked + label,
body#product #main #pco_widget .pco-option-value-wrapper label.selected,
body#product #main #pco_widget .pco-option.selected {
    border-color: var(--fl-gold);
    box-shadow: inset 0 0 0 1px var(--fl-gold);
}

body#product #main #pco_widget select.form-control {
    min-height: 42px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    background-color: #fff;
    color: #111;
    font-size: 13px;
    font-weight: 700;
}
