/* =========================================================
   XXLSIZE - MOBILE RESPONSIVE OVERRIDES
   Put this file AFTER style.css
   Your PHP already loads:
   style.css
   responsive.css
========================================================= */

/* ---------- GLOBAL ---------- */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ---------- HEADER ---------- */

.site-header {
    width: 100%;
}

.header-container {
    width: 100%;
    max-width: 1400px;
    min-height: 82px;
}

@media (max-width: 900px) {

    body {
        padding-top: 112px !important;
    }

    .header-container {
        min-height: 112px !important;
        padding: 14px 18px !important;
        display: grid !important;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 8px 12px !important;
        align-items: center;
    }

    .site-logo {
        font-size: 22px !important;
        letter-spacing: 4px !important;
    }

    .header-actions {
        justify-self: end;
        gap: 6px !important;
    }

    .header-icon {
        width: 36px !important;
        height: 36px !important;
    }

    .header-icon i {
        font-size: 16px !important;
    }

    .cart-link {
        width: 36px;
        height: 36px;
        justify-content: center;
        gap: 0 !important;
    }

    .cart-link span:not(.cart-count) {
        display: none !important;
    }

    .cart-link i {
        font-size: 18px !important;
    }

    .main-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        display: flex !important;
        justify-content: flex-start !important;
        gap: 22px !important;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding: 3px 2px 6px !important;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav::-webkit-scrollbar {
        display: none;
    }

    .main-nav a {
        flex: 0 0 auto;
        font-size: 12px !important;
        padding: 5px 0 !important;
    }

    .main-nav a::after {
        bottom: 0 !important;
    }

    .cart-count {
        top: -4px !important;
        right: -4px !important;
        min-width: 16px !important;
        height: 16px !important;
        font-size: 9px !important;
    }
}

/* ---------- HERO ---------- */

.hero {
    width: 100%;
    overflow: hidden;
}

.hero .swiper-slide {
    position: relative;
    width: 100%;
    min-height: 620px;
    overflow: hidden;
}

.hero .swiper-slide > img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: center;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,.58),
        rgba(0,0,0,.12)
    );
}

.hero-content {
    position: absolute;
    z-index: 3;
    left: clamp(20px, 7vw, 100px);
    bottom: clamp(45px, 10vw, 100px);
    max-width: 560px;
    color: #fff;
}

.hero-content h1 {
    font-size: clamp(34px, 5vw, 72px);
    line-height: 1.05;
    margin-bottom: 14px;
}

.hero-content p {
    font-size: clamp(14px, 2vw, 20px);
    margin-bottom: 22px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
}

@media (max-width: 768px) {

    .hero .swiper-slide {
        min-height: 520px;
    }

    .hero .swiper-slide > img {
        height: 520px;
        object-position: center;
    }

    .hero .overlay {
        background: linear-gradient(
            180deg,
            rgba(0,0,0,.15),
            rgba(0,0,0,.68)
        );
    }

    .hero-content {
        left: 20px;
        right: 20px;
        bottom: 55px;
        max-width: none;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .hero .swiper-slide,
    .hero .swiper-slide > img {
        height: 440px;
        min-height: 440px;
    }

    .hero-content {
        left: 16px;
        right: 16px;
        bottom: 42px;
    }

    .hero-content h1 {
        font-size: 31px;
    }

    .hero-btn {
        width: 100%;
    }
}

/* ---------- FEATURE STRIP ---------- */

.features {
    padding: 45px 0 !important;
}

.feature-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px !important;
}

.feature-box {
    min-width: 0;
}

.feature-icon {
    width: 48px !important;
    height: 48px !important;
    padding: 11px !important;
}

.feature-box h4 {
    font-size: 16px !important;
}

.feature-box p {
    font-size: 13px !important;
}

@media (max-width: 700px) {

    .features {
        padding: 28px 0 !important;
    }

    .feature-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .feature-box {
        width: 100%;
        padding: 4px 0;
    }

    .feature-box:hover {
        transform: none;
    }

    .feature-icon {
        width: 42px !important;
        height: 42px !important;
        padding: 9px !important;
    }

    .feature-box h4 {
        font-size: 14px !important;
    }

    .feature-box p {
        font-size: 12px !important;
        margin-top: 3px !important;
    }
}

/* ---------- SECTION HEADINGS ---------- */

.section-title,
.section-heading {
    padding-left: 0;
    padding-right: 0;
}

.section-title h2,
.section-heading h2 {
    font-size: clamp(26px, 5vw, 42px) !important;
}

.section-title p,
.section-heading p {
    font-size: 14px !important;
}

@media (max-width: 600px) {

    .section-title {
        margin-bottom: 28px !important;
    }

    .section-title span {
        font-size: 10px !important;
        letter-spacing: 3px !important;
    }

    .section-title h2,
    .section-heading h2 {
        font-size: 26px !important;
    }
}

/* ---------- SHOP BY CATEGORY ---------- */

.categories {
    padding: 60px 0 !important;
}

.category-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
}

.category-card {
    border-radius: 14px !important;
}

.category-card .overlay {
    padding: 20px !important;
}

.category-card .overlay h3 {
    font-size: 22px !important;
}

.category-card .overlay span {
    font-size: 12px;
}

@media (max-width: 900px) {

    .category-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    .category-card .overlay h3 {
        font-size: 20px !important;
    }
}

@media (max-width: 480px) {

    .categories {
        padding: 45px 0 !important;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .category-card {
        border-radius: 10px !important;
    }

    .category-card .overlay {
        padding: 13px !important;
    }

    .category-card .overlay h3 {
        font-size: 16px !important;
        margin-bottom: 4px !important;
    }

    .category-card .overlay span {
        font-size: 10px;
    }

    .view-all {
        margin-top: 25px !important;
    }

    .view-all a {
        padding: 10px 18px !important;
        font-size: 12px !important;
    }
}

/* ---------- NEW ARRIVALS / PRODUCT GRID ---------- */

.new-arrivals {
    padding: 65px 0 !important;
}

.product-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 22px !important;
}

.product-image img {
    height: 420px !important;
    object-fit: cover;
}

.product-info {
    padding: 12px 2px !important;
}

.product-info h3 {
    font-size: 15px !important;
    line-height: 1.35;
}

.rating {
    font-size: 12px !important;
}

.price {
    font-size: 16px !important;
}

.add-cart {
    opacity: 1 !important;
    transform: none !important;
}

@media (max-width: 1000px) {

    .product-grid,
    .collection-products {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 18px !important;
    }

    .product-image img {
        height: 360px !important;
    }
}

@media (max-width: 700px) {

    .new-arrivals {
        padding: 45px 0 !important;
    }

    .product-grid,
    .collection-products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px 12px !important;
    }

    .product-image img {
        height: auto !important;
        aspect-ratio: 3 / 4 !important;
    }

    .wishlist {
        top: 8px !important;
        right: 8px !important;
        width: 34px !important;
        height: 34px !important;
        font-size: 17px !important;
    }

    .product-info h3 {
        font-size: 13px !important;
    }

    .rating {
        font-size: 10px !important;
        margin-bottom: 5px !important;
    }

    .price {
        font-size: 14px !important;
    }

    .add-cart {
        margin-top: 9px !important;
        padding: 9px 6px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 380px) {

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .product-grid,
    .collection-products {
        gap: 14px 9px !important;
    }

    .product-info h3 {
        font-size: 12px !important;
    }

    .price {
        font-size: 13px !important;
    }
}

/* ---------- PROMO BANNER ---------- */

.promo-banner {
    width: min(90%, 1320px) !important;
    height: 550px !important;
    margin: 35px auto 65px !important;
    padding: 0 70px !important;
}

.promo-content {
    max-width: 520px;
}

@media (max-width: 900px) {

    .promo-banner {
        width: calc(100% - 32px) !important;
        height: 430px !important;
        padding: 0 35px !important;
        border-radius: 16px !important;
    }

    .promo-content h2 {
        font-size: 40px !important;
    }

    .promo-content p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }
}

@media (max-width: 600px) {

    .promo-banner {
        height: 380px !important;
        padding: 0 22px !important;
        margin: 25px auto 45px !important;
        align-items: flex-end !important;
        padding-bottom: 28px !important;
    }

    .promo-tag {
        font-size: 10px !important;
        padding: 7px 12px !important;
        margin-bottom: 10px !important;
    }

    .promo-content h2 {
        font-size: 28px !important;
        margin-bottom: 10px !important;
    }

    .promo-content p {
        font-size: 12px !important;
        margin-bottom: 18px !important;
        line-height: 1.5 !important;
    }

    .promo-btn {
        padding: 11px 20px !important;
        font-size: 12px !important;
    }
}

/* ---------- EXPLORE COLLECTION ---------- */

.explore-collection {
    padding: 60px 0 !important;
}

.collection-tabs {
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 2px 2px 8px;
    margin: 25px 0 35px !important;
    -webkit-overflow-scrolling: touch;
}

.collection-tabs::-webkit-scrollbar {
    display: none;
}

.collection-tabs .tab-btn {
    flex: 0 0 auto;
    padding: 9px 18px !important;
    font-size: 12px !important;
}

@media (max-width: 600px) {

    .explore-collection {
        padding: 45px 0 !important;
    }

    .collection-products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* ---------- PRODUCT PAGE ---------- */

.product-page {
    padding: 45px 0 70px !important;
}

.product-wrapper {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 45px !important;
}

.product-gallery {
    max-width: none !important;
}

.main-image {
    height: auto !important;
    aspect-ratio: 4 / 5;
}

.thumb-images {
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
}

.thumb-images::-webkit-scrollbar {
    display: none;
}

.thumb-images img {
    flex: 0 0 82px;
    width: 82px !important;
    height: 105px !important;
}

.product-details h1 {
    font-size: 38px !important;
}

.product-buttons {
    flex-wrap: wrap;
}

.product-buttons > * {
    flex: 1 1 30%;
    min-width: 150px;
}

.trust-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    margin-top: 22px !important;
}

.trust-item {
    gap: 10px !important;
    padding: 14px !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 12px !important;
}

.trust-item i {
    width: 34px !important;
    min-width: 34px !important;
    font-size: 20px !important;
}

.trust-content h6 {
    font-size: 13px !important;
}

.trust-content p {
    font-size: 11px !important;
}

@media (max-width: 991px) {

    .product-wrapper {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }

    .product-gallery {
        position: static !important;
    }

    .product-details h1 {
        font-size: 32px !important;
    }

    .product-buttons {
        flex-direction: row !important;
    }
}

@media (max-width: 700px) {

    .product-page {
        padding: 25px 0 45px !important;
    }

    .breadcrumb {
        padding: 15px 0 !important;
        font-size: 12px !important;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .breadcrumb::-webkit-scrollbar {
        display: none;
    }

    .product-wrapper {
        gap: 25px !important;
    }

    .main-image {
        border-radius: 12px !important;
    }

    .product-details h1 {
        font-size: 26px !important;
    }

    .product-rating {
        font-size: 14px !important;
        margin-bottom: 12px !important;
    }

    .product-price {
        gap: 10px !important;
    }

    .sale-price {
        font-size: 26px !important;
    }

    .old-price {
        font-size: 17px !important;
    }

    .stock-status {
        padding: 6px 12px !important;
        margin-bottom: 15px !important;
        font-size: 12px !important;
    }

    .product-options {
        margin: 22px 0 !important;
    }

    .size-buttons {
        gap: 9px !important;
    }

    .size-btn {
        width: 48px !important;
        height: 48px !important;
        font-size: 14px !important;
    }

    .product-tabs {
        gap: 8px !important;
        margin: 25px 0 15px !important;
    }

    .product-tabs .tab-btn {
        min-width: calc(50% - 4px) !important;
        height: 48px !important;
        padding: 0 8px !important;
        font-size: 12px !important;
        border-width: 1px !important;
    }

    .tab-content {
        padding: 18px !important;
        font-size: 13px !important;
        line-height: 1.7 !important;
    }

    .qty-box {
        margin: 25px 0 !important;
    }

    .qty-selector {
        width: 155px !important;
        height: 50px !important;
    }

    .qty-selector button {
        width: 50px !important;
        height: 50px !important;
    }

    .product-buttons {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .product-buttons > * {
        min-width: 0 !important;
        width: 100%;
        height: 50px !important;
        font-size: 12px !important;
    }

    .product-buttons .whatsapp-btn {
        grid-column: 1 / -1;
    }

    .trust-badges {
        grid-template-columns: 1fr 1fr !important;
        gap: 9px !important;
    }

    .trust-item {
        padding: 11px 9px !important;
        gap: 7px !important;
    }

    .trust-item i {
        width: 27px !important;
        min-width: 27px !important;
        font-size: 17px !important;
    }

    .trust-content h6 {
        font-size: 11px !important;
    }

    .trust-content p {
        font-size: 9px !important;
    }
}

@media (max-width: 400px) {

    .product-buttons {
        grid-template-columns: 1fr !important;
    }

    .product-buttons .whatsapp-btn {
        grid-column: auto;
    }

    .trust-badges {
        grid-template-columns: 1fr !important;
    }
}

/* ---------- CART ---------- */

.cart-page {
    padding: 55px 0 60px !important;
}

.cart-wrapper,
.checkout-wrapper {
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr) !important;
}

@media (max-width: 800px) {

    .cart-wrapper,
    .checkout-wrapper {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .cart-right,
    .checkout-right {
        position: static !important;
    }

    .cart-left,
    .cart-right,
    .checkout-left,
    .checkout-right {
        padding: 20px !important;
    }

    .cart-item {
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .cart-item img {
        width: 90px !important;
        height: 115px !important;
    }

    .cart-info h3 {
        font-size: 16px !important;
    }
}

@media (max-width: 500px) {

    .cart-item {
        display: grid !important;
        grid-template-columns: 80px 1fr !important;
    }

    .cart-item img {
        width: 80px !important;
        height: 105px !important;
    }

    .cart-info h3 {
        font-size: 14px !important;
    }

    .cart-price {
        font-size: 15px !important;
    }

    .qty-control {
        gap: 5px !important;
    }

    .qty-control button {
        width: 34px !important;
        height: 34px !important;
    }
}

/* ---------- WISHLIST ---------- */

.wishlist-grid {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {

    .wishlist-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .wishlist-image {
        height: auto !important;
        aspect-ratio: 3 / 4;
    }
}

@media (max-width: 500px) {

    .wishlist-page {
        padding: 45px 0 !important;
    }

    .wishlist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .wishlist-content {
        padding: 12px !important;
    }

    .wishlist-top h3 {
        font-size: 13px !important;
    }

    .wishlist-price {
        font-size: 15px !important;
    }

    .wishlist-buttons {
        flex-direction: column;
        gap: 8px !important;
    }

    .wishlist-btn {
        width: 100%;
        padding: 10px !important;
        font-size: 12px !important;
    }
}

/* ---------- REVIEWS ---------- */

.review-summary {
    flex-wrap: wrap;
}

@media (max-width: 700px) {

    .reviews-section,
    .review-page {
        padding: 45px 0 !important;
    }

    .review-summary {
        padding: 20px !important;
        gap: 15px !important;
    }

    .big-rating {
        font-size: 42px !important;
    }

    .rating-number {
        font-size: 32px !important;
    }

    .review-card {
        gap: 12px !important;
    }

    .review-avatar {
        width: 42px !important;
        height: 42px !important;
        font-size: 15px !important;
    }
}

/* ---------- CHECKOUT ---------- */

@media (max-width: 700px) {

    .checkout-page {
        padding: 35px 0 50px !important;
    }

    .checkout-title {
        font-size: 28px !important;
        margin: 15px 0 25px !important;
    }

    .checkout-left,
    .checkout-right {
        padding: 18px !important;
        border-radius: 14px !important;
    }

    .checkout-steps {
        overflow-x: auto;
        justify-content: flex-start !important;
        padding-bottom: 5px;
    }

    .checkout-steps .line {
        width: 45px !important;
        margin: 0 8px !important;
    }

    .checkout-steps p {
        font-size: 11px !important;
    }

    .success-card {
        padding: 30px 20px !important;
    }

    .success-buttons {
        flex-direction: column;
    }

    .continue-btn,
    .orders-btn {
        width: 100%;
        text-align: center;
    }
}

/* ---------- RECENT / SIMILAR PRODUCTS ---------- */

@media (max-width: 900px) {

    .recent-products-grid,
    .similar-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

@media (max-width: 500px) {

    .recently-viewed,
    .similar-products {
        padding: 40px 0 !important;
    }

    .recent-products-grid,
    .similar-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .recent-product-info,
    .similar-product-info {
        padding: 10px !important;
    }

    .recent-product-info h3,
    .similar-product-info h3 {
        font-size: 13px !important;
    }

    .recent-price .sale-price,
    .similar-sale-price {
        font-size: 14px !important;
    }

    .recent-cart-btn,
    .similar-cart-btn {
        padding: 9px 6px !important;
        font-size: 11px !important;
    }

    .recent-wishlist-btn,
    .similar-wishlist-btn {
        width: 32px !important;
        height: 32px !important;
        top: 7px !important;
        right: 7px !important;
    }
}

/* ---------- FAQ ---------- */

@media (max-width: 600px) {

    .product-faq {
        margin-top: 45px !important;
    }

    .product-faq h2 {
        font-size: 26px !important;
        margin-bottom: 22px !important;
    }

    .faq-question {
        padding: 15px 16px !important;
        font-size: 14px !important;
    }

    .faq-question span {
        width: 28px !important;
        height: 28px !important;
        font-size: 18px !important;
        flex: 0 0 auto;
    }

    .faq-answer p {
        padding: 0 16px 18px !important;
        font-size: 13px !important;
    }
}

/* ---------- FLOATING WHATSAPP ---------- */

@media (max-width: 600px) {

    .floating-whatsapp {
        width: 48px !important;
        height: 48px !important;
        right: 14px !important;
        bottom: 14px !important;
        font-size: 23px !important;
    }
}

/* ---------- TOUCH DEVICES ---------- */

@media (hover: none) {

    .product-card:hover,
    .category-card:hover img,
    .similar-product-card:hover .similar-product-image img,
    .recent-product-card:hover {
        transform: none !important;
    }

    .add-cart {
        opacity: 1 !important;
        transform: none !important;
    }
}
/* =====================================================
   MOBILE HEADER
===================================================== */

@media (max-width: 768px) {

    .header-container {
        min-height: 70px;
        padding: 0 20px;
    }

    .site-logo {
        font-size: 24px;
        letter-spacing: 5px;
    }

    .main-nav {
        display: none;
    }

    .header-actions {
        gap: 14px;
    }

    .header-icon {
        font-size: 17px;
    }

    .cart-link span:not(.cart-count) {
        display: none;
    }


    /* CATEGORY NAV */

    .category-nav {
        justify-content: flex-start;

        gap: 28px;

        padding: 0 20px;

        min-height: 55px;

        overflow-x: auto;
        white-space: nowrap;

        scrollbar-width: none;
    }

    .category-nav::-webkit-scrollbar {
        display: none;
    }

    .category-nav a {
        font-size: 11px;
        letter-spacing: 1.5px;
        flex-shrink: 0;
    }

}

/* =====================================================
   XXLSIZE - TRUST STRIP
   FINAL OVERRIDE
===================================================== */

.features {
    width: 100% !important;
    padding: 0 !important;
    background: #fff !important;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
}

.feature-grid {
    width: 100% !important;
    max-width: 1320px !important;
    margin: 0 auto !important;

    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;

    gap: 0 !important;
}

.feature-box {
    width: auto !important;
    min-width: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;

    padding: 28px 20px !important;
    margin: 0 !important;

    border: none !important;
    border-right: 1px solid #dcdcdc !important;
    border-radius: 0 !important;

    background: #fff !important;
    box-shadow: none !important;
    transform: none !important;
}

.feature-box:last-child {
    border-right: none !important;
}

/* Hide the old icons */
.feature-icon {
    display: none !important;
}

.feature-box h4 {
    margin: 0 0 7px !important;

    font-size: 15px !important;
    line-height: 1.2 !important;

    font-weight: 700 !important;
    letter-spacing: 1.5px !important;

    color: #111 !important;
}

.feature-box p {
    margin: 0 !important;

    font-size: 11px !important;
    line-height: 1.3 !important;

    font-weight: 500 !important;
    letter-spacing: 1.5px !important;

    text-transform: uppercase;

    color: #777 !important;
}


/* MOBILE */
@media (max-width: 700px) {

    .feature-grid {
        grid-template-columns: 1fr !important;
    }

    .feature-box {
        border-right: none !important;
        border-bottom: 1px solid #dcdcdc !important;

        padding: 22px 15px !important;
    }

    .feature-box:last-child {
        border-bottom: none !important;
    }

}

/* =========================================
   PRODUCT IMAGE STICKY TEST
========================================= */

@media (min-width: 992px) {

    .product-wrapper {
        align-items: start !important;
        overflow: visible !important;
    }

    .product-gallery {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 110px !important;
        align-self: start !important;
        height: max-content !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .product-page {
        overflow: visible !important;
    }

    .product-page .container {
        overflow: visible !important;
    }

}