/* ===================================================================
   PREMIUM FOOTER
   =================================================================== */

.footer-premium {
    background: linear-gradient(180deg, #0d1333 0%, #070b1f 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Footer Top Section */
.footer-top-premium {
    position: relative;
    padding: 80px 0 60px;
    z-index: 1;
}

/* Footer Brand */
.footer-brand {
    margin-bottom: 24px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon i {
    font-size: 28px;
    color: #fff;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.footer-logo-text span {
    color: var(--accent-color);
}

.footer-description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 320px;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    transform: translateY(-4px);
    color: #fff;
}

.footer-social-link.facebook:hover {
    background: #1877f2;
}

.footer-social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social-link.whatsapp:hover {
    background: #25d366;
}

.footer-social-link.linkedin:hover {
    background: #0077b5;
}

/* Footer Column */
.footer-column {
    padding-left: 20px;
}

.footer-column-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    border-radius: 3px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-links a:hover::before {
    width: 12px;
}

/* Footer Contact Info */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-icon i {
    font-size: 20px;
    color: var(--accent-color);
}

.footer-contact-content {
    flex: 1;
}

.footer-contact-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.footer-contact-value {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.footer-contact-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-value a:hover {
    color: var(--accent-color);
}

/* Footer Newsletter */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 28px;
    margin-top: 20px;
}

.footer-newsletter-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.footer-newsletter-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.footer-newsletter-form {
    display: flex;
    gap: 10px;
}

.footer-newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.footer-newsletter-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 143, 215, 0.4);
}

/* Footer Payment & Delivery Methods - Combined */
.footer-methods-combined {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.footer-methods-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-methods-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-methods-label i {
    font-size: 1rem;
    color: var(--accent-color);
}

.footer-methods-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.method-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s ease;
}

.method-badge:hover {
    background: rgba(255, 255, 255, 0.14);
}

.method-badge i {
    font-size: 0.875rem;
    color: var(--accent-color);
}

.footer-methods-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 0;
    border: none;
}

/* Footer Bottom */
.footer-bottom-premium {
    position: relative;
    padding: 24px 0;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-top-premium {
        padding: 50px 0 30px;
    }
    
    .footer-column {
        padding-left: 0;
        margin-top: 32px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-column-title {
        font-size: 1rem;
        margin-bottom: 16px;
        padding-bottom: 10px;
    }
    
    .footer-column-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .footer-top-premium {
        padding: 34px 0 18px;
    }

    .footer-brand {
        margin-bottom: 4px;
    }

    .footer-logo-img {
        height: 32px;
    }

    .footer-description {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .footer-social {
        gap: 8px;
    }

    .footer-social-link {
        width: 34px;
        height: 34px;
        border-radius: 9px;
        font-size: 16px;
    }

    .footer-column {
        margin-top: 16px;
    }

    .footer-column-title {
        font-size: 0.9375rem;
        margin-bottom: 12px;
        padding-bottom: 8px;
        text-align: left;
    }

    .footer-column-title::after {
        left: 0;
        transform: none;
        width: 30px;
        height: 2px;
    }

    .footer-links {
        text-align: left;
    }

    .footer-links li {
        margin-bottom: 7px;
    }

    .footer-links a {
        font-size: 0.8125rem;
    }

    .footer-contact-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 10px;
        margin-bottom: 10px;
    }

    .footer-contact-icon {
        width: 32px;
        height: 32px;
        border-radius: 9px;
    }

    .footer-contact-icon i {
        font-size: 14px;
    }

    .footer-contact-label {
        font-size: 0.6875rem;
        margin-bottom: 2px;
    }

    .footer-contact-value {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .footer-bottom-links {
        gap: 12px;
    }

    .footer-bottom-premium {
        padding: 12px 0;
    }

    .footer-copyright {
        font-size: 0.8125rem;
    }

    .footer-bottom-links a {
        font-size: 0.8125rem;
    }
    
    .footer-newsletter-form {
        flex-direction: column;
    }
    
    .footer-methods-combined {
        flex-direction: column;
        gap: 10px;
        padding: 12px 12px;
        border-radius: 10px;
    }

    .footer-methods-group {
        flex-direction: column;
        gap: 7px;
    }

    .footer-methods-divider {
        width: 100%;
        height: 1px;
    }

    .footer-methods-badges {
        justify-content: center;
        gap: 6px;
    }

    .method-badge {
        padding: 3px 8px;
        font-size: 0.66rem;
    }

    .footer-premium .row.mt-5 {
        margin-top: 1rem !important;
        padding-top: 0.7rem !important;
    }
}

@media (max-width: 576px) {
    .footer-top-premium {
        padding: 28px 0 14px;
    }

    .footer-column {
        margin-top: 14px;
    }

    .footer-contact-item {
        margin-bottom: 8px;
    }

    .footer-column-title {
        margin-bottom: 10px;
    }

    .footer-bottom-links a {
        font-size: 0.75rem;
    }
}

/* ========================================
   Product Item Cards - Homepage Random Products
   ======================================== */
.product-item-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-item-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
}

.product-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-item-card:hover .product-item-image img {
    transform: scale(1.1);
}

.product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #c5cad6;
    font-size: 4rem;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #f5a623 0%, #f7931e 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-item-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category-tag {
    display: inline-block;
    background: rgba(13, 19, 51, 0.08);
    color: #0d1333;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    width: fit-content;
}

.product-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d1333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-item-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
}

.product-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0d1333;
    margin-bottom: 12px;
}

.product-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0d1333;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-detail-link:hover {
    color: #f5a623;
    gap: 10px;
}

.product-detail-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.product-detail-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .product-item-image {
        height: 180px;
    }
}

@media (max-width: 767px) {
    .product-item-image {
        height: 160px;
    }
    
    .product-item-content {
        padding: 16px;
    }
    
    .product-item-title {
        font-size: 1rem;
    }
}

/* ========================================
   WhatsApp Floating Button
   ======================================== */
.wa-floating-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1050;
    transition: all 0.3s ease;
    text-decoration: none;
}

.wa-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.wa-floating-btn i {
    font-size: 28px;
    color: #fff;
    line-height: 1;
}


/* ============================================
   MARKETPLACE-STYLE PRODUCT CARDS (Redesign)
   ============================================ */

/* --- FILTERED MODE: 5-column marketplace grid --- */
.products-marketplace-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 28px;
}

/* Marketplace vertical card � full link wrapper */
.marketplace-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.marketplace-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 143, 215, 0.35);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), 0 0 16px rgba(0, 143, 215, 0.1);
}

.marketplace-card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
}

/* Square product image */
.marketplace-card-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    flex-shrink: 0;
}

.marketplace-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.marketplace-card:hover .marketplace-card-image img {
    transform: scale(1.06);
}

.marketplace-placeholder {
    width: 100%;
    height: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
}

.marketplace-placeholder i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.15);
}

/* Card body */
.marketplace-card-body {
    padding: 10px 12px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.marketplace-card-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* Production time badge */
.marketplace-prodtime {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.marketplace-prodtime i {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

/* Price box with left accent border */
.marketplace-price-box {
    display: block;
    padding: 5px 10px;
    background: rgba(0, 143, 215, 0.08);
    border-left: 3px solid var(--accent-color);
    border-radius: 0 6px 6px 0;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: auto;
    word-break: break-word;
}

/* "More products" card in filtered grid */
.marketplace-more-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    text-decoration: none;
    min-height: 160px;
    transition: all 0.25s ease;
}

.marketplace-more-card:hover {
    background: rgba(0, 143, 215, 0.07);
    border-color: rgba(0, 143, 215, 0.35);
    transform: translateY(-3px);
}

.marketplace-more-inner {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.marketplace-more-inner .more-icon {
    font-size: 2rem;
    margin-bottom: 6px;
    display: block;
    color: rgba(255, 255, 255, 0.35);
}

.marketplace-more-inner .more-icon i {
    font-size: 2rem;
    display: block;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.25s ease;
}

.marketplace-more-card:hover .marketplace-more-inner .more-icon i {
    color: var(--accent-color);
}

.marketplace-more-inner .more-count {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
}

.marketplace-more-inner .more-text {
    font-size: 0.75rem;
    display: block;
    color: rgba(255, 255, 255, 0.5);
}

/* --- BROWSE MODE: 2-column horizontal mini-card grid --- */
.products-browse-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 0;
}

/* Horizontal mini-card */
.mini-product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.mini-product-card:hover {
    border-color: rgba(0, 143, 215, 0.3);
    background: rgba(255, 255, 255, 0.055);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.mini-card-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 10px;
    gap: 12px;
    height: 100%;
}

.mini-card-image {
    width: 74px;
    height: 74px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
}

.mini-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mini-product-card:hover .mini-card-image img {
    transform: scale(1.1);
}

.mini-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
}

.mini-card-placeholder i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.18);
}

.mini-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mini-card-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.mini-card-rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

.mini-card-rating .stars {
    color: #fbbf24;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    line-height: 1;
}

.mini-card-price {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--accent-color);
    padding: 3px 8px;
    background: rgba(0, 143, 215, 0.1);
    border-left: 2px solid var(--accent-color);
    border-radius: 0 4px 4px 0;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* --- RESPONSIVE --- */
@media (max-width: 1600px) {
    .products-marketplace-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1400px) {
    .products-marketplace-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .products-marketplace-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-browse-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .products-marketplace-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .products-marketplace-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .marketplace-card-name {
        font-size: 0.8125rem;
    }

    .marketplace-price-box {
        font-size: 0.75rem;
    }

    .mini-card-image {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 767px) {
    .wa-floating-btn {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }
    
    .wa-floating-btn i {
        font-size: 24px;
    }
}


