.aromaholik-search-wrapper {
    position: relative;
    padding: 20px;
    background: #202328 !important;
    border-radius: 12px;
}

.aromaholik-search-form {
    position: relative; /* To jest kluczowe */
}

.aromaholik-search-input-container {
    position: relative;
}

.aromaholik-search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 1px solid rgba(225, 185, 152, 0.2);
    border-radius: 8px;
    background: rgba(239, 239, 239, 0.05) !important;
    color: #fff !important;
    font-size: 16px;
    transition: all 0.3s ease;
}

.aromaholik-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.aromaholik-search-input:focus {
    outline: none;
    border-color: #E1B998;
    background: rgba(239, 239, 239, 0.08);
    box-shadow: 0 0 0 3px rgba(225, 185, 152, 0.1);
}

.aromaholik-search-submit {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E1B998;
    transition: all 0.3s ease;
}

.aromaholik-search-submit:hover {
    background-color: transparent !important;
    border-color: transparent !important;
    color: #E1B998;
    transform: translateY(-50%) scale(1.1);
}

.aromaholik-search-submit:focus {
    background-color: transparent !important;
    border-color: transparent !important;
    color: #E1B998;
}

.aromaholik-search-loading {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.aromaholik-search-loading .spinner {
    border: 2px solid rgba(225, 185, 152, 0.3);
    border-top: 2px solid #E1B998;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.aromaholik-search-results::-webkit-scrollbar {
    width: 8px;
}

.aromaholik-search-results::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.aromaholik-search-results::-webkit-scrollbar-thumb {
    background: #E1B998;
    border-radius: 4px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    animation: fadeInUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(225, 185, 152, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-result-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 12px;
    border: 1px solid rgba(225, 185, 152, 0.2);
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-price {
    color: #E1B998;
    font-size: 14px;
    font-weight: 600;
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ============================================
   WISHLIST BUTTON - OGÓLNE
   ============================================ */
.aromaholik-wishlist-button {
    background: transparent;
    border: 2px solid #E1B998;
    cursor: pointer;
    padding: 8px 16px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.aromaholik-wishlist-button .heart-icon {
    stroke: #E1B998;
    fill: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.aromaholik-wishlist-button:hover {
    background: #E1B998;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(216, 197, 132, 0.3);
}

.aromaholik-wishlist-button:hover .heart-icon {
    stroke: #000;
}

.aromaholik-wishlist-button.in-wishlist {
    background: #E1B998;
    color: #000;
}

.aromaholik-wishlist-button.in-wishlist .heart-icon {
    fill: #000;
    stroke: #000;
}

.aromaholik-wishlist-button.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* ============================================
   WISHLIST BUTTON - W LOOP (karty produktów)
   ============================================ */
.aromaholik-wishlist-wrapper.loop {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.aromaholik-wishlist-button.loop-button {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    justify-content: center;
}

.aromaholik-wishlist-button.loop-button .button-text {
    display: none;
}

.aromaholik-wishlist-button.loop-button .heart-icon {
    stroke: #333;
}

.aromaholik-wishlist-button.loop-button:hover {
    background: #E1B998;
    transform: scale(1.1);
}

.aromaholik-wishlist-button.loop-button:hover .heart-icon {
    stroke: #000;
}

.aromaholik-wishlist-button.loop-button.in-wishlist {
    background: #E1B998;
}

.aromaholik-wishlist-button.loop-button.in-wishlist .heart-icon {
    fill: #000;
    stroke: #000;
}

/* ============================================
   WISHLIST PAGE
   ============================================ */
.aromaholik-wishlist-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.aromaholik-wishlist-page h2 {
    margin-bottom: 30px;
    font-size: 28px;
}

.wishlist-products {
    display: grid;
    gap: 20px;
}

.wishlist-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 1px solid #ffffff;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
    background: transparent;
}

.wishlist-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wishlist-item-image {
    flex: 0 0 150px;
}

.wishlist-item-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.wishlist-item-details {
    flex: 1;
}

.wishlist-item-details h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.wishlist-item-details h3 a:hover {
    color: #E1B998;
}

.wishlist-item-price {
    font-size: 16px;
    font-weight: 600;
    color: #E1B998;
}

.wishlist-item-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    justify-content: center;
}

.wishlist-item-actions .button {
    white-space: nowrap;
}

.wishlist-empty {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 16px;
}

/* ============================================
   NOTIFICATION TOAST
   ============================================ */
.aromaholik-notification {
    position: fixed;
    bottom: 135px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #333;
    color: #212121;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999999;
    max-width: 450px;
    text-align: center;
}


.aromaholik-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.aromaholik-notification.error {
    background: #e74c3c;
}

.aromaholik-notification.success {
    background: #C0F1B0;
}

.wishlist-badge {
    background: #E1B998;
    color: #000;
    font-size: 10px; /* <-- Mniejszy font dla 2+ cyfr */
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 10px; /* <-- Zaokrąglony prostokąt zamiast koła */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: none;
    margin-left: 5px;
    padding: 0 5px;
    white-space: nowrap;
}


/* ============================================
   MINI CART - OVERLAY & SIDEBAR (DARK)
   ============================================ */

/* Overlay (ciemne tło) */
.mini-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.02);
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: none;
}

.mini-cart-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Sidebar (wysuwany panel - czarny) */
.mini-cart-sidebar {
    position: fixed !important;
    top: 0;
    right: -488px;
    width: 488px;
    max-width: 100%;
    height: 100%;
    background: #202328;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.5);
}

.mini-cart-sidebar.active {
    right: 0 !important;
}

body.mini-cart-open {
    overflow: hidden !important;
}

/* ============================================
   MINI CART - HEADER (DARK)
   ============================================ */

.mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #202328;
    color: #fff;
}

.mini-cart-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.aromaholik-login-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-cart-button {
    display: block;
    width: 100%;
    padding: 12px 16px;
    text-align: center;
    background-color: transparent;
    background-image: linear-gradient(170deg, #9DDF01 0%, #538C12 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

.mini-cart-close {
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: #EFEFEF;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.mini-cart-close:hover {
    color: #E1B998;
}

/* ============================================
   MINI CART - BODY (DARK)
   ============================================ */

.mini-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    background: #202328;
    display: flex;
    flex-direction: column;
}

/* Scrollbar dark */
.mini-cart-body::-webkit-scrollbar {
    width: 8px;
}

.mini-cart-body::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.mini-cart-body::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.mini-cart-body::-webkit-scrollbar-thumb:hover {
    background: #444;
}

/* Loading spinner */
.mini-cart-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.mini-cart-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #222;
    border-top: 3px solid #E1B998;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Empty cart */
.mini-cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.mini-cart-empty svg {
    color: #444;
    margin-bottom: 20px;
}

.mini-cart-empty p {
    color: #999;
    margin: 0 0 20px;
    font-size: 15px;
}

.mini-cart-empty .button {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    background: #E1B998 !important;
    color: #000 !important;
    border: 2px solid #E1B998 !important;
}

.mini-cart-empty .button:hover {
    background: #c9b56d; !important;
    border-color: #c9b56d; !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(216, 197, 132, 0.3); !important;
}

/* ============================================
   MINI CART - FREE SHIPPING BAR (DARK)
   ============================================ */

.mini-cart-free-shipping {
    flex-shrink: 0;
    margin: 0 20px;
    padding: 6px 8px 7px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(26, 26, 26, 0.9);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    margin-top: 7px;
}

.free-shipping-message {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    color: #f1f1f1;
}

.free-shipping-message svg {
    flex-shrink: 0;
    color: #9DDF01;
}

.free-shipping-message .message-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1;
}

.free-shipping-message .message-subtitle {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1;
}

.free-shipping-message.success svg {
    color: #65e768;
}

.free-shipping-message.success .message-title {
    color: #b7ffb9;
    padding-top: 3px;
}

.free-shipping-message.success .message-subtitle {
    color: rgba(183, 255, 185, 0.8);
}

.free-shipping-progress {
    margin-top: 5px;
    padding-top: 2px;
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.progress-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0.4;
    pointer-events: none;
}

.progress-fill {
    position: relative;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #9DDF01 0%, #5EB40F 100%);
    box-shadow: 0 4px 12px rgba(93, 178, 17, 0.25);
    transition: width 0.5s ease;
}

.progress-details {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
}

.progress-details span {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.progress-details .progress-current {
    color: rgba(255, 255, 255, 0.8);
}

.progress-details .progress-threshold {
    color: rgba(157, 223, 1, 0.9);
}

/* ============================================
   MINI CART - ITEMS (DARK)
   ============================================ */

.mini-cart-items {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

.mini-cart-item {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: opacity 0.3s ease;
}

.mini-cart-item:last-child {
    border-bottom: none;
}

.mini-cart-item-image {
    flex: 0 0 80px;
}

.mini-cart-item-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.mini-cart-item-details {
    flex: 1;
    min-width: 0;
    padding-right: 25px;
}

.mini-cart-item-name {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 400 !important;
    line-height: 1.15 !important;
}

.mini-cart-item-name a {
    color: #fff;
    text-decoration: none;
}

.mini-cart-item-name a:hover {
    color: #E1B998;
}

.mini-cart-item-quantity {
    font-size: 13px;
    color: #999;
    margin-bottom: 4px;
}

.mini-cart-item-total {
    font-size: 14px;
    font-weight: 600;
    color: #E1B998;
}

.mini-cart-item-remove {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s;
}

.mini-cart-item-remove:hover {
    color: #e74c3c;
}

.mini-cart-item.removing {
    opacity: 0.5;
    pointer-events: none;
}

/* ============================================
   MINI CART - SUGGESTED PRODUCTS (DARK)
   ============================================ */

.mini-cart-suggested {
    flex-shrink: 0;
    padding: 10px;
    color: #fff;
}

/* Scrollbar tylko dla items - ZŁOTY */
.mini-cart-items::-webkit-scrollbar {
    width: 8px;
}

.mini-cart-items::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.mini-cart-items::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #E1B998 0%, #c9a97a 100%);
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 8px rgba(225, 185, 152, 0.3);
}

.mini-cart-items::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f0c9a8 0%, #E1B998 100%);
    box-shadow: 0 2px 12px rgba(225, 185, 152, 0.5);
}


.mini-cart-suggested h4 {
    margin: 0 0 15px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.suggested-products {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.suggested-product {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: #1a1a1a;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-cart-body.first-load .suggested-product {
    animation: fadeInUp 0.3s ease backwards;
}

.mini-cart-body.first-load .suggested-product:nth-child(1) { animation-delay: 0.1s; }
.mini-cart-body.first-load .suggested-product:nth-child(2) { animation-delay: 0.2s; }
.mini-cart-body.first-load .suggested-product:nth-child(3) { animation-delay: 0.3s; }
.mini-cart-body.first-load .suggested-product:nth-child(4) { animation-delay: 0.4s; }

.suggested-product:hover {
    background: #1a1a1a;
    border-color: rgba(216, 197, 132, 0.2);
}

.suggested-product-image {
    flex: 0 0 60px;
}

.suggested-product-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.suggested-product-details {
    flex: 1;
    min-width: 0;
}

.suggested-product-name {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.suggested-product-name:hover {
    color: #E1B998;
}

.suggested-product-price {
    font-size: 14px;
    font-weight: 600;
    color: #E1B998;
}

.suggested-product-add {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    background-image: linear-gradient(170deg, #9DDF01 0%, #538C12 100%);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mini-cart-empty-button {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background-color: transparent;
    background-image: linear-gradient(170deg, #9DDF01 0%, #538C12 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

.suggested-product-add:hover {
    background: #c9b56d;
    transform: scale(1.1);
}

.suggested-product-add svg {
    color: #fefefe;
}

.suggested-product-add.loading {
    pointer-events: none;
    opacity: 0.7;
}

.suggested-product.added-to-cart {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.mini-cart-empty + .mini-cart-suggested {
    border-top: none;
    margin-top: 20px;
}

/* ============================================
   MINI CART - FOOTER (DARK)
   ============================================ */

.mini-cart-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #202328;
}

.mini-cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
    color: #fff;
}

.mini-cart-subtotal strong {
    color: #E1B998;
}

.mini-cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mini-cart-buttons .button {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.mini-cart-buttons .button-cart {
    background: transparent;
    color: #E1B998;
    border: 2px solid #E1B998;
}

.mini-cart-buttons .button-cart:hover {
    background: #E1B998;
    color: #000;
}

.mini-cart-buttons .button-checkout {
    background: #E1B998 !important;
    color: #000 !important;
    border: 2px solid #E1B998;
    box-shadow: 0 0 20px rgba(216, 197, 132, 0.4);
}

.mini-cart-buttons .button-checkout:hover {
    background: #c9b56d !important;
    border-color: #c9b56d;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(216, 197, 132, 0.6);
}

/* ============================================
   MINI CART - BADGE (licznik)
   ============================================ */

.cart-count-badge {
    background: #E1B998;
    color: #000;
    font-size: 10px; /* <-- Mniejszy font dla 2+ cyfr */
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 10px; /* <-- Zaokrąglony prostokąt zamiast koła */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    margin-left: 5px;
    padding: 0 5px;
    white-space: nowrap;
}

.cart-count-badge.pulse {
    animation: badgePulse 0.3s ease;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

/* ============================================
   MINI CART - ANIMATIONS
   ============================================ */

.mini-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   MINI CART - MOBILE RESPONSIVE
   ============================================ */


/* ============================================
   MOBILE FIXES
   ============================================ */
@media (max-width: 768px) {
    .wishlist-item {
        display: block;
    }
    /* Prevent body scroll when cart is open */
    body.aromaholik-mini-cart-open {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
        height: 100vh;
    }

    /* Mini cart full screen */
    .aromaholik-mini-cart-wrapper {
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important; /* Dynamic viewport height */
    }


     .mini-cart-suggested {
        padding: 15px 20px;
    }

    .mini-cart-suggested .suggested-product {
        display: none;
    }

    .mini-cart-suggested .suggested-product:first-child {
        display: flex;
    }

    /* Items more compact */
    .mini-cart-items {
        gap: 12px;
        padding: 15px;
    }

    /* Compact cart item */
    .mini-cart-item {
        padding: 3px;
    }

    .mini-cart-item-image {
        width: 60px;
        height: 60px;
    }

    .mini-cart-item-details {
        gap: 4px;
    }

    .mini-cart-item-title {
        font-size: 13px;
    }

    .mini-cart-item-price {
        font-size: 14px;
    }

    /* Footer sticky */
    .mini-cart-footer {
        padding: 15px 20px;
    }
}

.mini-cart-item-quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 1px 0;
}

.quantity-selector {
    display: inline-flex;
    align-items: stretch;
    background: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-btn {
    background: transparent;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    color: #E1B998;
    cursor: pointer;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 8px 0;
}

.quantity-btn:last-child {
    border-right: none;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.quantity-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.quantity-btn svg {
    width: 12px;
    height: 12px;
}

.quantity-input {
    width: 45px !important;
    text-align: center!important;
    border: none!important;
    background: transparent!important;
    color: #fff!important;
    font-size: 14px!important;
    font-weight: 600!important;
    font-family: inherit!important;
    -moz-appearance: textfield!important;
    padding: 8px 4px!important;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.02);
}

.mini-cart-item-price {
    font-size: 13px;
    color: #EFEFEF;
    white-space: nowrap;
    margin-left: auto;
}

@media (max-width: 768px) {
    .quantity-selector {
        border-radius: 3px;
    }

    .quantity-btn {
        width: 28px;
        padding: 6px 0;
    }

    .quantity-input {
        width: 40px;
        font-size: 13px;
        padding: 6px 4px;
    }
}

.cart-price-badge {
    font-weight: 600;
    white-space: nowrap;
}

.cart-price-badge .woocommerce-Price-amount {
    color: #EFEFEF;
    font-size: 14px;
}

/* Container ikon */
.elementor-icon-list-item {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

/* Hover na SVG */
.elementor-icon-list-item:hover svg {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Hover na fill icons (koszyk, serce) */
.elementor-icon-list-item:hover path[fill]:not([fill="none"]) {
    fill: #E1B998;
    transition: fill 0.3s ease;
}

/* Hover na stroke icons (lupa) */
.elementor-icon-list-item:hover path[stroke] {
    stroke: #E1B998;
    transition: stroke 0.3s ease;
}


@media (max-width: 768px) {
    .cart-price-badge {
        display: none !important;
    }

    .elementor-icon-list-item {
        position: relative;
    }

    .cart-count-badge,
    .wishlist-badge {
        position: absolute;
        display: inline-flex !important;
        top: 50%;
        transform: translate(50%, -80%);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    }

    .elementor-icon-list-item + .elementor-icon-list-item .cart-count-badge,
    .elementor-icon-list-item + .elementor-icon-list-item .wishlist-badge {
        margin-left: 0;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (min-width: 769px) {
    #aromaholik-search-overlay > div {
        max-width: 800px;
        margin: 0 auto;
        padding: 30px 20px !important;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    #aromaholik-search-overlay > div {
        max-width: 600px;
        margin: 0 auto;
        padding: 25px 20px !important;
    }
}

@media (max-width: 480px) {
    #aromaholik-search-overlay > div {
        padding: 20px !important;
    }
}

/* mobile-menu */

.mobile-menu-drawer.active {
    transform: translateX(0);
}

/* Overlay - ukryty, nie używamy */
.mobile-menu-overlay {
    display: none;
}

/* Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #202328 !important;
    flex-shrink: 0;
}

.mobile-menu-logo img {
    max-height: 40px;
    width: auto;
}

.mobile-menu-logo span {
    color: #E1B998;
    font-size: 20px;
    font-weight: 700;
}

/* Przycisk X do zamykania */
.mobile-menu-close {
    border: none;
    color: #fff;
    background-color: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
}

/* Content */
.mobile-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: #202328 !important;
}

/* Search */
.mobile-menu-search {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.mobile-menu-search .search-wrapper {
    position: relative;
}

.mobile-menu-search input[type="text"] {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 16px;
}

.mobile-menu-search input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.mobile-menu-search input[type="text"]:focus {
    outline: none;
    border-color: #E1B998;
    background: rgba(255, 255, 255, 0.08);
}

.mobile-menu-search .search-submit {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #E1B998;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.mobile-menu-search .search-loading {
    display: none;
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-search .search-loading.active {
    display: block;
}

.spinner {
    border: 2px solid rgba(216, 197, 132, 0.3);
    border-top: 2px solid #E1B998;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


.aromaholik-search-results.active {
    display: block;
}

/* Navigation */
.mobile-menu-navigation {
    flex: 1;
}

.mobile-mega-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-item > a,
.mobile-menu-toggle a {
    display: block;
    padding: 16px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu-item > a:hover,
.mobile-menu-toggle a:hover {
    color: #E1B998;
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-toggle a {
    flex: 1;
}

.mobile-mega-toggle:focus {
    background: linear-gradient(135deg, rgba(216, 197, 132, 0.15) 0%, rgba(216, 197, 132, 0.08) 100%);
    border: none;
    border-radius: 10px;
    color: #E1B998;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    margin: 3px 8px 3px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-mega-toggle {
    background: linear-gradient(135deg, rgba(216, 197, 132, 0.15) 0%, rgba(216, 197, 132, 0.08) 100%);
    border: none;
    border-radius: 10px;
    color: #E1B998;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    margin: 3px 8px 3px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-mega-toggle:hover {
    background: linear-gradient(135deg, rgba(216, 197, 132, 0.25) 0%, rgba(216, 197, 132, 0.15) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(216, 197, 132, 0.2);
}

.mobile-mega-toggle.active {
    background: linear-gradient(135deg, #E1B998 0%, #c9b675 100%);
    color: #000;
    transform: rotate(180deg) scale(0.95);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mobile-mega-toggle svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}


.mobile-mega-content {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
}

.mobile-mega-loading {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-shrink: 0;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    flex: 1;
}

.mobile-menu-btn-primary {
    background: #E1B998;
    color: #000;
}

.mobile-menu-btn-primary:hover {
    background: #c9b675;
    transform: translateY(-1px);
}

.mobile-menu-btn-secondary {
    background: rgba(216, 197, 132, 0.15);
    color: #E1B998;
    border: 1px solid rgba(216, 197, 132, 0.3);
}

.mobile-menu-btn-secondary:hover {
    background: rgba(216, 197, 132, 0.25);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(32, 35, 40, 0.98);
    z-index: 9997;
    display: none;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.active {
    display: block;
    visibility: visible;
}

.search-overlay-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.search-overlay-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.search-overlay-content {
    padding: 80px 20px 20px;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive */
@media (min-width: 769px) {
    .mobile-menu-drawer,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* Drawer - fullscreen z diagonal reveal */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #202328 !important;
    z-index: 9999999;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    clip-path: circle(0% at 0% 0%);
    transition: clip-path 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu-drawer.active {
    clip-path: circle(150% at 0% 0%);
    overflow-y: auto;
}

/* Ultra smooth content reveal */
.mobile-menu-drawer .mobile-menu-header {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
    transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu-drawer.active .mobile-menu-header {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition-delay: 0.3s;
}

.mobile-menu-drawer .mobile-menu-search {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu-drawer.active .mobile-menu-search {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

.mobile-menu-drawer .mobile-menu-navigation {
    opacity: 0;
}

.mobile-menu-drawer.active .mobile-menu-navigation {
    opacity: 1;
    transition: opacity 0.3s ease 0.5s;
}

.mobile-menu-drawer .mobile-menu-item {
    opacity: 0;
    transform: translateX(-60px) scale(0.9);
}

.mobile-menu-drawer.active .mobile-menu-item {
    animation: revealMenuItem 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.mobile-menu-drawer.active .mobile-menu-item:nth-child(1) { animation-delay: 0.55s; }
.mobile-menu-drawer.active .mobile-menu-item:nth-child(2) { animation-delay: 0.6s; }
.mobile-menu-drawer.active .mobile-menu-item:nth-child(3) { animation-delay: 0.65s; }
.mobile-menu-drawer.active .mobile-menu-item:nth-child(4) { animation-delay: 0.7s; }
.mobile-menu-drawer.active .mobile-menu-item:nth-child(5) { animation-delay: 0.75s; }
.mobile-menu-drawer.active .mobile-menu-item:nth-child(6) { animation-delay: 0.8s; }
.mobile-menu-drawer.active .mobile-menu-item:nth-child(n+7) { animation-delay: 0.85s; }

@keyframes revealMenuItem {
    0% {
        opacity: 0;
        transform: translateX(-60px) scale(0.9);
    }
    60% {
        transform: translateX(5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.mobile-menu-drawer .mobile-menu-footer {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu-drawer.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

/* Search Overlay - push down z max-height */
.search-overlay {
    position: relative;
    width: 100%;
    height: 0;
    background: #202328 !important;
    z-index: 999;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active {
    height: auto;
}

/* Gradient line effect */
.search-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
    transparent 0%,
    #E1B998 25%,
    #E1B998 75%,
    transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease 0.2s;
}

.search-overlay.active::before {
    opacity: 1;
}

.search-overlay.closing {
    height: 0;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.6, 1);
}

.search-overlay-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    opacity: 0;
    transform: scale(0.8);
}

.search-overlay.active .search-overlay-close {
    transform: scale(1);
    transition: opacity 0.2s ease 0.2s,
    transform 0.2s ease 0.2s,
    background 0.2s ease;
}

.search-overlay.closing .search-overlay-close {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.1s ease, transform 0.1s ease;
}

.search-overlay-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1) !important;
}

.search-overlay-content {
    padding: 30px 20px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.search-overlay.active .search-overlay-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.search-overlay.closing .search-overlay-content {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

/* Search wrapper */
.search-overlay .search-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.search-overlay input[type="text"] {
    width: 100%;
    padding: 18px 60px 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.search-overlay input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-overlay input[type="text"]:focus {
    outline: none;
    border-color: #E1B998;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 20px rgba(216, 197, 132, 0.2);
}

.search-overlay .search-submit {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #E1B998;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
}

.search-overlay.active .search-submit {
    opacity: 1;
    transition-delay: 0.25s;
}

.search-overlay.closing .search-submit {
    opacity: 0;
    transition: opacity 0.1s ease;
}

.search-overlay .search-submit:hover {
    transform: translateY(-50%) scale(1.2) rotate(10deg);
}

.search-overlay .search-loading {
    display: none;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
}

.search-overlay .search-loading.active {
    display: block;
}

.search-overlay .aromaholik-search-results {
    display: none;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(216, 197, 132, 0.3);
    border-radius: 12px;
    max-height: 350px;
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

/* Animacja wyników */
.search-overlay .aromaholik-search-results {
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 767px) {
    .search-overlay.active {
        max-height: 80px;
    }

    .search-overlay-content {
        padding: 20px 15px;
    }

    .search-overlay input[type="text"] {
        font-size: 16px;
        padding: 16px 50px 16px 18px;
    }

    .search-overlay .aromaholik-search-results {
        max-height: 300px;
    }
}

/* ============================================
   SEARCH BAR SHORTCODE
   ============================================ */

.aromaholik-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.aromaholik-search-form {
    position: relative;
}

.aromaholik-search-input-container {
    position: relative;
    display: flex;
    align-items: center;
}


.aromaholik-search-loading {
    position: absolute;
    right: 55px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

.aromaholik-search-loading.active {
    display: block;
}

.aromaholik-search-loading .spinner {
    border: 2px solid rgba(225, 185, 152, 0.3);
    border-top: 2px solid #E1B998;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* Search Results Dropdown z backdrop-filter */
.aromaholik-search-wrapper .aromaholik-search-results {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(225, 185, 152, 0.3);
    border-radius: 16px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    animation: fadeInDown 0.3s ease;
}

.aromaholik-search-wrapper .search-result-item:hover {
    background: rgba(225, 185, 152, 0.15);
    backdrop-filter: blur(10px);
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aromaholik-search-wrapper .search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.2s ease;
    text-decoration: none;
    color: #333;
}

.aromaholik-search-wrapper .search-result-item:last-child {
    border-bottom: none;
}

.aromaholik-search-wrapper .search-result-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.aromaholik-search-wrapper .search-result-info {
    flex: 1;
    min-width: 0;
}

.aromaholik-search-wrapper .search-result-title {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aromaholik-search-wrapper .search-result-price {
    font-size: 13px;
    color: #E1B998;
    font-weight: 600;
}

.aromaholik-search-wrapper .search-no-results {
    padding: 20px;
    text-align: center;
    color: #EFEFEF;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 767px) {
    .aromaholik-search-input {
        padding: 12px 50px 12px 16px;
        font-size: 15px;
    }

    .aromaholik-search-submit {
        width: 36px;
        height: 36px;
    }

    .aromaholik-search-wrapper .aromaholik-search-results {
        max-height: 350px;
    }
}

.wishlist-item-actions .button {
    background: #E1B998 !important;
    text-decoration: none !important;
    color: #212121 !important;
}

.wishlist-product-name {
    color: #212121 !important;
    text-decoration: none !important;
}

.ah-custom-rating {
    display: block !important;
}

.ah-custom-rating.woocommerce-product-rating::before,
.ah-custom-rating.woocommerce-product-rating::after {
    content: none !important;
    display: none !important;
}

.ah-custom-rating .ah-rating-text,
.ah-custom-rating .review-rating,
.ah-custom-rating .woocommerce-review-link {
    display: inline-block !important;
    vertical-align: middle !important;
    margin: 3px;
}

.ah-custom-rating .ah-rating-text {
    font-weight: 600;
    font-size: 16px;
    color: #FDA256;
}


.ah-custom-rating .review-rating .star-rating {
    margin: 0 !important;
    float: none !important;
}

.ah-custom-rating .woocommerce-review-link {
    font-size: 16px;
    text-decoration: none;
    color: #67b112;
    margin-bottom: 5px;
}

.ah-custom-rating.no-reviews .ah-no-reviews-text {
    font-size: 16px;
    color: #212121;
}









