/* ===== REDESIGNED PRODUCTS SECTION ===== */

.products-redesigned {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

/* Products Header */
.products-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.products-header-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, 
        var(--color-accent-primary) 0%, 
        var(--color-accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.products-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    font-weight: 400;
    margin-bottom: 2rem;
}

.products-header-accent {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--color-accent-primary) 0%, 
        var(--color-accent-secondary) 100%);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.products-header-accent::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -4px;
    right: -4px;
    bottom: -2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(var(--color-accent-rgb-values), 0.3) 50%, 
        transparent 100%);
    border-radius: 4px;
    z-index: -1;
}

/* Product Hero Banner */
.product-hero-banner {
    background: linear-gradient(135deg, 
        rgba(var(--color-accent-rgb-values), 0.05) 0%, 
        rgba(var(--color-accent-rgb-values), 0.02) 100%);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(var(--color-accent-rgb-values), 0.1);
    position: relative;
    overflow: hidden;
}

.product-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(var(--color-accent-rgb-values), 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(var(--color-accent-rgb-values), 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.product-hero-text h3 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.product-hero-text h3 sup {
    font-size: 0.6em;
    color: var(--color-accent-primary);
}

.product-hero-tagline {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-accent-primary);
    margin-bottom: 1.5rem;
}

.product-hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

.product-hero-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(var(--color-accent-rgb-values), 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    border: 1px solid rgba(var(--color-accent-rgb-values), 0.2);
    font-weight: 500;
    color: var(--color-text-primary);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(var(--color-accent-rgb-values), 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--color-accent-rgb-values), 0.2);
}

.feature-icon {
    font-size: 1.2rem;
}

/* Product Hero Visual */
.product-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-hero-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        var(--color-accent-primary) 0%, 
        var(--color-accent-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 20px 40px rgba(var(--color-accent-rgb-values), 0.3),
        0 10px 20px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.product-hero-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(var(--color-accent-rgb-values), 0.2) 0%, 
        rgba(var(--color-accent-rgb-values), 0.1) 100%);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

.hero-circle-inner {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-circle-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-circle-text sup {
    font-size: 0.6em;
}

/* Products Showcase */
.products-showcase {
    margin-bottom: 4rem;
}

.showcase-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-text-primary);
}

.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    align-items: start;
}

/* Modern Product Cards */
.product-card-modern {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(var(--color-accent-rgb-values), 0.02) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(var(--color-accent-rgb-values), 0.1);
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 
        0 8px 25px rgba(var(--color-accent-rgb-values), 0.08),
        0 3px 10px rgba(0, 0, 0, 0.05);
}

.product-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(var(--color-accent-rgb-values), 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

/* Product Image Gallery Styles */
.product-card-image-gallery {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--color-background-subtle);
    border-radius: 16px 16px 0 0;
}

.product-main-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--color-background-subtle);
    border-radius: 16px 16px 0 0;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease, opacity 0.3s ease;
    display: block;
}

.product-card-modern:hover .product-main-image img {
    transform: scale(1.05);
}

.product-thumbnail-grid {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(var(--color-background-secondary), 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    min-height: 60px;
}

.product-thumbnail {
    width: 50px;
    height: 50px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: block;
    flex-shrink: 0;
}

.product-thumbnail:hover {
    border-color: var(--color-accent-primary);
    transform: scale(1.1);
}

.product-thumbnail.active {
    border-color: var(--color-accent-primary);
    opacity: 1;
}

/* Gallery Navigation */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.gallery-main-image {
    position: relative;
    overflow: hidden;
}

.gallery-image {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gallery-image.active {
    display: block;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(var(--color-background-secondary), 0.5);
    justify-content: center;
}

.gallery-thumbnail {
    width: 50px;
    height: 50px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    padding: 0;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbnail:hover,
.gallery-thumbnail.active {
    border-color: var(--color-accent-primary);
    transform: scale(1.1);
}

.product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        transparent 100%
    );
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.product-category {
    background: rgba(var(--color-accent-rgb-values), 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.product-card-content {
    padding: 2rem;
}

.product-card-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.product-card-content p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(var(--color-accent-rgb-values), 0.1);
    color: var(--color-accent-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(var(--color-accent-rgb-values), 0.2);
}

.product-card-action {
    display: flex;
    justify-content: flex-end;
}

.learn-more {
    color: var(--color-accent-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.learn-more:hover {
    color: var(--color-accent-secondary);
    transform: translateX(5px);
}

/* CTA Product Card */
.product-card-cta {
    background: linear-gradient(135deg, 
        var(--color-accent-primary) 0%, 
        var(--color-accent-secondary) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.product-card-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.product-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.product-cta-icon {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.product-cta-content h4 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.product-cta-content p {
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: #111827;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #111827;
}

.cta-button-modern:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Products Stats */
.products-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(var(--color-accent-rgb-values), 0.1);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(var(--color-accent-rgb-values), 0.03);
    border-radius: 16px;
    border: 1px solid rgba(var(--color-accent-rgb-values), 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(var(--color-accent-rgb-values), 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--color-accent-rgb-values), 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* Animations */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    50% { 
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Dark Mode Styles */
body.dark-mode .products-redesigned {
    background: var(--dm-bg-deep);
}

body.dark-mode .product-hero-banner {
    background: linear-gradient(135deg, 
        rgba(var(--dm-glow-color-rgb-values), 0.08) 0%, 
        rgba(var(--dm-glow-color-rgb-values), 0.04) 100%);
    border-color: rgba(var(--dm-glow-color-rgb-values), 0.2);
}

body.dark-mode .product-hero-banner::before {
    background: 
        radial-gradient(circle at 20% 20%, rgba(var(--dm-glow-color-rgb-values), 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(var(--dm-glow-color-rgb-values), 0.08) 0%, transparent 50%);
}

body.dark-mode .feature-badge {
    background: rgba(var(--dm-glow-color-rgb-values), 0.15);
    border-color: rgba(var(--dm-glow-color-rgb-values), 0.3);
    color: var(--dm-text-primary);
}

body.dark-mode .feature-badge:hover {
    background: rgba(var(--dm-glow-color-rgb-values), 0.25);
    box-shadow: 0 4px 12px rgba(var(--dm-glow-color-rgb-values), 0.3);
}

body.dark-mode .product-hero-circle {
    background: linear-gradient(135deg, 
        var(--dm-glow-soft) 0%, 
        var(--dm-glow-color) 100%);
    box-shadow: 
        0 20px 40px rgba(var(--dm-glow-color-rgb-values), 0.4),
        0 10px 20px rgba(0, 0, 0, 0.3);
}

body.dark-mode .product-hero-circle::before {
    background: linear-gradient(135deg, 
        rgba(var(--dm-glow-color-rgb-values), 0.3) 0%, 
        rgba(var(--dm-glow-color-rgb-values), 0.15) 100%);
}

body.dark-mode .product-card-modern {
    background: linear-gradient(135deg, 
        var(--dm-bg-card) 0%, 
        rgba(var(--dm-glow-color-rgb-values), 0.05) 100%);
    border-color: rgba(var(--dm-glow-color-rgb-values), 0.2);
    box-shadow: 
        0 8px 25px rgba(var(--dm-glow-color-rgb-values), 0.1),
        0 3px 10px rgba(0, 0, 0, 0.2);
}

body.dark-mode .product-card-modern:hover {
    box-shadow: 
        0 20px 40px rgba(var(--dm-glow-color-rgb-values), 0.2),
        0 10px 25px rgba(0, 0, 0, 0.3);
}

body.dark-mode .product-category {
    background: rgba(var(--dm-glow-color-rgb-values), 0.9);
}

body.dark-mode .feature-tag {
    background: rgba(var(--dm-glow-color-rgb-values), 0.15);
    color: var(--dm-glow-color);
    border-color: rgba(var(--dm-glow-color-rgb-values), 0.3);
}

body.dark-mode .learn-more {
    color: var(--dm-glow-color);
}

body.dark-mode .learn-more:hover {
    color: var(--dm-accent-vibrant);
}

body.dark-mode .stat-item {
    background: rgba(var(--dm-glow-color-rgb-values), 0.08);
    border-color: rgba(var(--dm-glow-color-rgb-values), 0.2);
}

body.dark-mode .stat-item:hover {
    background: rgba(var(--dm-glow-color-rgb-values), 0.15);
    box-shadow: 0 8px 20px rgba(var(--dm-glow-color-rgb-values), 0.2);
}

body.dark-mode .stat-number {
    color: var(--dm-glow-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .product-hero-circle {
        width: 150px;
        height: 150px;
    }
    
    .hero-circle-inner {
        width: 120px;
        height: 120px;
    }
    
    .hero-circle-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .products-redesigned {
        padding: 3rem 0;
    }
    
    .product-hero-banner {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .product-hero-features {
        justify-content: center;
    }
    
    .products-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card-image {
        height: 200px;
    }
    
    .product-card-image-gallery {
        height: 240px;
    }
    
    .product-main-image {
        height: 180px;
    }
    
    .product-card-content {
        padding: 1.5rem;
    }
    
    .products-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .product-hero-banner {
        padding: 1.5rem;
    }
    
    .feature-badge {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .products-stats {
        grid-template-columns: 1fr;
    }
    
    .product-card-image-gallery {
        height: 200px;
    }
    
    .product-main-image {
        height: 150px;
    }
    
    .product-thumbnail-grid {
        padding: 0.25rem;
        gap: 0.25rem;
    }
    
    .product-thumbnail {
        width: 40px;
        height: 40px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .product-hero-circle,
    .product-hero-circle::before {
        animation: none;
    }
    
    .product-card-modern,
    .stat-item,
    .feature-badge {
        transition: none;
    }
}

@media (prefers-contrast: high) {
    .product-card-modern,
    .stat-item,
    .feature-badge {
        border-width: 2px;
    }
    
    body.dark-mode .product-card-modern,
    body.dark-mode .stat-item,
    body.dark-mode .feature-badge {
        border-color: var(--dm-glow-color);
    }
}

/* Print Styles */
@media print {
    .products-redesigned {
        background: white !important;
    }
    
    .product-hero-banner,
    .product-card-modern,
    .stat-item {
        background: white !important;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
    
    .product-hero-circle {
        background: var(--color-accent-primary) !important;
        box-shadow: none !important;
    }
}

/* ===== NEW PRODUCTS PAGE DESIGN ===== */

.products-hero {
    background: linear-gradient(135deg, 
        rgba(var(--color-accent-rgb-values), 0.05) 0%, 
        rgba(var(--color-accent-rgb-values), 0.02) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,0,0,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(0,0,0,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(0,0,0,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, 
        var(--color-accent-primary) 0%, 
        var(--color-accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.products-showcase {
    padding: 4rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card-modern {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(var(--color-accent-rgb-values), 0.02) 100%);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(var(--color-accent-rgb-values), 0.1);
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 
        0 8px 25px rgba(var(--color-accent-rgb-values), 0.08),
        0 3px 10px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.product-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(var(--color-accent-rgb-values), 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.product-card-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-accent-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-category {
    font-size: 0.8rem;
    font-weight: 600;
}

.product-card-content {
    padding: 2rem;
}

.product-card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.product-subtitle {
    font-size: 0.95rem;
    color: var(--color-accent-primary);
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
}

.product-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(var(--color-accent-rgb-values), 0.1);
    color: var(--color-accent-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-card-action {
    text-align: right;
}

.learn-more {
    color: var(--color-accent-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.learn-more:hover {
    transform: translateX(5px);
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card-content {
        padding: 1.5rem;
    }
    
    .product-card-image {
        height: 200px;
    }
}