/* =========================
   SHOP SWIPER
========================= */

/* Use Eurostile throughout this component */
.shop-swiper,
.shop-subtitle,
.shop-heading,
.shop-tags,
.shop-cat,
.shop-card {
    font-family: "Eurostile Extended Regular", sans-serif;
}


/* =========================
   SECTION HEADER
========================= */

.shop-subtitle {
    font-size: .75rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: .15em;
}

.shop-heading {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #111;
}

/* =========================
   CARD
========================= */

.shop-card {
    border: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: transform .3s ease;
}

.shop-card:hover {
    transform: translateY(-5px);
}

/* =========================
   IMAGE
========================= */

.shop-image {
    position: relative;
    overflow: hidden;
}

.shop-image img {
    display: block;
    width: 85%;
}

/* Center the wheel image in its card so the nav arrows are spaced
   equally on both sides (left arrow previously overlapped the image
   because the 85%-wide image was left-aligned). */
.shop-swiper .shop-image img {
    margin: 0 auto;
}

.shop-card:hover .shop-image img {
    transform: scale(1.06);
}

/* Glass Shine */

.shop-glass {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.12),
        transparent
    );
    transform: translateX(-120%);
    transition: transform .7s ease;
}

.shop-card:hover .shop-glass {
    transform: translateX(120%);
}

/* =========================
   TYPOGRAPHY
========================= */

.shop-cat {
    font-size: .65rem;
    font-weight: 600;
    color: var(--gr1p-gray) !important;
    text-transform: uppercase;
    letter-spacing: .15em;
}

.shop-tags {
    font-size: .75rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: .15em;
}

.shop-title {
    margin: 0;
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
    color: #111;

    display: -webkit-box;
    overflow: hidden;

    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* =========================
   SWIPER
========================= */

.shop-swiper .swiper-slide {
    height: auto;
    cursor: grab;
}

.shop-swiper .swiper-slide:active {
    cursor: grabbing;
}

.shop-swiper .swiper-wrapper {
    will-change: transform;
}

.shop-swiper .swiper-button-prev,
.shop-swiper .swiper-button-next {
    color: var(--gr1p-dark) !important;
    opacity: .6;
    transition: opacity .2s ease;
    --swiper-navigation-size: 30px;
}

.shop-swiper .swiper-button-prev:hover,
.shop-swiper .swiper-button-next:hover {
    opacity: 1;
}

/* =========================
   EXPLORE WHEELS BUTTON
========================= */

.explore-wheels-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-transform: uppercase;
    text-decoration: none;

    background-color: rgb(230, 171, 64) !important;
    color: var(--e-global-color-b0ae53a) !important;

    font-weight: 600 !important;

    border: 1px solid rgb(230, 171, 64) !important;
    border-radius: 6px !important;

    padding: 10px 18px;

    font-size: 12.5px;
    letter-spacing: 0.06em;

    transition: all 0.25s ease;
}

/* HOVER EFFECT */
.explore-wheels-btn:hover {
    background-color: #111;
    border-color: #111;
    color: #fff;
    transform: translateY(-2px);
}

/* ICON */
.explore-wheels-btn i {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.2s ease;
}

/* ICON HOVER */
.explore-wheels-btn:hover i {
    transform: translateX(4px);
}

/* =========================
   RELATED PRODUCTS BOXED CONTAINER
========================= */

.related.products,
.related-products {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* =========================
   RELATED PRODUCTS SWIPER
========================= */

.related-swiper {
    overflow: hidden;
}

.related-swiper .swiper-wrapper {
    display: flex;
}

.related-swiper .swiper-slide {
    height: auto;
}

.related-swiper-pagination {
    display: none;
}

/* =========================
   RELATED PRODUCTS IMAGE
========================= */

.related .shop-image img,
.related-products .shop-image img,
.woocommerce .related .shop-image img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: auto;
    max-height: 260px;
}

/* =========================
   RELATED PRODUCTS DESKTOP SPACING
========================= */

.related .products li,
.related-products .products li,
.woocommerce .related .products li {
    margin-bottom: 0;
}

.related .shop-card,
.related-products .shop-card,
.woocommerce .related .shop-card {
    margin-bottom: 16px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .shop-title {
        font-size: .85rem;
    }

    .shop-cat,
    .shop-tags {
        font-size: .65rem;
    }

}

/* =========================
   SMALL MOBILE (<=480px)
========================= */

@media (max-width: 480px) {

    .shop-card {
        border-radius: 12px;
    }

    .shop-card .card-body {
        padding: 0.75rem !important;
    }

    .shop-title {
        font-size: .78rem;
        line-height: 1.3;
    }

    .shop-cat,
    .shop-tags {
        font-size: .6rem;
    }

    .explore-wheels-btn {
        padding: 8px 14px;
        font-size: 11px;
    }

    .shop-heading {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
    }

    .shop-subtitle {
        font-size: .65rem;
    }

    

}

@media (max-width: 991px) {
    .related .shop-image img,
    .related-products .shop-image img,
    .woocommerce .related .shop-image img {
        max-height: 260px;
        margin: 0 auto;
        text-align: center;
        display: block;
    }
    
    .related-swiper-pagination {
        display: flex;
        justify-content: center;
        margin-top: 16px;
    }

    .related-swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: #ccc;
        opacity: 1;
        margin: 0 4px;
    }

    .related-swiper-pagination .swiper-pagination-bullet-active {
        background: var(--gr1p-dark-gold);
    }
}