/* MYC modern WooCommerce shop */

:root {
    --myc-navy: #0A104A;
    --myc-gold: #B18A10;
    --myc-text: #212121;
    --myc-muted: #585858;
    --myc-line: #D9D9D9;
    --myc-card: #f6f6f6;
    --myc-radius-lg: 21px;
    --myc-radius-pill: 999px;
}

.myc-shop-page {
    padding: 32px 0 80px;
    background: #fff;
    color: var(--myc-text);
}

.myc-container {
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 0 clamp(52px, 5.2vw, 100px);
}

.myc-breadcrumbs, .myc-breadcrumbs a {
    color: var(--myc-muted);
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.myc-shop-hero {
    text-align: center;
    margin-bottom: 40px;
}

.myc-shop-title a, .myc-shop-title{
    margin: 0;
    font-size: clamp(34px, 4vw, 44px);
    line-height: 1.05;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--myc-navy);
}

.myc-shop-title mark,
.myc-shop-title span {
    color: var(--myc-gold);
    background: transparent;
}

.myc-shop-description {
    margin: 12px auto 0;
    max-width: 720px;
    color: var(--myc-navy);
    font-size: 20px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}

.myc-shop-description p {
    margin: 0;
}

.myc-shop-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.myc-shop-tag {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 70px;
    padding: 10px 15px;
    border: 1px solid transparent;
    border-radius: var(--myc-radius-pill);
    color: var(--myc-text);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    transition: border-color .2s ease, transform .2s ease;
}

.myc-shop-tag:hover,
.myc-shop-tag.is-active {
    border-color: var(--myc-tag-accent, var(--myc-gold));
    transform: translateY(-1px);
}

.myc-shop-tag-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    border-radius: 50%;
    color: var(--myc-navy);
    background: #f4f4ef;
    overflow: hidden;
}

.myc-shop-tag-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.myc-shop-tag-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: currentColor;
}

.myc-shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
}

.myc-shop-toolbar .filters {
    display: flex;
    gap: 10px;
    align-items: center;
}

.myc-shop-search input, .myc-shop-order, .myc-price-button {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    gap: 4px;
    padding: 0 12px;
    border: 1px solid #dedede;
    border-radius: 3px;
    background: #fff;
    color: var(--myc-muted);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.myc-shop-search input {
    width: 190px;
}

.myc-shop-order select {
    border: 0;
    background: transparent;
    color: var(--myc-navy);
    font-weight: 500;
    outline: 0;
    font-size: 14px;
}

.myc-price-filter {
    position: relative;
}

.myc-price-button {
    cursor: pointer;
}

.myc-price-button strong {
    color: var(--myc-navy);
    font-weight: 500;
}

.myc-price-popover {
    position: absolute;
    z-index: 20;
    top: calc(100% + 10px);
    left: 50%;
    width: 310px;
    transform: translateX(-50%);
    padding: 20px;
    border: 1px solid var(--myc-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
}

.myc-price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--myc-navy);
    font-weight: 500;
    font-family: 'Open Sans';
    font-size: 14px;
}

button.myc-price-button {
    height: 38px;
}

.myc-price-slider {
    margin: 0px;
}

.myc-result-count {
    color: var(--myc-muted);
    font-size: 14px;
    font-family: 'Poppins';
}

.myc-shop-results {
    position: relative;
    min-height: 300px;
}

.myc-shop-results ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 44px 22px;
    margin: 0 !important;
    padding: 0 !important;
}

.myc-shop-results ul.products::before,
.myc-shop-results ul.products::after {
    display: none !important;
}

.myc-product-card {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

.myc-product-media {
    position: relative;
    height: 356px;
    border-radius: var(--myc-radius-lg);
    background: #fff;
    border: solid 1px var(--myc-card);
    box-shadow: 2px 2px 20px 0 var(--myc-card);
    overflow: hidden;
}

.myc-product-image-link {
    position: absolute;
    inset: 0;
    display: block;
}

.myc-product-image {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    padding: 10px;
    transition: opacity .25s ease, transform .25s ease;
}


.myc-product-media:hover .myc-product-image-main {
    opacity: 1;
    transform: scale(1.02);
}


.myc-wishlist,
.myc-wishlist-placeholder {
    position: absolute;
    z-index: 5;
    top: 10px;
    left: 10px;
}

.myc-wishlist-placeholder {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--myc-gold);
}

.myc-wishlist .yith-wcwl-add-to-wishlist {
    margin: 0;
}

.myc-wishlist a, .myc-wishlist .add_to_wishlist {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    color: var(--myc-gold);
    font-size: 0;
    text-decoration: none;
}


.myc-sale-ribbon {
    position: absolute;
    z-index: 6;
    top: 0;
    right: 0;
    width: 104px;
    height: 80px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    background-image: url(/wp-content/uploads/2026/07/sale.png);
    background-size: cover;
}

.myc-product-body {
    padding-top: 24px;
}

.myc-product-title, .myc-product-title a{
    margin: 0 0 8px;
    color: var(--myc-navy);
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    font-family: 'Open Sans', sans-serif;
}

.myc-product-title a {
    color: inherit;
    text-decoration: none;
}

.myc-product-rating {
    min-height: 22px;
    margin-bottom: 6px;
}

.myc-product-rating .star-rating {
    float: none;
    margin: 0;
    color: var(--myc-gold) !important;
    font-family: 'Poppins';
    font-weight: 300;
    min-height: 30px;
    display: flex;
    font-size: 16px;
}


.myc-product-excerpt {
    color: var(--myc-muted);
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.myc-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.woocommerce ul.products li.product .price, .woocommerce-page ul.products li.product .myc-product-price, .woocommerce ul.products li.product .price, .woocommerce-page ul.products li.product .myc-product-price .price {
    color: var(--myc-navy) !important;
    font-size: 20px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .02em !important;
    font-family: 'Open Sans', sans-serif !important;
}

.myc-product-price del {
    color: #aaa;
    opacity: 1;
    margin-right: 10px;
}

.myc-product-price ins {
    text-decoration: none;
}

.myc-add-to-cart {
    display: grid !important;
    place-items: center;
    width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0 !important;
    border-radius: 50% !important;
    background: var(--myc-navy) !important;
    color: #fff !important;
    font-size: 24px !important;
    line-height: 1 !important;
    text-decoration: none !important;
}

.myc-skeleton-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 44px 22px;
}

.myc-skeleton-card {
    min-height: 460px;
}

.myc-skeleton-image,
.myc-skeleton-line {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.myc-skeleton-image::after,
.myc-skeleton-line::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
    animation: mycSkeleton 1.2s infinite;
}

.myc-skeleton-image {
    height: 356px;
    border-radius: var(--myc-radius-lg);
}

.myc-skeleton-line {
    height: 14px;
    margin-top: 18px;
    border-radius: 999px;
}

.myc-skeleton-line-lg {
    width: 78%;
}

.myc-skeleton-line-sm {
    width: 42%;
}

@keyframes mycSkeleton {
    100% {
        transform: translateX(100%);
    }
}

.woocommerce-pagination {
    margin-top: 44px;
    text-align: center;
}

.woocommerce-pagination ul.page-numbers {
    display: inline-flex;
    gap: 8px;
    border: 0 !important;
}

.woocommerce-pagination ul.page-numbers li {
    border: 0 !important;
}

.woocommerce-pagination .page-numbers {
    display: grid;
    place-items: center;
    min-width: 38px;
    min-height: 38px;
    border-radius: 50%;
    color: var(--myc-navy);
    text-decoration: none;
}

.woocommerce-pagination .page-numbers.current {
    background: var(--myc-navy);
    color: #fff;
}

@media (max-width: 1024px) {
    .myc-shop-results ul.products,
    .myc-skeleton-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .myc-product-media,
    .myc-skeleton-image {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .myc-container {
        width: min(100% - 28px, 1118px);
    }

    .myc-shop-tags {
        justify-content: flex-start;
        gap: 12px;
    }

    .myc-shop-tag {
        min-height: 58px;
        padding: 6px 16px 6px 8px;
        font-size: 16px;
    }

    .myc-shop-tag-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .myc-shop-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .myc-shop-search input,
    .myc-shop-order,
    .myc-price-button {
        width: 100%;
    }

    .myc-price-popover {
        left: 0;
        width: 100%;
        transform: none;
    }

    .myc-shop-results ul.products,
    .myc-skeleton-grid {
        grid-template-columns: 1fr;
    }

    .myc-product-media,
    .myc-skeleton-image {
        height: 340px;
    }
}


.noUi-handle {
    border: 1px solid #D9D9D9;
    border-radius: 500px;
    background: #FFF;
    cursor: default;
    box-shadow: inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB;
}
.noUi-connect {
    background: #B18A10;
}
svg#yith-wcwl-icon-heart {
    width: 16px;
    height: 16px;
}
.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor {
    flex-direction: row;
    margin: auto;
    justify-content: center;
    gap: 0;
}
.yith-wcwl-add-to-wishlist-button:not(.yith-wcwl-add-to-wishlist-button--themed-button).yith-wcwl-add-to-wishlist-button--added svg.yith-wcwl-add-to-wishlist-button-icon {
    color: var(--myc-gold);
}
.star-rating {
    overflow: hidden;
    position: relative;
    height: auto;
    line-height: normal;
    width: auto;
    font-family: star;
    font-weight: 400;
}
.star-rating::before {
    opacity: 0;
    float: left;
    top: 0;
    left: 0;
    font-family: 'star';
    position: relative;
}
.star-rating.muted::before {
    opacity: 0.5;
    color:#585858 !important;
    float: left;
    top: 0;
    left: 0;
    font-family: 'star';
    position: relative;
}
.star-rating span {
    overflow: hidden;
    float: left;
    position: absolute;
    padding-top: 0;
    left: 0;
    top: 0;
}
.star-rating span::before {
    top: 0;
    position: relative;
    left: 0;
    color: var(--myc-gold) !important;
    padding-right: 5px;
    font-family: 'star';
}
.woocommerce-info, .woocommerce-noreviews, p.no-comments {
    background-color: transparent;
    color: var(--myc-navy);
    font-size: 20px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}
svg#yith-wcwl-icon-heart-outline {
    width: 16px;
    height: 16px;
}

/*CTA*/
section.myc-merch-banner {
    background-position: center;
    background-size: cover;
    padding: clamp(40px, 4vw, 80px) 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.myc-merch-banner__logo {
    display: flex;
    width: 100px;
    margin-bottom: 20px;
}
.myc-merch-banner__text p {
    color: #fff;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .02em;
    font-family: 'Open Sans', sans-serif;
    margin: 0 0 5px;
}
.myc-merch-banner__text h2 {
    margin: 0 0 20px;
    font-size: clamp(34px, 4vw, 44px);
    line-height: 1.05;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}
.myc-merch-banner__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.myc-merch-banner__cta {
    display: flex;
    gap: 15px;
    align-items: center;
}
.myc-merch-banner__cta p {
    color: #fff;
    font-size: 16px;
    line-height: 1.35;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    padding: 0;
}
.myc-merch-banner__cta a {
    background: linear-gradient(89.79deg, #D5B038 1.13%, #A57D02 96.85%), #020222;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 160px;
    color: #fff !important;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 500;
}
.myc-merch-banner__cta a:hover {
    transition: all 0.5s ease;
    transform: scale(0.95);
}
@media screen and (max-width:475px) {
    .myc-shop-title {
    font-size: 26px;
}
.myc-shop-description {
    font-size: 16px;
    width: 80%;
}
.myc-shop-tags {
    margin: 20px 0;
    gap: 10px;
    justify-content: center;
}
.myc-shop-tag {
    min-height: 40px;
    padding: 10px;
    font-size: 16px;
    gap: 10px;
}
.myc-shop-toolbar .filters {
    flex-direction: column;
    align-items: flex-start;
}
label.myc-shop-order {
    width: auto;
}
section.myc-merch-banner {
    padding: 60px 0;
}
.myc-merch-banner__text h2 {
    font-size: 24px;
    margin: 10px 0 20px;
}
.myc-merch-banner__cta {
    flex-direction: column;
}
.myc-product-rating .star-rating {
    float: none;
    margin: 0;
    color: var(--myc-gold);
    font-family: 'Poppins';
    font-weight: 300;
    height: 30px;
}
.myc-checkout-page {
    padding: 0 15px;
}
.myc-checkout-container {
    width: 100%;
}
.myc-checkout-steps {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border-radius: 999px;
    background: var(--myc-soft);
    margin: 0 auto;
}
.myc-checkout-steps span {
    padding: 0 10px;
    font-size: 12px;
    width: 33%;
    text-align: center;
    display: flex;
    justify-content: center;
}
.myc-checkout-grid {
    gap: 20px;
    display: flex;
    flex-direction: column-reverse;
}
.myc-checkout-card__number {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.myc-checkout-card__head {
    gap: 10px;
    margin-bottom: 20px;
}
.myc-checkout-card__head h2 {
    font-size: 24px;
    margin-bottom: 5px;
}
.myc-checkout-card__head p {
    font-size: 14px;
}
.myc-review-product.cart_item {
    display: flex;
}
}
a.et_pb_button.et_pb_button_0_tb_header.custom-hover.et_pb_bg_layout_dark {
    border-width: 2px !important;
    border-color: rgba(255, 255, 255, 0) !important;
    border-radius: 9px !important;
    font-size: 18px !important;
    font-family: "PoppinsMulti", Helvetica, Arial, Lucida, sans-serif !important;
    background-image: linear-gradient(90deg, #d5b038 0%, #a57d02 100%) !important;
}