/* ===================================================================
   DIGITAL PRODUCTS SHOP PAGE - Phase 4.0 (World Class Polish)
   =================================================================== */

/* Color Schemes & Variables */
:root {
    /* Gourmet Gold Palette (Default Premium) */
    --shop-bg-hero: #111827;
    /* Charcoal Slate */
    --shop-text-hero: #FFFFFF;
    --shop-accent: #D4AF37;
    /* Metallic Gold */
    --shop-accent-glow: rgba(212, 175, 55, 0.4);

    --shop-bg: #F9FAFB;
    /* Ultra light gray for content */
    --shop-text: #1F2937;
    --shop-text-light: #6B7280;

    --shop-card-bg: #FFFFFF;
    --shop-card-border: rgba(0, 0, 0, 0.04);
    --shop-card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shop-card-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --shop-primary: #D4AF37;
    --shop-primary-hover: #B59326;
    --shop-primary-text: #FFFFFF;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Midnight Luxe */
.scheme-midnight {
    --shop-bg-hero: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --shop-text-hero: #D4AF37;
    --shop-badge-bg: #D4AF37;
    --shop-badge-text: #000000;
    --shop-card-bg: #2d2d2d;
    --shop-card-border: #404040;
    --shop-card-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shop-primary: #D4AF37;
    --shop-primary-text: #000000;
    --shop-accent: #F4D03F;
    color: #e0e0e0;
}

.scheme-midnight .shop-subtitle {
    color: #aaa;
}

.scheme-midnight .product-card-title {
    color: #fff;
}

.scheme-midnight .product-card-description {
    color: #ccc;
}

.scheme-midnight .product-price {
    color: #D4AF37;
}

.scheme-midnight .product-buy-button {
    background: #D4AF37;
    color: #000;
}

.scheme-midnight .product-buy-button:hover {
    background: #F4D03F;
}

.digital-products-shop {
    --shop-bg: #f8f9fa;
    --shop-text: #1a1a1a;
    --shop-accent: #FFC107;
    --shop-card-bg: #ffffff;
    --shop-border: #e2e8f0;

    background-color: var(--shop-bg);
    min-height: 100vh;
    padding-top: 120px;
    /* Fix for fixed header overlap */
    padding-bottom: 60px;
}

/* Nordic Clean */
.scheme-nordic {
    --shop-bg-hero: #FFFFFF;
    --shop-text-hero: #2C5530;
    --shop-badge-bg: #2C5530;
    --shop-badge-text: #FFFFFF;
    --shop-card-bg: #F8F9FA;
    --shop-card-border: #E9ECEF;
    --shop-card-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shop-primary: #2C5530;
    --shop-primary-text: #FFFFFF;
    --shop-accent: #4A7C59;
}

.scheme-nordic .shop-hero {
    border-bottom: 1px solid #eee;
}

.scheme-nordic .product-buy-button {
    background: #2C5530;
    color: #fff;
}

.scheme-nordic .product-buy-button:hover {
    background: #1e3a21;
}

/* Copper & Clay */
.scheme-copper {
    --shop-bg-hero: #FDFBF7;
    --shop-text-hero: #C87941;
    --shop-badge-bg: #C87941;
    --shop-badge-text: #FFFFFF;
    --shop-card-bg: #FFFFFF;
    --shop-card-border: #E8DCC4;
    --shop-card-shadow: 0 4px 12px rgba(200, 121, 65, 0.1);
    --shop-primary: #C87941;
    --shop-primary-text: #FFFFFF;
    --shop-accent: #E69A6B;
}

.scheme-copper .product-buy-button {
    background: #C87941;
    color: #fff;
}

.scheme-copper .product-buy-button:hover {
    background: #a85d2a;
}

/* Shop Hero - Immersive & Premium */
.shop-hero {
    background-color: var(--shop-bg-hero);
    padding: 120px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--shop-text-hero);
    margin-bottom: -60px;
    /* Negative margin for overlap effect */
    z-index: 1;
}

/* Dynamic Background Pattern */
.shop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 25%);
    z-index: 0;
}

/* Subtle Grid Overlay */
.shop-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 0;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.shop-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeUp 0.8s ease-out forwards;
}

.shop-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--shop-accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.shop-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--shop-accent-glow);
}

.shop-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #FFFFFF 0%, #E5E7EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.shop-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Products Section */
.products-section {
    padding: 0 20px 80px;
    position: relative;
    z-index: 2;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .shop-title {
        font-size: 2.5rem;
    }

    .digital-products-shop {
        padding-top: 100px;
        /* Adjust for smaller mobile header */
    }
}

/* Product Card - Premium Overhaul */
.product-card {
    background: var(--shop-card-bg);
    border-radius: 20px;
    /* Softer corners */
    overflow: hidden;
    box-shadow: var(--shop-card-shadow);
    border: 1px solid var(--shop-card-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    /* 3D Tilt Effect Setup */
    transform-style: preserve-3d;
    perspective: 1000px;
}

.product-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(212, 175, 55, 0.1);
    /* Golden Glow */
    border-color: var(--shop-accent);
}

.product-card-image {
    width: 100%;
    height: 280px;
    /* Taller image */
    position: relative;
    overflow: hidden;
    background: #F3F4F6;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    color: #9CA3AF;
}

/* Glassmorphism Badge */
.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--shop-text);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.product-card-info {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--shop-text);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.product-card-description {
    color: var(--shop-text-light);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
    font-size: 0.95rem;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-pricing {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-price-old {
    text-decoration: line-through;
    color: #9CA3AF;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--shop-text);
    font-family: var(--font-heading);
}

/* Premium Button */
.product-buy-button {
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 12px;
    background: var(--shop-primary);
    color: var(--shop-primary-text);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(212, 175, 55, 0.2);
}

.product-buy-button:hover {
    background: var(--shop-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(212, 175, 55, 0.3);
}

/* Embed Container */
.product-embed-container {
    width: 100%;
}

.product-embed-container iframe {
    max-width: 100%;
    border-radius: 8px;
}

/* Payhip Embed Styling */
.product-embed-container .payhip-embed-page {
    margin: 0;
}

/* Gumroad Embed Styling */
.product-embed-container .gumroad-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #FFD100 0%, #FFA000 100%);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.product-embed-container .gumroad-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 160, 0, 0.3);
}

/* Trust Section */
.shop-trust-section {
    background: var(--grab-go-card);
    padding: 60px 20px;
    border-top: 1px solid var(--grab-go-border);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.trust-item h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--grab-go-text);
}

.trust-item p {
    color: var(--grab-go-text-light);
    font-size: 0.875rem;
}

/* Empty State */
.products-section .empty-state {
    text-align: center;
    padding: 80px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.products-section .empty-state-icon {
    font-size: 5rem;
    margin-bottom: 24px;
    opacity: 0.5;
    animation: empty-state-float 3s ease-in-out infinite;
}

.products-section .empty-state-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--grab-go-text);
}

.products-section .empty-state-description {
    color: var(--grab-go-text-light);
    line-height: 1.75;
    margin-bottom: 32px;
}

.products-section .empty-state-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #FFD100 0%, #FFA000 100%);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.products-section .empty-state-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 160, 0, 0.3);
}

/* ===================================================================
   CONVERSION OPTIMIZATION STYLES - v3.2
   =================================================================== */

/* Urgency Badge (Top of Card) */
.product-urgency-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
    padding: 8px 16px;
    text-align: center;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    animation: urgency-pulse 2s ease-in-out infinite;
}

@keyframes urgency-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.9;
    }
}

/* Social Proof (Top) */
.product-social-proof-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--grab-go-border);
}

.product-stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.star {
    color: #FFA000;
    font-size: 1rem;
}

.star-full {
    color: #FFA000;
}

.star-half {
    color: #FFA000;
    opacity: 0.5;
}

.star-empty {
    color: #DDD;
}

.rating-number {
    margin-left: 4px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--grab-go-text);
}

.product-purchase-count {
    font-size: 0.75rem;
    color: var(--grab-go-text-light);
    font-weight: 600;
}

.product-purchase-count strong {
    color: var(--grab-primary);
}

/* Testimonial */
.product-testimonial {
    background: #F8F9FA;
    border-left: 4px solid var(--grab-primary);
    padding: 16px;
    border-radius: 8px;
    margin: 16px 0;
    font-style: italic;
}

.testimonial-quote {
    color: var(--grab-go-text);
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.testimonial-author {
    font-size: 0.75rem;
    color: var(--grab-go-text-light);
    font-weight: 600;
    font-style: normal;
}

.testimonial-role {
    font-weight: 400;
}

/* What's Included */
.product-whats-included {
    margin: 16px 0;
}

.whats-included-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F8F9FA;
    border: 1px solid var(--grab-go-border);
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whats-included-toggle:hover {
    background: #E8F5E9;
    border-color: var(--grab-primary);
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.whats-included-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

.whats-included-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.whats-included-toggle.active+.whats-included-content {
    max-height: 500px;
}

.included-list {
    list-style: none;
    padding: 16px;
    margin: 0;
    background: #F8F9FA;
    border: 1px solid var(--grab-go-border);
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.included-list li {
    padding: 8px 0;
    color: var(--grab-go-text);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Stock Indicator */
.product-stock-indicator {
    margin: 16px 0;
    padding: 12px;
    background: #FFF3E0;
    border-left: 4px solid #FF9800;
    border-radius: 8px;
}

.stock-bar {
    width: 100%;
    height: 8px;
    background: #FFE0B2;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.stock-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF9800 0%, #F57C00 100%);
    border-radius: 4px;
    animation: stock-fill 2s ease-out;
}

@keyframes stock-fill {
    from {
        width: 0;
    }
}

.stock-text {
    font-size: 0.875rem;
    color: #E65100;
    font-weight: 600;
    margin: 0;
}

.stock-text strong {
    color: #BF360C;
}

/* Trust Badges */
.product-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: #E8F5E9;
    color: #2E7D32;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Guarantee Badge (Prominent) */
.product-guarantee-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    border: 2px solid #4CAF50;
    border-radius: 12px;
    padding: 16px;
    margin-top: 16px;
}

.guarantee-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.guarantee-content strong {
    display: block;
    color: #2E7D32;
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.guarantee-content p {
    margin: 0;
    color: #558B2F;
    font-size: 0.75rem;
    line-height: 1.4;
}

/* CTA Button Enhancement */
.product-buy-button {
    position: relative;
    overflow: hidden;
}

.product-buy-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.product-buy-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Pulse Animation for CTA */
/* CTA Pulse Animation */
@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.product-buy-button {
    animation: ctaPulse 2s infinite;
}

/* Platform Specific Button Styles */
.product-buy-button[data-platform="amazon"] {
    background: linear-gradient(135deg, #FF9900 0%, #FFB84D 100%);
    color: #000000;
    border: 1px solid #FF9900;
    font-weight: 700;
}

.product-buy-button[data-platform="amazon"]:hover {
    background: linear-gradient(135deg, #FFB84D 0%, #FF9900 100%);
    box-shadow: 0 10px 20px -5px rgba(255, 153, 0, 0.4);
    transform: translateY(-2px);
}

.product-buy-button[data-platform="gumroad"] {
    background: #000000;
    /* Gumroad Black */
    color: #FFFFFF;
    border: 1px solid #333;
}

.product-buy-button[data-platform="gumroad"]:hover {
    background: #333333;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.product-buy-button[data-platform="payhip"] {
    background: linear-gradient(135deg, #2b9eff 0%, #0077cc 100%);
    /* Payhip Blue */
    color: #FFFFFF;
    border: 1px solid #2b9eff;
}

.product-buy-button[data-platform="payhip"]:hover {
    background: linear-gradient(135deg, #0077cc 0%, #2b9eff 100%);
    box-shadow: 0 10px 20px -5px rgba(43, 158, 255, 0.4);
    transform: translateY(-2px);
}

/* ===================================================================
   COLLABORATION / GUEST LISTING STYLES
   =================================================================== */

.collaboration-product {
    border: 2px solid #2271b1;
}

.collaboration-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.collaboration-badge img {
    max-height: 30px;
    width: auto;
    display: block;
}

.collaboration-brand {
    background: #F0F6FC;
    border-left: 3px solid #2271b1;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.collaboration-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 4px;
}

.collaboration-brand strong {
    color: #2271b1;
    font-size: 0.875rem;
}

/* ===================================================================
   ANIMATIONS & MICRO-INTERACTIONS - Phase 3
   =================================================================== */

/* Staggered Entry Animation */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Stagger delays for up to 12 products */
.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.product-card:nth-child(5) {
    animation-delay: 0.5s;
}

.product-card:nth-child(6) {
    animation-delay: 0.6s;
}

.product-card:nth-child(7) {
    animation-delay: 0.7s;
}

.product-card:nth-child(8) {
    animation-delay: 0.8s;
}

.product-card:nth-child(9) {
    animation-delay: 0.9s;
}

.product-card:nth-child(10) {
    animation-delay: 1.0s;
}

.product-card:nth-child(11) {
    animation-delay: 1.1s;
}

.product-card:nth-child(12) {
    animation-delay: 1.2s;
}

/* Urgency Badge Pulse */
@keyframes pulse-soft {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.product-urgency-badge {
    animation: pulse-soft 3s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Trust Badge Hover */
.trust-item {
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.trust-item:hover .trust-icon {
    transform: scale(1.2) rotate(5deg);
}
}

.product-stock-indicator {
    background: rgba(255, 152, 0, 0.1);
}

.trust-badge {
    background: rgba(76, 175, 80, 0.1);
    color: #81C784;
}

.product-guarantee-badge {
    background: rgba(76, 175, 80, 0.1);
    border-color: #4CAF50;
}

.collaboration-brand {
    background: rgba(34, 113, 177, 0.1);
}
}

/* RTL Support */
[dir="rtl"] .product-buy-button {
    transform: scaleX(-1);
}

[dir="rtl"] .product-testimonial {
    border-left: none;
    border-right: 4px solid var(--grab-primary);
}

[dir="rtl"] .product-stock-indicator {
    border-left: none;
    border-right: 4px solid #FF9800;
}

[dir="rtl"] .collaboration-brand {
    border-left: none;
    border-right: 3px solid #2271b1;
}

/* Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-title {
        font-size: 2rem;
    }

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

    .trust-items {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-card-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .product-buy-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .shop-hero {
        padding: 60px 20px;
    }

    .products-section {
        padding: 60px 20px;
    }
}