/* ==========================================================================
   Product Card Styles (Copied from market-place.php)
   ========================================================================== */
.fp-product-card {
    background: #16162a;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.fp-product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.12);
}

/* ═══ VIP KART STİLLERİ ═══ */
.fp-vip-card {
    border: 1.5px solid rgba(255, 183, 77, 0.35);
    background: linear-gradient(165deg, #1e1a2e 0%, #1a1633 50%, #1e1a2e 100%);
    position: relative;
}

.fp-vip-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    padding: 1.5px;
    background: linear-gradient(135deg, #ffd54f, #ffab40, #ff6f00, #ffab40, #ffd54f);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
    opacity: 0.5;
}

.fp-vip-card:hover {
    box-shadow: 0 4px 30px rgba(255, 171, 64, 0.2);
    border-color: rgba(255, 183, 77, 0.5);
}

.fp-vip-card:hover::before {
    opacity: 0.85;
}

.fp-vip-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ffd54f, #ff8f00);
    color: #1a1a2e;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 4;
    box-shadow: 0 3px 12px rgba(255, 143, 0, 0.45);
    display: flex;
    align-items: center;
    gap: 4px;
}

.fp-vip-badge i {
    font-size: 13px;
}

.fp-vip-logo {
    background: linear-gradient(135deg, rgba(255, 213, 79, 0.25), rgba(255, 143, 0, 0.25)) !important;
    border-color: rgba(255, 183, 77, 0.4) !important;
    color: #ffd54f !important;
}

.fp-vip-store-name {
    background: linear-gradient(90deg, #ffd54f, #ffab40);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800 !important;
    letter-spacing: 1.5px;
    font-size: 13px !important;
}

/* ═══ TESLİMAT BADGE ═══ */
.fp-delivery-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.fp-delivery-auto {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.fp-delivery-manual {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.25);
}

.fp-delivery-badge i {
    font-size: 11px;
}

/* ── Görsel Alanı ── */
.fp-card-image-area {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    text-decoration: none;
    background: #0e0e1a;
}

.fp-card-img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
}

/* Alt Gradient Overlay */
.fp-card-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 10, 24, 0.9) 0%, rgba(10, 10, 24, 0.35) 55%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* ── VİTRİN İLANI Badge ── */
.fp-featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    z-index: 4;
    box-shadow: 0 3px 12px rgba(16, 185, 129, 0.5);
}

/* ── Mağaza Bilgi Bar ── */
.fp-card-store-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fp-card-store-left {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.fp-card-store-logo {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.1);
}

.fp-card-store-logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.fp-card-store-name {
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.fp-card-platform-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.fp-card-platform-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* ── Kart Bilgi Alanı (Alt) ── */
.fp-card-info {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #16162a;
}

.fp-card-title {
    color: #e4e4f0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    transition: color 0.25s;
    min-height: 38px;
}

.fp-card-title:hover {
    color: #818cf8;
    text-decoration: none;
}

/* ═══ KATEGORİ TAG ═══ */
.fp-card-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 10px;
    width: fit-content;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fp-card-category-tag i {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

/* ── Fiyat Satırı ── */
.fp-card-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 6px;
}

.fp-card-price-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fp-card-price {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.2px;
    white-space: nowrap;
    line-height: 1;
}

.fp-card-price small {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.6;
}

.fp-card-old-price {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    font-weight: 400;
    text-decoration: line-through;
    white-space: nowrap;
}

.fp-card-discount {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    padding: 4px 9px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    border: 1px solid rgba(16, 185, 129, 0.22);
}

.fp-card-discount i {
    font-size: 11px;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .fp-card-price {
        font-size: 16px;
    }

    .fp-card-img {
        height: 180px;
    }
}

@media (max-width: 991px) {
    .fp-card-title {
        font-size: 12px;
        min-height: 34px;
    }

    .fp-card-price {
        font-size: 14px;
    }

    .fp-card-store-name {
        font-size: 10px;
    }

    .fp-card-img {
        height: 160px;
    }
}

@media (max-width: 767px) {
    .fp-product-card {
        border-radius: 12px;
    }

    .fp-card-info {
        padding: 10px 10px 12px;
    }

    .fp-card-title {
        font-size: 11.5px;
        min-height: 30px;
        margin-bottom: 5px;
    }

    .fp-card-price {
        font-size: 14px;
    }

    .fp-card-price small {
        font-size: 10px;
    }

    .fp-card-old-price {
        font-size: 10px;
    }

    .fp-card-discount {
        font-size: 9px;
        padding: 3px 6px;
    }

    .fp-card-category-tag {
        font-size: 9px;
        padding: 2px 6px;
        margin-bottom: 6px;
    }

    .fp-featured-badge,
    .fp-vip-badge {
        font-size: 8px;
        padding: 3px 8px;
        top: 8px;
        left: 8px;
    }

    .fp-delivery-badge {
        font-size: 8px;
        padding: 3px 7px;
        top: 8px;
        right: 8px;
    }

    .fp-card-store-bar {
        padding: 6px 8px;
    }

    .fp-card-store-logo {
        width: 20px;
        height: 20px;
    }

    .fp-card-store-name {
        font-size: 9px;
    }

    .fp-card-platform-icon {
        width: 22px;
        height: 22px;
    }

    .fp-card-platform-icon img {
        width: 13px;
        height: 13px;
    }

    .fp-card-img {
        height: 150px;
    }

    .fp-vip-card::before {
        border-radius: 13px;
    }
}

@media (max-width: 400px) {
    .fp-card-img {
        height: 200px;
    }

    .fp-card-info {
        padding: 12px 12px 14px;
    }

    .fp-card-title {
        font-size: 13px;
        min-height: 38px;
    }

    .fp-card-price {
        font-size: 16px;
    }
}

/* ==========================================================================
   End Product Card Styles
   ========================================================================== */

/* ==========================================================================
   Premium Vertical Product Cards (index & market-place)
   ========================================================================== */
.fp-product-item.fp-card-admin {
    border: 1px solid rgba(79, 70, 229, 0.4);
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.1);
    background: linear-gradient(180deg, rgba(28, 29, 33, 1) 0%, rgba(36, 40, 59, 1) 100%);
}

.fp-product-item.fp-card-admin:hover {
    border-color: rgba(79, 70, 229, 0.8);
    box-shadow: 0 6px 25px rgba(79, 70, 229, 0.25);
    transform: translateY(-4px);
}

.fp-card-glow-admin-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #a855f7);
    z-index: 10;
}

.fp-admin-badge-overlay {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(79, 70, 229, 0.95);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.fp-product-item.fp-card-user {
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.fp-product-item.fp-card-user:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.15);
    transform: translateY(-4px);
}

.fp-admin-seller-brand {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(79, 70, 229, 0.15);
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
    border: 1px solid rgba(79, 70, 229, 0.3);
    width: fit-content;
}

.fp-admin-seller-brand span {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.fp-user-seller-brand {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: fit-content;
}

.fp-user-seller-brand span {
    color: #10b981;
    font-weight: 600;
}

.fp-product-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 10px;
    width: 100%;
}

.fp-product-actions .btn-cart,
.fp-product-actions .btn-buy {
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 10px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    height: 35px;
}

.fp-product-actions .btn-cart {
    flex: 0 0 auto;
    width: 38px;
}

.fp-product-actions .btn-buy {
    flex: 1;
}

/* Admin Buttons */
.fp-product-actions.act-admin .btn-cart {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fp-product-actions.act-admin .btn-cart:hover {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
    border-color: #f97316;
}

.fp-product-actions.act-admin .btn-buy {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
}

.fp-product-actions.act-admin .btn-buy:hover {
    background: linear-gradient(135deg, #4338ca, #6d28d9);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
}

/* User Buttons */
.fp-product-actions.act-user .btn-cart {
    background: #f97316;
    color: #fff;
}

.fp-product-actions.act-user .btn-cart:hover {
    background: #ea580c;
}

.fp-product-actions.act-user .btn-buy {
    background: #10b981;
    color: #fff;
}

.fp-product-actions.act-user .btn-buy:hover {
    background: #059669;
}

/* Content adjustments */
.fp-product-item .content {
    padding: 14px 12px 14px 12px !important;
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

.fp-product-item .product-name {
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.4;
    color: #fff;
    font-weight: 600;
}

.fp-product-item .product-name:hover {
    color: #818cf8;
    text-decoration: none;
}

.fp-product-item .alt-info {
    margin-bottom: 8px !important;
}

.fp-product-item .price {
    margin-bottom: auto !important;
    margin-top: 0px !important;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.fp-product-item .price .price-new {
    color: #10b981;
    font-weight: 700;
    font-size: 16px;
}

.fp-product-item .price .price-old {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    font-size: 12px;
}

/* ═══════════════════════════════════════════════════════ */
/* NEW EXPERIMENTAL DARK PRODUCT CARD                     */
/* ═══════════════════════════════════════════════════════ */
.dark-product-card {
    background: #0a0a0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.dark-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
    border-color: rgba(0, 240, 255, 0.3);
}

.dark-seller-overlay-left {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    padding: 2px;
    backdrop-filter: blur(4px);
    transition: transform 0.2s;
}

.dark-seller-overlay-left:hover {
    transform: scale(1.1);
}

.dark-seller-link-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.dark-seller-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark-seller-avatar.text-avatar {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
}

.dark-seller-avatar.icon-avatar {
    background: linear-gradient(135deg, #00f0ff, #0076ff);
    color: #0a0a0f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.dark-category-overlay-right {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 4px;
    backdrop-filter: blur(4px);
    transition: transform 0.2s;
}

.dark-category-overlay-right:hover {
    transform: scale(1.1);
}

.dark-category-link-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.dark-category-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    opacity: 0.9;
}

.dark-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.dark-img-product {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.dark-product-card:hover .dark-img-product {
    transform: scale(1.05);
}

.dark-card-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dark-product-name {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.dark-product-name:hover {
    color: #00f0ff;
}

.dark-delivery-wrapper {
    margin-bottom: 8px;
}

.dark-delivery-badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
    align-items: center;
    gap: 4px;
}

.dark-delivery-badge.auto-delivery {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.dark-delivery-badge.manual-delivery {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.dark-most-seller {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5);
}

.dark-alt-info {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.dark-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0aec0;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dark-price-and-action {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dark-price {
    display: flex;
    flex-direction: column;
}

.dark-price-old {
    color: #718096;
    font-size: 11px;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.dark-price-new {
    color: #00f0ff;
    font-size: 16px;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.dark-action {
    display: flex;
}

.dark-btn-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.dark-btn-cart:hover {
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
    color: #fff;
}

.dark-btn-cart.view-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.dark-btn-cart.view-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Global Mobile Styles for Dark Product Card */
@media (max-width: 768px) {
    .dark-product-card {
        margin-bottom: 12px !important;
    }
    .dark-card-img-wrapper {
        height: auto !important;
        aspect-ratio: 1.4 / 1 !important;
        padding-top: 0 !important;
    }
    .dark-card-body {
        padding: 10px !important;
    }
    .dark-product-name {
        font-size: 13px !important;
        height: 36px !important;
        margin-bottom: 6px !important;
    }
    .dark-price-new {
        font-size: 13px !important;
        padding: 4px 8px !important;
    }
    .dark-price-old {
        font-size: 10px !important;
    }
    .dark-btn-cart {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
        border-radius: 8px !important;
    }
    .dark-seller-avatar, .dark-category-icon {
        width: 26px !important;
        height: 26px !important;
    }
    .dark-seller-overlay-left, .dark-category-overlay-right {
        bottom: 8px !important;
    }
    .dark-seller-overlay-left {
        left: 8px !important;
        padding: 1px !important;
    }
    .dark-category-overlay-right {
        right: 8px !important;
        padding: 3px !important;
    }
    .dark-price-and-action {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 6px !important;
        margin-top: auto !important;
    }
    .dark-action {
        margin-top: 0 !important;
        width: auto !important;
    }
    .row-products {
        row-gap: 12px !important;
    }
    .fp-product-card-wrapper {
        padding: 5px !important;
    }
}

@media (max-width: 480px) {
    .dark-price-and-action {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    .dark-action {
        width: auto !important;
        margin-top: 0 !important;
    }
    .dark-btn-cart {
        flex: none !important;
    }
}