/* developed by web-premium.ir */

:root {
    --hmyt-pc-primary: #ee1844;
    --hmyt-pc-primary-hover: #f14669;
}

.hmyt-pc-wrapper {
    background: #eff3f8;
    display: flex;
    gap: 15px;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
    font-family: inherit;
    direction: rtl;
    margin-bottom: 20px;
    flex-direction: column;
}

.hmyt-pc-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.hmyt-pc-price-top-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
}

.hmyt-pc-old-price {
    color: #c3c3c7;
    font-size: 14px;
    text-decoration: line-through;
}

.hmyt-pc-old-price bdi,
.hmyt-pc-old-price .amount {
    text-decoration: line-through;
}

.hmyt-pc-discount-badge {
    background-color: #ee1844;
    color: #fff;
    font-size: 15px;
    line-height: 0;
    font-weight: 700;
    padding: 3px 5px 2px;
    border-radius: 6px;
    box-shadow: 3px 1px 4px #f1455942;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hmyt-pc-price-bottom-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.hmyt-pc-final-price {
    font-size: 20px;
    font-weight: 700;
    color: #080d19;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.hmyt-pc-final-price [aria-hidden="true"] {
    margin: 0 4px;
}

.hmyt-pc-price-bottom-row bdi,
.hmyt-mc-item-price bdi,
#hmyt-mc-total-price bdi {
    display: inline-flex; 
    align-items: center;
    gap: 4px;
    direction: rtl;
}



body .hmyt-pc-add-to-cart-btn {
    width: 100%;
    background-color: var(--hmyt-pc-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
   
    text-transform: none;
    text-shadow: none;
    letter-spacing: normal;
    box-shadow: none;
    outline: none;
    font-family: inherit;
}

body .hmyt-pc-add-to-cart-btn:hover {
    background-color: var(--hmyt-pc-primary-hover);
    color: #fff !important;
}

body .hmyt-pc-add-to-cart-btn:disabled, body .hmyt-pc-btn-disabled {
    width: 100%;
    background-color: transparent;
    color: var(--hmyt-pc-primary) !important;
    border: 1px solid var(--hmyt-pc-primary);
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    padding: 12px 16px;
    height: 46px;
    min-height: 46px;
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

body .hmyt-pc-select-options-btn {
    width: 100%;
    background-color: transparent;
    color: var(--hmyt-pc-primary) !important;
    border: 1px solid var(--hmyt-pc-primary);
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    padding: 12px 16px;
    height: 46px;
    min-height: 46px;
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
   
    text-transform: none;
    text-shadow: none;
    letter-spacing: normal;
    box-shadow: none;
    outline: none;
    font-family: inherit;
}

.hmyt-pc-meta-info {
    border-top: 1px solid #f0f0f1;
   
}

.hmyt-pc-divider {
    height: 1px;
    background-color: #f0f0f1;
    margin: 12px 0;
}

.hmyt-pc-spinner {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: hmyt-spin 1s linear infinite;
    display: inline-block;
}

@keyframes hmyt-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hmyt-highlight-form {
    animation: hmyt-flash 1s;
    border: 1px solid var(--hmyt-pc-primary);
    padding: 10px;
    border-radius: 8px;
}

@keyframes hmyt-flash {
    0% { background-color: rgba(239, 57, 78, 0.1); }
    100% { background-color: transparent; }
}

.hmyt-pc-notification-modal {
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 5px;
    pointer-events: none;
    background: linear-gradient(180deg,transparent,rgba(0,0,0,.3));
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hmyt-pc-notification-modal {
        bottom: 105px !important;
        padding-bottom: 30px;
        background: linear-gradient(180deg,transparent,rgba(0,0,0,.3));
    }
    
   
    body:has(.hmyt-mobile-sticky-footer.hmyt-footer-hidden) .hmyt-pc-notification-modal {
         bottom: 0px !important;
    }
}

.hmyt-pc-notification-content {
    pointer-events: auto;
}

.hmyt-pc-notification-modal.active {
    visibility: visible;
    opacity: 1;
}

.hmyt-pc-notification-content {
    background: #fff;
    border-radius: 8px;
    padding: 5px 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    max-width: 400px;
    border: 1px solid #f0f0f1;
    
   
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.hmyt-pc-notification-modal.active .hmyt-pc-notification-content {
    transform: translateY(0);
}


.hmyt-pc-notif-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

body .hmyt-pc-notif-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    color: #a1a3a8;
    border-radius: 50%;
    transition: color 0.2s;
}

body .hmyt-pc-notif-close:hover {
    color: #000;
    background: transparent !important;
}

.hmyt-pc-notif-close svg {
    width: 20px;
    height: 20px;
}

.hmyt-pc-notif-message {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.hmyt-pc-notif-message span {
    color: #3aad00;
}

.hmyt-pc-success-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hmyt-pc-go-cart-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #424750;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color 0.2s;
}

.hmyt-pc-go-cart-btn:hover {
    color: #000;
}

.hmyt-pc-go-cart-btn svg {
    width: 16px;
    height: 16px;
}

.hmyt-hidden {
    display: none !important;
}

.hmyt-pc-qty-controller {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hmyt-qty-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafcff;
    border: 1px solid #e0e0e2;
    border-radius: 12px;
    padding: 0 8px;
    width: 110px;
    height: 44px;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
    user-select: none;
}

.hmyt-qty-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 100%;
    color: #ee1844;
}

.hmyt-qty-btn svg {
    display: block;
}

.hmyt-qty-num {
    font-size: 18px;
    font-weight: 700;
    color: #ee1844;
    width: 30px;
    text-align: center;
}

.hmyt-qty-text-section {
    margin-right: 15px;
    flex-grow: 1;
    line-height: normal;
    align-content: center;
}

.text-in-cart {
    font-size: 11px;
    color: #424750;
    font-weight: 700;
    margin: 0 0 2px 0;
}

.link-cart {
    font-size: 11px;
    color: #a1a3a8;
}

.link-cart a {
    color: #19bfd3;
    text-decoration: none;
    font-weight: 700;
    margin-right: 4px;
    cursor: pointer;
}

.hmyt-qty-text-section > .link-cart > a.hmyt-trigger-mini-cart {
    color: #19bfd3;
    cursor: pointer;
}

.hmyt-pc-add-to-cart-btn {
    position: relative;
}

.hmyt-pc-wrapper .added_to_cart,
.hmyt-mobile-sticky-footer .added_to_cart,
a.added_to_cart.wc-forward {
    display: none !important;
}

.hmyt-pc-loading-spinner {
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

body .hmyt-pc-add-to-cart-btn {
    height: 46px;
    min-height: 46px;
    box-sizing: border-box;
}

body .hmyt-pc-add-to-cart-btn.loading .hmyt-btn-text {
    opacity: 0;
    visibility: hidden;
}

body .hmyt-pc-add-to-cart-btn.loading .hmyt-pc-loading-spinner,
body .hmyt-pc-add-to-cart-btn.loading .hmyt-button-loading {
    display: inline-flex !important;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0 !important;
    color: #fff !important;
}

body .hmyt-pc-add-to-cart-btn.loading {
    background-color: var(--hmyt-pc-primary) !important;
    border-color: var(--hmyt-pc-primary) !important;
    color: #fff !important;
    opacity: 0.9;
    cursor: wait;
}


body .hmyt-pc-add-to-cart-btn.loading::after,
body .hmyt-pc-add-to-cart-btn.loading::before {
    display: none !important;
    content: none !important;
}

.hmyt-qty-num svg {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.hmyt-pc-current-price bdi,
.hmyt-pc-old-price bdi {
   
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    font-weight: 500;
}

.hmyt-pc-vertical-slider {
    height: 24px;
    overflow: hidden;
   
    position: relative;
}

.hmyt-pc-slider-track {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hmyt-pc-slider-item {
    height: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.hmyt-pc-slider-item img {
    width: 18px;
    height: 18px !important;
    object-fit: contain;
    margin: 0 !important;
}

.hmyt-pc-slider-item p {
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    line-height: 24px;
}

.hmyt-info-card-container { direction: rtl; margin-bottom: 30px; }

.hmyt-info-rating-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 8px 0;
    font-size: 12px;
    color: #707070;
}

.hmyt-info-comments-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

@media (max-width: 768px) {
    .hmyt-rating-separator {
        display: none !important;
    }
    .hmyt-info-stars {
        width: 100%;
        margin-bottom: 2px;
    }
}

.hmyt-info-stars { display: flex; align-items: center; gap: 4px; color: #000; font-weight: 700; }
.hmyt-info-dot {width: 5px;height: 5px;background: #cdd4dc;border-radius: 50%;}
.hmyt-info-rating-row > .hmyt-info-link {text-decoration: none;font-weight: 600;color: #424750;padding: 3px 10px;border-radius: 15px;line-height: normal;background: #ecedffb3;display: flex;align-items: center;gap: 3px;}

.type-container {
    margin-bottom: 15px;
}

.mb-2 {
    margin-bottom: 8px !important;
}

.type-container-title {
    font-size: 14px;
    font-weight: 700;
    color: #424750;
}

.type-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 !important;
}

body .type-list li {
    padding: 6px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #424750;
    transition: all 0.2s ease;
    background: #eff3f8;
    user-select: none;
    line-height: normal;
    margin: 0 !important;
}

body .type-list li:hover {
    border-color: #a1a3a8;
}

body .type-list li.selected {
    border-color: var(--hmyt-pc-primary);
    color: var(--hmyt-pc-primary);
    font-weight: 700;
    outline: 2px solid var(--hmyt-pc-primary);
}

.type-list li.selected::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 4px;
    background-color: var(--hmyt-pc-primary);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'%3E%3Cpolyline points='2.75 8.75,6.25 12.25,13.25 4.75'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'%3E%3Cpolyline points='2.75 8.75,6.25 12.25,13.25 4.75'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.hmyt-pc-final-price span > svg.hmyt-toman-symbol {
    color: #67788b;
}

.hmyt-attr-title { display: block; font-weight: 700; margin: 25px 0 15px; font-size: 15px; }
.hmyt-attr-grid {display: grid;grid-template-columns: repeat(3, 1fr);gap: 10px;}
.hmyt-attr-item {background: #eff3f8;gap: 4px;position: relative;display: inline-flex;flex-direction: column;border-radius: 10px;padding: 8px 10px;margin-left: 8px;margin-bottom: 8px;}
.hmyt-attr-label {font-size: 11px;color: #81858b;line-height: normal;font-weight: 400;}
.hmyt-attr-value {font-size: 12px;color: #1c1c25;font-weight: 500;}

@media (max-width: 768px) {
    .hmyt-attr-grid { grid-template-columns: 1fr; }
}

.hmyt-qty-box {
   
    align-items: stretch; 
}

.hmyt-qty-num-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    width: 30px;
}

.hmyt-qty-num {
    width: auto;
    line-height: 1.2;
}

.hmyt-qty-max-text {
    font-size: 9px;
    color: #a1a3a8;
    font-weight: normal;
    display: none;
}

.hmyt-qty-max-text.active {
    display: block;
    margin-top: -4px;
}

.hmyt-qty-btn.hmyt-disabled {
    opacity: 0.3 !important;
    pointer-events: none !important;
    cursor: default !important;
    filter: grayscale(100%) !important;
}

.hmyt-pc-club-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    
   
}

.hmyt-pc-club-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #424750;
}

.hmyt-pc-club-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: #f5c518;
}

.hmyt-club-points {
    font-size: 16px;
    font-weight: 800;
    color: #f5c518;
    line-height: 1;
}

.hmyt-club-text {
    font-size: 11px;
    font-weight: 400;
    color: #81858b;
}

.hmyt-product-header {
    margin-bottom: 15px;
}

.hmyt-brand-row {
    margin-bottom: 8px;
    text-align: right;
}

.hmyt-product-header div > .hmyt-brand-link {
    font-size: 13px;
    color: #080a0e;
    text-decoration: none;
    font-weight: 400;
}

.hmyt-product-header > .hmyt-product-title {
    color: #080a0e;
    margin: 0 0 8px 0;
    padding: 0;
    font-size: 17px;
    line-height: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.hmyt-product-subtitle {
    font-size: 13px;
    color: #81858b;
    font-weight: 400;
    text-align: left;
    margin-bottom: 15px;
    font-family: sans-serif;
    align-items: center;
    display: flex;
    position: relative;
}

.hmyt-header-divider {
    border-bottom: 1px dashed #e0e0e2;
    width: 100%;
    margin-bottom: 15px;
}

.hmyt-product-subtitle:before {
    border-bottom: dashed 1px #e5e9ec;
    content: "";
    height: 1px;
    position: absolute;
    right: 0;
    width: 100%;
}

.hmyt-product-subtitle > span {
    background-color: #fff;
    color: #979797;
    display: inline-block;
    font-size: 11px;
    padding-left: 10px;
    z-index: 1;
}

.hmyt-pc-detail-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 2px 0;
}

.hmyt-pc-detail-icon {
    color: #424750;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px; 
}

.hmyt-pc-detail-icon svg {
    width: 20px;
    height: 20px;
}

.hmyt-pc-detail-text {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #424750;
    font-weight: 600;
    width: 100%;
}

.hmyt-pc-value.font-en {
    font-family: sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #9ca3af;
}

.hmyt-pc-value.status-ready {
    color: #9ca3af;
    font-weight: 500;
}

.hmyt-pc-detail-divider {
    border-bottom: 1px dashed #dbe0e6;
    margin: 8px 0;
    width: 100%;
}

.hmyt-pc-badges-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}

.hmyt-pc-badge {
    font-size: 12px;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 7px;
    line-height: normal;
    white-space: nowrap;
    background-color: #13deb91a;
    color: #11b3c7;
}

.hmyt-mobile-sticky-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 99;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 10px 16px;
    box-sizing: border-box;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hmyt-mobile-sticky-footer.hmyt-footer-hidden {
    transform: translateY(110%);
}

.hmyt-ms-header {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.hmyt-ms-actions {
    flex: 0 0 calc(60% - 5px);
    width: calc(60% - 5px);
    min-width: 0;
}

.hmyt-ms-price-box {
    flex: 0 0 calc(40% - 5px);
    width: calc(40% - 5px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    white-space: nowrap;
}

.hmyt-ms-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f1f2f4;
    padding-bottom: 8px;
    margin-bottom: 8px;
    gap: 10px;
}

.hmyt-ms-slider {
    flex-grow: 1;
    height: 24px;
    overflow: hidden;
    position: relative;
   
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.hmyt-ms-slider .hmyt-pc-slider-item p {
    font-size: 11px;
}

.hmyt-ms-var-col {
    flex-shrink: 0;
    padding-right: 10px;
    border-right: 1px solid #e0e0e2;
}

.hmyt-scroll-to-variations {
    font-size: 11px;
    font-weight: 700;
    color: #19bfd3;
    cursor: pointer;
    display: flex;
    align-items: center;
    line-height: 1;
}

.hmyt-ms-price-box .hmyt-pc-final-price {
    font-size: 18px;
}

.hmyt-ms-price-box .hmyt-pc-old-price {
    font-size: 11px;
}

.hmyt-ms-price-box .hmyt-pc-price-top-row {
    justify-content: flex-end;
}

@media (max-width: 768px) {
   
    .hmyt-pc-wrapper:not(.hmyt-smart-sticky-enabled) .hmyt-pc-action-box > *:not(.hmyt-pc-notify-me-wrapper),
    .hmyt-pc-wrapper:not(.hmyt-smart-sticky-enabled) .hmyt-pc-price-box,
    .hmyt-pc-wrapper:not(.hmyt-smart-sticky-enabled) .hmyt-pc-product-info,
    .hmyt-pc-wrapper:not(.hmyt-smart-sticky-enabled) .hmyt-pc-vertical-slider:not(.hmyt-ms-slider) {
        display: none !important;
    }
    .hmyt-pc-wrapper:not(.hmyt-smart-sticky-enabled) .hmyt-pc-action-box {
        margin-bottom: 0;
    }
    .hmyt-mobile-sticky-footer {
        display: block;
    }
   
    body {
        padding-bottom: 100px; 
    }
   
    .hmyt-mobile-sticky-footer .hmyt-pc-add-to-cart-btn {
        height: 44px;
        font-size: 14px;
        width: 100%;
    }
    .hmyt-mobile-sticky-footer .hmyt-qty-box {
        height: 44px;
        width: 110px !important;
        background: #fafcff;
        border: 1px solid #e0e0e2;
    }
    .hmyt-mobile-sticky-footer .hmyt-qty-text-section {
        margin-right: 10px;
        font-size: 11px;
    }
    .hmyt-mobile-sticky-footer .hmyt-pc-select-options-btn {
        padding: 10px;
        height: 44px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.hmyt-pc-product-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border: dashed 2px #e5e9ec;
    border-radius: 20px;
    padding: 10px;
    background: #fff;
}

.hmyt-pc-product-info img {
    border-radius: 15px;
    width: 60px;
    height: 60px;
    object-fit: cover;
    flex-shrink: 0;
}

.hmyt-pc-product-info h2 {
    color: #1c1c25;
    font-weight: 500;
    font-size: 14px;
    padding-right: 15px;
    line-height: 1.5rem;
    letter-spacing: -.4px;
    word-spacing: -1px;
    margin: 0;
    max-height: 45px;
    overflow: hidden;
   
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hmyt-mini-cart {
    position: fixed;
    top: 10px;
    bottom: 10px;
    left: auto;
    right: 0;
    z-index: 9999999;
    background: #fff;
    box-shadow: -5px 0 25px rgb(0 0 0 / 15%);
    max-width: 520px !important;
    width: 90%;
    transform: translateX(120%);
    transition: all .4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border-radius: 10px 0 0 10px;
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    overflow: hidden;
}

.hmyt-mini-cart.show {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

#hmyt-mini-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(1px);
    background: #00052a30;
}

#hmyt-mini-cart-overlay.show {
    opacity: 1;
    visibility: visible;
}

.hmyt-mc-header {
    border-bottom: solid 1px #e9e9e9;
    padding: 0 20px;
    display: flex;
    align-items: center;
    flex-direction: row;
    background: #fff;
   
    height: 85px;
}

.hmyt-mc-header span {
    font-size: 18px;
    font-weight: 700;
    color: #424750;
}

.hmyt-mc-count {
    background: var(--hmyt-pc-primary);
    color: #fff !important;
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    margin-right: 10px;
}

#hmyt-mc-close {
    cursor: pointer;
    color: #a1a3a8;
    position: absolute;
    transition: 0.2s;
    position: absolute;
    top: 0;
    left: 0;
    width: 65px;
    height: 80px;
    cursor: pointer;
    opacity: 0.5;
    display: flex;
    align-items: center;

}
#hmyt-mc-close:hover { color: #000; }

.hmyt-mc-contents {
    overflow-y: auto;
    padding-bottom: 20px;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.1) transparent;
}

.hmyt-mc-contents::-webkit-scrollbar {
    width: 4px;
}

.hmyt-mc-contents::-webkit-scrollbar-track {
    background: transparent;
}

.hmyt-mc-contents::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.hmyt-mc-contents::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

body.dark .hmyt-mc-contents {
    scrollbar-color: rgba(255,255,255,0.15) transparent;
}

body.dark .hmyt-mc-contents::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.15);
}

body.dark .hmyt-mc-contents::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.hmyt-mc-item {
    padding: 15px 20px;
    border-bottom: solid 1px #f1f2f4;
    display: flex;
    align-items: flex-start;
}

.hmyt-mc-item:last-child {
    border: none;
}

.hmyt-mc-item-icon img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.hmyt-mc-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.hmyt-mc-item-title {
    font-size: 13px;
    color: #424750;
    text-decoration: none;
    line-height: 1.4;
}

.hmyt-mc-item-price {
    font-size: 17px;
    font-weight: 700;
    color: #424750;
    white-space: nowrap;
    direction: rtl;
}



#hmyt-mc-footer {
    padding: 20px;
    background: #fff;
    border-top: 1px solid #f1f2f4;
    z-index: 10;
}

.hmyt-mc-notif-container {
    position: relative;
    z-index: 5;
    width: 100%;
}

.hmyt-mc-notif-container::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.104));
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.hmyt-mc-notif-container.active::before {
    opacity: 1;
    visibility: visible;
}

body.dark .hmyt-mc-notif-container::before {
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5));
}

.hmyt-mc-inner-notif {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: max-content;
    max-width: 85%;
    background: #fff;
    border-radius: 8px;
    padding: 5px 15px;
    border: 1px solid #f0f0f1;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    visibility: hidden;
}

.hmyt-mc-inner-notif.active {
    transform: translateY(-45px);
    opacity: 1;
    visibility: visible;
}

.hmyt-mc-info {
    background: #eff3f8;
    color: #374759;
    font-size: 17px;
    padding: 10px 20px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 700;
}

body .hmyt-mc-checkout {
    height: 60px;
    background: var(--hmyt-pc-primary);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    text-transform: none;
    border: none;
    box-shadow: none;
    outline: none;
}

body .hmyt-mc-checkout:hover { background: var(--hmyt-pc-primary-hover); color: #fff; }

.hmyt-qty-box-sm {
    width: 100px !important;
    height: 40px !important;
    padding: 0 4px !important;
}
.hmyt-qty-box-sm .hmyt-qty-num {font-size: 15px !important;}
.hmyt-qty-box-sm .hmyt-qty-btn svg {width: 16px;height: 16px;}

.hmyt-mc-item-delete {
    color: #a1a3a8;
    cursor: pointer;
    padding: 5px;
    transition: 0.2s;
}
.hmyt-mc-item-delete:hover { color: var(--hmyt-pc-primary); }

@media screen and (max-width: 500px) {
    .hmyt-mini-cart {
        border-radius: 0;
        top: 0; bottom: 0;
        transform: translateX(100%);
    }
}

#hmyt-mc-total-price {
    padding: 0 10px 0 5px;
    font-size: 20px;
    direction: rtl;
    display: flex;
    align-items: center;
}

.hmyt-mc-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
}

.hmyt-mc-attributes-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: -2px;
    margin-bottom: 5px;
}

.hmyt-mc-attr-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    line-height: 1.2;
    flex-wrap: wrap;
}

.hmyt-mc-attr-label {
    font-weight: 500;
    color: #81858b;
}

.hmyt-mc-attr-value {
    font-weight: 400;
    color: #424750;
}

.hmyt-mc-attr-row .hmyt-info-dot {
    flex-shrink: 0;
}

.hmyt-mobile-nav-content {
    position: relative;
}

.hmyt-mc-count.header-item-count {
    position: absolute;
    top: 20px;
    left: 28px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    line-height: normal;
    font-size: 9px !important;
    font-weight: 700;
    color: #ffffff;
    background: var(--hmyt-pc-primary);
    min-width: 20px !important;
    height: 20px !important;
    padding: 0 4px;
    text-align: center;
    border-radius: 30px;
    z-index: 10;
    border: 2px solid #ffffff;
}

body.dark .header-item-count {
    border-color: #262631;
}

body.dark .hmyt-pc-wrapper {
    background: #353542;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}


body.dark .hmyt-pc-final-price,
body.dark .hmyt-product-header > .hmyt-product-title,
body.dark .hmyt-mc-header span,
body.dark .hmyt-mc-item-price,
body.dark .hmyt-attr-value,
body.dark .hmyt-mc-attr-value,
body.dark .hmyt-info-stars {
    color: #ffffff;
}

body.dark .hmyt-pc-old-price,
body.dark .hmyt-product-subtitle,
body.dark .hmyt-attr-label,
body.dark .hmyt-mc-attr-label,
body.dark .hmyt-pc-detail-text,
body.dark .link-cart,
body.dark .text-in-cart,
body.dark .hmyt-pc-value.font-en,
body.dark .hmyt-pc-value.status-ready,
body.dark .hmyt-club-text,
body.dark .hmyt-pc-club-label {
    color: #9ca3af;
}

body.dark .type-container-title.mb-2 {
    color: #fff;
}

body.dark .hmyt-pc-detail-icon {
    color: #aeaebb;
}

body.dark .hmyt-mc-item-title {
    color: #fff;
}

body.dark .hmyt-pc-divider,
body.dark .hmyt-pc-meta-info,
body.dark .hmyt-header-divider,
body.dark .hmyt-pc-detail-divider,
body.dark .hmyt-mc-header,
body.dark .hmyt-mc-item,
body.dark #hmyt-mc-footer {
    border-color: #414150;
    background-color: transparent;
}

body.dark .hmyt-product-subtitle:before {
    border-color: #414150;
}

body.dark .hmyt-product-subtitle > span {
    background-color: #353542;
    color: #9ca3af;
}

body.dark .hmyt-qty-box,
body.dark .hmyt-qty-box-sm {
    background: #262631;
    border-color: #414150;
}

body.dark .type-list li,
body.dark .hmyt-attr-item,
body.dark .hmyt-mc-info {
    background: #262631;
    color: #e5e7eb;
}

body.dark .type-list li:hover {
    background: #414150;
}

body.dark .type-list li.selected {
    background: #353542;
    border-color: var(--hmyt-pc-primary);
}

body.dark .hmyt-mini-cart,
body.dark .hmyt-mc-header,
body.dark #hmyt-mc-footer {
    background: #353542;
}

body.dark .hmyt-mc-item:hover {
    background-color: #2e2e3a;
}

body.dark #hmyt-mc-close,
body.dark .hmyt-mc-item-delete {
    color: #9ca3af;
}

body.dark .hmyt-mc-inner-notif {
    background: #262631;
    border-color: #414150;
}

body.dark #hmyt-mc-close:hover {
    color: #fff;
}

body.dark .hmyt-mobile-sticky-footer {
    background: #353542;
    border-top-color: #414150;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
}

body.dark .hmyt-ms-top-row {
    border-bottom-color: #414150;
}

body.dark .hmyt-ms-var-col {
    border-right-color: #414150;
}

body.dark .hmyt-pc-notification-content {
    background: #262631;
    border-color: #414150;
}

body.dark .hmyt-pc-notif-message,
body.dark .hmyt-pc-go-cart-btn {
    color: #fff;
}

body.dark .hmyt-pc-vertical-slider,
body.dark .hmyt-ms-slider {
    background: transparent;
}

body.dark .hmyt-pc-product-info {
    background: #262631;
    border-color: #414150;
}

body.dark .hmyt-pc-product-info h2 {
    color: #fff;
}

body.dark .header-item-count {
    border-color: #262631;
}

body.dark .hmyt-pc-add-to-cart-btn:disabled, 
body.dark .hmyt-pc-btn-disabled {
    background-color: #414150;
    color: #81858b;
}

.hmyt-button-loading {
    display: inline-flex;
    vertical-align: middle;
    line-height: 0;
}

.hmyt-button-loading > div {
    width: 32px;
    height: 32px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    direction: rtl;
}

.hmyt-button-loading > div > span {
    position: absolute;
    top: 13.2px;
    width: 5.2px;
    height: 5.2px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.6;
}

.hmyt-button-loading > div > span:nth-child(1) {
    right: 3.2px;
    animation: Hmyt_LoadingStart .6s ease 0s infinite;
}

.hmyt-button-loading > div > span:nth-child(2) {
    right: 3.2px;
    animation: Hmyt_LoadingBetween .6s ease 0s infinite;
}

.hmyt-button-loading > div > span:nth-child(3) {
    right: 12.8px;
    animation: Hmyt_LoadingBetween .6s ease 0s infinite;
}

.hmyt-button-loading > div > span:nth-child(4) {
    right: 22.4px;
    animation: Hmyt_LoadingEnd .6s ease 0s infinite;
}

@keyframes Hmyt_LoadingStart {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 0.6; }
}

@keyframes Hmyt_LoadingBetween {
    0% { transform: translate(0,0); }
    100% { transform: translate(-9.6px,0); }
}

@keyframes Hmyt_LoadingEnd {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(0); opacity: 0; }
}

.hmyt-pc-compact-item {
    display: flex;
    flex-direction: row-reverse;
    gap: 12px;
    padding: 5px;
    background: transparent;
    align-items: center;
    justify-content: space-between;
}

.hmyt-pc-compact-item:hover {
    box-shadow: none;
    border: none;
}

.hmyt-pc-compact-item .hmyt-pc-price-box {
    align-items: flex-end;
    width: auto;
    flex-shrink: 0;
}

.hmyt-pc-compact-item .hmyt-pc-action-box {
    margin: 0;
    width: auto;
    max-width: 60%;
    flex-grow: 1;
}


.hmyt-pc-compact-item .hmyt-pc-action-box:only-child {
    max-width: 100%;
}

.hmyt-ms-header .hmyt-ms-actions:only-child {
    max-width: 100%;
    width: 100%;
    flex: auto;
}

.hmyt-pc-compact-item .hmyt-pc-qty-controller {
    justify-content: space-between;
    gap: 10px;
}

.hmyt-pc-compact-item .hmyt-qty-box {
    width: 110px !important;
    margin: 0;
    align-items: center;
}

.hmyt-info-card-container {
    text-align: right;
}


.hmyt-ms-header .hmyt-ms-actions:only-child,
.hmyt-ms-header:not(:has(> *:not(.hmyt-ms-actions):not([style*="display: none"]):not([style*="display:none"]):not(.hmyt-hidden))) .hmyt-ms-actions {
    max-width: 100%;
    width: 100%;
    flex: auto;
}

.hmyt-pc-compact-item .hmyt-qty-num-wrapper {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
}

.hmyt-pc-compact-item .hmyt-qty-text-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 0;
    align-items: flex-start;
    line-height: normal;
    width: 100%;
}

@media (max-width: 768px) {
    .hmyt-pc-compact-item .hmyt-pc-price-box {
        display: flex;
    }
    .hmyt-pc-compact-item .hmyt-pc-action-box {
        display: block;
    }
}

.hmyt-mc-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex: 1;
    text-align: center;
    padding: 20px;
}

.hmyt-mc-empty-text {
    font-size: 14px;
    padding-top: 20px;
    font-weight: 500;
    color: #bbb;
}

.hmyt-mc-empty-state > svg {
    width: 60px;
    height: 60px;
    color: rgb(211, 211, 211);
}

.hmyt-mc-special-icon {
    width: 60px;
    height: auto !important;
    object-fit: contain !important;
}

.hmyt-mc-item-icon.flex-c {
    flex-direction: column;
    align-items: center;
    gap: 10px;
}


.hmyt-mc-item-oos {
    background-color: #fffbfc;
    border-right: 3px solid #ffab00;
}


.hmyt-mc-item-oos .hmyt-mc-row-top,
.hmyt-mc-item-oos .hmyt-mc-bottom-row {
    opacity: 0.5;
    filter: grayscale(100%);
    pointer-events: none;
}

.hmyt-mc-item-oos .hmyt-mc-item-icon img {
   
}

.hmyt-mc-oos-note {
    font-size: 12px;
    color: #ffab00;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: right;
    display: flex;
    align-items: center;
    gap: 5px;
}
.hmyt-mc-oos-note > svg {
    width: 16px;
    height: 16px;
}


.hmyt-mc-item-oos .hmyt-mc-bottom-row,
.hmyt-mc-item-oos .hmyt-mc-attributes-box {
    display: none;
}


.hmyt-cfp-container {
    text-align: center;
}

.hmyt-cfp-title {
    font-weight: 600;
    font-size: 13px;
    color: #080d19;
    margin-bottom: 15px;
}

.hmyt-cfp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #fff;
    border-radius: 12px;
    padding: 10px 15px;
    border: 1px dashed #e0e0e2;
}

.hmyt-cfp-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.hmyt-cfp-label {
    font-size: 11px;
    color: #424750;
    font-weight: 500;
}

.hmyt-cfp-phone {
    font-size: 17px;
    font-weight: 700;
    color: #080d19;
    letter-spacing: 1px;
    text-decoration: none;
}

body .hmyt-cfp-btn {
    background-color: var(--hmyt-pc-primary);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-transform: none;
    border: none;
    box-shadow: none;
}

body .hmyt-cfp-btn:hover {
    background-color: var(--hmyt-pc-primary-hover);
}


body .hmyt-ms-cfp-btn {
    width: 100%;
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: center;
    background-color: var(--hmyt-pc-primary);
    color: #fff;
    font-weight: 700;
    height: 46px;
    border-radius: 12px;
    text-decoration: none;
    gap: 8px;
    text-transform: none;
    border: none;
    box-shadow: none;
}
.hmyt-ms-cfp-btn svg { width: 20px; height: 20px; }


.hmyt-mc-price-alert {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
    text-align: right;
    line-height: 1.6;
}

.hmyt-alert-amount {
    font-size: 12px;
    font-weight: 700;
}

.hmyt-alert-detail {
    font-size: 11px;
    color: #707880;
    font-weight: 400;
}


.hmyt-mc-price-alert.increase .hmyt-alert-amount {
    color: #ffab00;
}

.hmyt-mc-price-alert.decrease .hmyt-alert-amount {
    color: #47c54d;
}


.hmyt-mc-stock-alert {
    font-size: 12px;
    color: var(--hmyt-pc-primary);
    font-weight: 600;
    margin-bottom: 8px;
    text-align: right;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.hmyt-mc-stock-alert > svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.hmyt-mc-stock-text {
    display: flex;
    flex-direction: column;
}

.hmyt-stock-detail {
    font-size: 11px;
    color: #707880;
    font-weight: 400;
    margin-top: 2px;
}


body .hmyt-pc-wrapper .amount,
body .hmyt-mini-cart .amount,
body .hmyt-mobile-sticky-footer .amount,
body .hmyt-pc-compact-item .amount {
    color: inherit;
    font-weight: inherit;
    padding: 0 !important;
    margin: 0 !important;
}


@media (min-width: 769px) {
    .hmyt-loop-v-desktop {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .hmyt-loop-v-desktop .hmyt-pc-price-box {
        align-items: flex-end !important;
        margin-bottom: 12px;
        width: 100%;
    }
    .hmyt-loop-v-desktop .hmyt-pc-action-box {
        max-width: 100% !important;
        width: 100% !important;
    }
    .hmyt-loop-v-desktop .hmyt-pc-qty-controller,
    .hmyt-loop-v-desktop .hmyt-qty-box {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .hmyt-loop-v-mobile {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .hmyt-loop-v-mobile .hmyt-pc-price-box {
        align-items: flex-end !important;
        margin-bottom: 12px;
        width: 100%;
    }
    .hmyt-loop-v-mobile .hmyt-pc-action-box {
        max-width: 100% !important;
        width: 100% !important;
        display: block !important;
    }
    .hmyt-loop-v-mobile .hmyt-pc-qty-controller,
    .hmyt-loop-v-mobile .hmyt-qty-box {
        width: 100% !important;
    }
    .hmyt-pc-compact-item .hmyt-qty-text-section {
       
    }
}

.wd-add-btn.wd-add-btn-replace {
    width: 100%;
}

bdi > .woocommerce-Price-currencySymbol {
    font-size: 1em;
}

.hmyt-pc-meta-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.hmyt-pc-meta-info > div:not(:last-child) {
    border-bottom: 1px solid #f0f0f1;
    padding-bottom: 12px;
}

.hmyt-mc-btn-shortcode {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.hmyt-mc-btn-icon-wrapper {
    position: relative;
    display: inline-flex;
    color: #262631;
}

body .hmyt-mc-btn-shortcode .hmyt-mc-count.hmyt-mc-btn-badge {
    display: flex;
    position: absolute;
    top: 10px;
    right: -10px;
    min-width: 23px;
    height: 23px;
    font-size: 10px;
    border: 2px solid #ffffff;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    line-height: normal;
}

.hmyt-mc-header > .hmyt-mc-count {
    font-size: 13px;
}


.hmyt-mini-cart .hmyt-pc-compact-item .hmyt-pc-action-box,
.widget-area .hmyt-pc-compact-item .hmyt-pc-action-box {
    container-type: inline-size;
}


@container (max-width: 130px) {
    .hmyt-mini-cart .hmyt-pc-compact-item .hmyt-compact-opt-text,
    .widget-area .hmyt-pc-compact-item .hmyt-compact-opt-text {
        display: none;
    }
}


@media (max-width: 480px) {
    .hmyt-pc-compact-item .hmyt-compact-opt-text {
        display: none;
    }
}


.hmyt-pc-meta-info:empty,
.hmyt-pc-meta-info:not(:has(> *:not([style*="display: none"]):not([style*="display:none"]):not(.hmyt-hidden))) {
    display: none !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}


@media (max-width: 768px) {
    .hmyt-pc-wrapper:not(.hmyt-smart-sticky-enabled) .hmyt-pc-action-box:empty,
    .hmyt-pc-wrapper:not(.hmyt-smart-sticky-enabled) .hmyt-pc-action-box:not(:has(> *:not([style*="display: none"]):not([style*="display:none"]):not(.hmyt-hidden):not(.hmyt-pc-add-to-cart-btn):not(.hmyt-pc-qty-controller):not(.hmyt-pc-select-options-btn))) {
        display: none !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}


.hmyt-pc-detail-divider {
    display: none !important;
}


.hmyt-pc-details-box > div:not(:last-child) {
    position: relative;
    border-bottom: 1px dashed #dbe0e6;
    padding-bottom: 12px;
    margin-bottom: 12px;
}


.hmyt-pc-meta-info > div {
    border-bottom: 1px dashed #dbe0e6;
    padding-bottom: 12px;
    margin-bottom: 12px;
}


.hmyt-pc-meta-info > div:last-child,
.hmyt-pc-meta-info > div:not(:has(~ div:not([style*="display: none"]):not([style*="display:none"]):not(.hmyt-hidden))) {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}


.hmyt-pc-meta-info {
    border-top: 1px dashed #dbe0e6;
    padding-top: 12px;
}


.hmyt-pc-meta-info:last-child,
.hmyt-pc-meta-info:not(:has(~ *:not([style*="display: none"]):not([style*="display:none"]):not(.hmyt-hidden))) {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}


@media (max-width: 768px) {
    .hmyt-pc-wrapper:not(.hmyt-smart-sticky-enabled):not(:has(.hmyt-pc-price-box:not([style*="display: none"]):not([style*="display:none"]))):not(:has(.hmyt-pc-details-box:not([style*="display: none"]):not([style*="display:none"]))):not(:has(.hmyt-pc-meta-info:not([style*="display: none"]):not([style*="display:none"]))):not(:has(.hmyt-pc-vertical-slider:not([style*="display: none"]):not([style*="display:none"]))):not(:has(.hmyt-pc-notify-me-wrapper:not(.hmyt-hidden):not([style*="display: none"]):not([style*="display:none"]))):not(:has(.hmyt-pc-notice-msg:not([style*="display: none"]):not([style*="display:none"]))) {
        display: none !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }
}


@media (min-width: 769px) {
    .hmyt-mobile-sticky-footer {
        display: none;
    }
    
   
    .hmyt-mobile-sticky-footer.hmyt-desktop-sticky-mode {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 100%;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        padding: 10px 40px;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
        z-index: 99;
    }
    
   
    .hmyt-mobile-sticky-footer.hmyt-desktop-sticky-mode > div,
    .hmyt-mobile-sticky-footer.hmyt-desktop-sticky-mode form {
       
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 20px;
    }

   
    .hmyt-mobile-sticky-footer.hmyt-desktop-sticky-mode .hmyt-ms-top-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
       
        padding-bottom: 0;
        margin-bottom: 0;
        border: none;
    }
    
   
    .hmyt-mobile-sticky-footer.hmyt-desktop-sticky-mode .hmyt-ms-top-row > * {
        margin: 0 !important;
        border: none;
        padding: 0;

    }

   
    .hmyt-mobile-sticky-footer.hmyt-desktop-sticky-mode .hmyt-ms-header {
        width: auto !important;
        flex: 0 0 auto;
    }

   
    .hmyt-mobile-sticky-footer.hmyt-desktop-sticky-mode .hmyt-pc-action-box,
    .hmyt-mobile-sticky-footer.hmyt-desktop-sticky-mode .hmyt-pc-price-box {
        flex-shrink: 0 !important;
    }

   
    .hmyt-mobile-sticky-footer.hmyt-desktop-sticky-mode .hmyt-ms-actions {
        flex: 0 0 auto !important;
        width: max-content !important;
    }

    .hmyt-mobile-sticky-footer.hmyt-desktop-sticky-mode .hmyt-ms-price-box {
        flex: 0 0 auto !important;
        width: max-content !important;
    }
}