.ahura-products-wrap {
    position: relative;
}

.ahura-prod-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.ahura-prod-heading {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--ahura-text);
}

.ahura-prod-viewall {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 99px;
    background: rgba(var(--ahura-secondary-rgb), .08);
    color: var(--ahura-secondary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color .3s ease, color .3s ease;
}

.ahura-prod-viewall svg {
    width: 16px;
    height: 16px;
    flex: none;
}

.ahura-prod-viewall:hover {
    background: rgba(var(--ahura-primary-rgb), .15);
    color: var(--ahura-primary);
}

.ahura-prod-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 6px 4px 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

.ahura-prod-track::-webkit-scrollbar {
    height: 6px;
}

.ahura-prod-track::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 99px;
}

.ahura-scrollbar-hover .ahura-prod-track:hover {
    scrollbar-color: rgba(var(--ahura-primary-rgb), .35) transparent;
}

.ahura-scrollbar-hover .ahura-prod-track:hover::-webkit-scrollbar-thumb {
    background: rgba(var(--ahura-primary-rgb), .35);
}

.ahura-scrollbar-always .ahura-prod-track {
    scrollbar-color: rgba(var(--ahura-primary-rgb), .35) transparent;
}

.ahura-scrollbar-always .ahura-prod-track::-webkit-scrollbar-thumb {
    background: rgba(var(--ahura-primary-rgb), .35);
}

.ahura-scrollbar-hidden .ahura-prod-track {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ahura-scrollbar-hidden .ahura-prod-track::-webkit-scrollbar {
    display: none;
}

.ahura-layout-grid .ahura-prod-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
}

.ahura-layout-grid .ahura-prod-card {
    width: auto;
    min-width: 0;
}

.ahura-prod-card {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    width: 230px;
    min-width: 230px;
    padding: 16px;
    border-radius: 16px;
    background-color: var(--ahura-background);
    box-shadow: 0 6px 18px rgba(138, 27, 227, .06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.ahura-prod-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(138, 27, 227, .12);
}

.ahura-prod-badge {
    position: absolute;
    top: 26px;
    inset-inline-end: 26px;
    z-index: 2;
    padding: 5px 14px;
    border-radius: 99px;
    background-color: var(--ahura-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.6;
}

.ahura-prod-media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 190px;
    margin-bottom: 14px;
    border-radius: 12px;
    background-color: rgba(var(--ahura-secondary-rgb), .05);
    overflow: hidden;
}

.ahura-prod-media img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .4s ease;
}

.ahura-prod-card:hover .ahura-prod-media img {
    transform: scale(1.06);
}

.ahura-prod-title {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.7;
    color: var(--ahura-text);
}

.ahura-prod-title a {
    color: inherit;
    text-decoration: none;
    transition: color .3s ease;
}

.ahura-prod-title a:hover {
    color: var(--ahura-primary);
}

.ahura-prod-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.ahura-prod-stars {
    position: relative;
    display: inline-flex;
}

.ahura-prod-stars svg {
    width: 14px;
    height: 14px;
    flex: none;
    color: #e3e6ea;
}

.ahura-stars-base {
    display: inline-flex;
    gap: 2px;
}

.ahura-stars-fill {
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    height: 100%;
    display: inline-flex;
    gap: 2px;
    width: var(--ahura-rating, 0%);
    overflow: hidden;
}

.ahura-stars-fill svg {
    color: var(--ahura-accent);
}

.ahura-prod-rating-count {
    font-size: 12px;
    color: rgba(var(--ahura-text-rgb), .55);
}

.ahura-prod-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.ahura-prod-add {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: none;
    border-radius: 12px;
    background-color: rgba(var(--ahura-primary-rgb), .12);
    color: var(--ahura-primary);
    transition: background-color .3s ease, color .3s ease;
}

.ahura-prod-add svg {
    width: 20px;
    height: 20px;
}

.ahura-prod-add:hover {
    background-color: var(--ahura-primary);
    color: #fff;
}

.ahura-prod-price {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

.ahura-prod-price-current {
    font-size: 15px;
    font-weight: 700;
    color: var(--ahura-primary);
}

.ahura-prod-price-current small,
.ahura-prod-price-regular small {
    font-size: 11px;
    font-weight: 500;
}

.ahura-prod-price-regular {
    font-size: 12px;
    color: rgba(var(--ahura-text-rgb), .45);
    text-decoration: line-through;
}

.ahura-prod-empty {
    padding: 20px;
    background: #fff3cd;
    border: 1px solid #ffe69c;
    border-radius: 10px;
    color: #664d03;
    text-align: center;
}