.elementor-2830 .elementor-element.elementor-element-97b7933{--display:flex;}.elementor-2830 .elementor-element.elementor-element-08cfa29{--display:flex;}.elementor-2830 .elementor-element.elementor-element-5bbc75c{--display:flex;}/* Start custom CSS for container, class: .elementor-element-97b7933 *//* ROW OF 3 PRODUCTS */
.ak-shop-row,
.ak-product-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* CARD BASE */
.ak-product-card {
    flex: 1 1 calc(33.333% - 14px);
}

.ak-card-inner {
    background: #ffffff;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* IMAGE */
.ak-product-media {
    position: relative;
    margin-bottom: 12px;
}

.ak-product-media img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* SALE TAG */
.ak-sale-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: linear-gradient(135deg, #f6dd8b, #e9b84e);
    color: #3b2608;
}

/* DESCRIPTION */
.ak-card-body p {
    color: #222;
    font-size: 14px;
    line-height: 1.5;
}

/* ACTIONS ROW */
.ak-card-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

/* PRICE — BIGGER */
.ak-price {
    font-size: 22px;
    font-weight: 700;
    color: #000;
}

.ak-old-price {
    text-decoration: line-through;
    font-size: 16px;
    color: #777;
    margin-left: 4px;
}

/* ------------------------------------------
   ICON BUTTONS — REMOVE BLUE BOX COMPLETELY
--------------------------------------------*/
.ak-icon-btn,
.ak-cart-btn,
.ak-gift-btn,
.ak-heart-btn,
.ak-btn-gold {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    appearance: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    cursor: pointer;
}

/* For safety — remove focus styles */
.ak-icon-btn:focus,
.ak-cart-btn:focus,
.ak-gift-btn:focus,
.ak-heart-btn:focus,
.ak-btn-gold:focus,
button:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* CART ICON */
.ak-cart-btn {
    font-size: 22px !important;
}

/* GIFT ICON */
.ak-gift-btn {
    color: #ff9f2b !important;
    font-size: 22px !important;
}

/* BUY NOW — GOLD BORDER */
.ak-btn-gold {
    border: 2px solid #e8c253 !important;
    color: #2a1a02 !important;
    padding: 6px 14px !important;
    border-radius: 999px !important;
    font-size: 14px;
    font-weight: 700;
}

/* HEART DEFAULT — GREY WHEN NOT LIKED */
.ak-heart-btn {
    color: #bbb !important;       /* grey (unliked) */
    opacity: 0.7 !important;
    font-size: 22px !important;
    transition: 
        transform 0.15s ease,
        filter 0.15s ease,
        opacity 0.15s ease,
        color 0.15s ease;
}

/* HEART ACTIVE — RED WHEN LIKED */
.ak-heart-btn.ak-liked {
    color: #ff3366 !important;
    opacity: 1 !important;
    transform: scale(1.1);
    filter: drop-shadow(0 0 4px rgba(255, 51, 102, 0.6));
}

/* MOBILE FIX */
body, html {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .ak-product-card {
        flex: 1 1 100%;
    }
}

/* Infinite scroll "Loading more…" indicator */
#ak-load-more-sentinel {
    text-align: center;
    padding: 16px 0 8px;
    font-size: 13px;
    color: #777;
}

#ak-load-more-sentinel .ak-loading-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

#ak-load-more-sentinel .ak-loading-text::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 2px solid rgba(0,0,0,0.14);
    border-top-color: rgba(0,0,0,0.55);
    animation: ak-spin 0.7s linear infinite;
}

@keyframes ak-spin {
    to { transform: rotate(360deg); }
}

/* Cart button layout */
.ak-cart-btn {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0; /* hide any text just in case */
}

/* Emoji cart image */
.ak-cart-emoji {
    display: block;
    width: 22px;
    height: 22px;
}/* End custom CSS */