/* ===========================================
   DARLING PREMIUM - ENTERPRISE GRADE UI
   Uses site CSS variables: --web-primary, --title-clr, --bs-border-color
   =========================================== */

:root {
    --dp-primary: var(--brand-primary, var(--web-primary, #16a34a));
    --dp-secondary: var(--brand-secondary, var(--web-secondary, #fbbf24));
    --dp-surface: var(--brand-surface, #f8fafc);
    --dp-surface-alt: var(--brand-surface-alt, #f1f5f9);
    --dp-border: var(--brand-border, #e2e8f0);
    --dp-text: var(--brand-text, #0f172a);
    --dp-muted: var(--brand-muted, #475569);
}

/* ===== ENTERPRISE HERO SECTION ===== */
.darling-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1) 0%, rgba(251, 191, 36, 0.12) 45%, var(--dp-surface) 100%);
}

.darling-hero__bg {
    position: absolute;
    inset: 0;
}

.darling-hero__gradient {
    position: absolute;
    inset: 0;
    background: var(--brand-hero-gradient, linear-gradient(135deg, rgba(22, 163, 74, 0.1) 0%, rgba(251, 191, 36, 0.12) 45%, var(--dp-surface) 100%));
}

.darling-hero__mesh {
    position: absolute;
    inset: 0;
    opacity: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cdefs%3E%3Cpattern id='mesh' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='50' cy='50' r='1.5' fill='%2316a34a' opacity='0.35'/%3E%3Cline x1='50' y1='50' x2='100' y2='0' stroke='%2316a34a' stroke-width='0.5' opacity='0.18'/%3E%3Cline x1='50' y1='50' x2='100' y2='100' stroke='%2316a34a' stroke-width='0.5' opacity='0.18'/%3E%3Cline x1='50' y1='50' x2='0' y2='100' stroke='%2316a34a' stroke-width='0.5' opacity='0.18'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23mesh)'/%3E%3C/svg%3E");
}

.darling-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.darling-hero__orb--1 {
    width: 500px;
    height: 500px;
    background: rgba(22, 163, 74, 0.18);
    top: -200px;
    right: 5%;
}

.darling-hero__orb--2 {
    width: 400px;
    height: 400px;
    background: rgba(251, 191, 36, 0.16);
    bottom: -150px;
    left: 0%;
}

.darling-hero__orb--3 {
    width: 300px;
    height: 300px;
    background: rgba(22, 163, 74, 0.12);
    top: 30%;
    left: 30%;
}

.darling-hero__content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0 40px;
    flex: 1;
}

/* Badge */
.darling-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(22, 163, 74, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(22, 163, 74, 0.25);
    border-radius: 50px;
    color: var(--dp-primary);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.darling-hero__badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dp-secondary);
}

.darling-hero__badge-divider {
    width: 4px;
    height: 4px;
    background: rgba(22, 163, 74, 0.4);
    border-radius: 50%;
}

/* Title */
.darling-hero__title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dp-text);
    line-height: 1.1;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.darling-hero__title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--dp-primary) 0%, var(--dp-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.darling-hero__subtitle {
    font-size: 17px;
    color: var(--dp-muted);
    line-height: 1.7;
    margin: 0 0 32px 0;
    max-width: 480px;
}

/* CTA Buttons */
.darling-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.darling-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.darling-hero__btn--primary {
    background: var(--brand-primary,var(--web-primary,#16a34a));
    color: #fff;
    box-shadow: 0 4px 14px rgba(26, 86, 219, 0.3);
}

.darling-hero__btn--primary:hover {
    background: var(--brand-primary,var(--web-primary,#16a34a));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 86, 219, 0.4);
}

.darling-hero__btn--primary svg {
    transition: transform 0.3s ease;
}

.darling-hero__btn--primary:hover svg {
    transform: translateX(4px);
}

.darling-hero__btn--secondary {
    background: #fff;
    color: var(--dp-primary);
    border: 1px solid rgba(22, 163, 74, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.darling-hero__btn--secondary:hover {
    background: #fff;
    border-color: var(--dp-primary);
    color: var(--dp-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Stats */
.darling-hero__stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.darling-hero__stat {
    display: flex;
    flex-direction: column;
}

.darling-hero__stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--brand-primary,var(--web-primary,#16a34a));
    line-height: 1;
}

.darling-hero__stat-label {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}

.darling-hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(59, 130, 246, 0.2);
}

/* Visual Showcase */
.darling-hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.darling-hero__showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.darling-hero__showcase-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.darling-hero__product-display {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.darling-hero__product-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.darling-hero__product-ring--outer {
    width: 100%;
    height: 100%;
    animation: spin 30s linear infinite;
}

.darling-hero__product-ring--inner {
    width: 75%;
    height: 75%;
    border-style: dashed;
    animation: spin 20s linear infinite reverse;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.darling-hero__product-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.darling-hero__product-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-primary,var(--web-primary,#16a34a));
}

/* Sizes */
.darling-hero__sizes {
    display: flex;
    gap: 8px;
    margin-top: 30px;
}

.darling-hero__size {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.darling-hero__size:hover {
    background: #f1f5f9;
    border-color: rgba(59, 130, 246, 0.3);
}

.darling-hero__size--active {
    background: var(--brand-primary,var(--web-primary,#16a34a));
    border-color: var(--brand-primary,var(--web-primary,#16a34a));
    color: #fff;
}

.darling-hero__sizes-text {
    font-size: 13px;
    color: #64748b;
    margin-top: 12px;
    text-align: center;
}

/* Floating Cards */
.darling-hero__float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    animation: float 6s ease-in-out infinite;
}

.darling-hero__float-card--top {
    top: 20px;
    left: -20px;
    animation-delay: 0s;
}

.darling-hero__float-card--bottom {
    bottom: 60px;
    right: -10px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.darling-hero__float-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.darling-hero__float-icon--success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.darling-hero__float-icon--delivery {
    background: rgba(59, 130, 246, 0.1);
    color: var(--brand-primary,var(--web-primary,#16a34a));
}

.darling-hero__float-content {
    display: flex;
    flex-direction: column;
}

.darling-hero__float-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

.darling-hero__float-desc {
    font-size: 12px;
    color: #64748b;
}

/* Trust Bar */
.darling-hero__trust-bar {
    position: relative;
    z-index: 10;
    background: rgba(30, 64, 175, 0.05);
    border-top: 1px solid rgba(59, 130, 246, 0.15);
    padding: 16px 0;
}

.darling-hero__trust-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.darling-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 13px;
    font-weight: 500;
}

.darling-hero__trust-item svg {
    color: var(--brand-primary,var(--web-primary,#16a34a));
}

/* Responsive */
@media (max-width: 1199px) {
    .darling-hero__title {
        font-size: 42px;
    }
    
    .darling-hero__float-card--top {
        left: 0;
    }
    
    .darling-hero__float-card--bottom {
        right: 0;
    }
}

@media (max-width: 991px) {
    .darling-hero {
        min-height: auto;
    }
    
    .darling-hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0 30px;
        text-align: center;
    }
    
    .darling-hero__text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .darling-hero__subtitle {
        max-width: 100%;
    }
    
    .darling-hero__cta {
        justify-content: center;
    }
    
    .darling-hero__stats {
        justify-content: center;
    }
    
    .darling-hero__visual {
        min-height: 350px;
    }
    
    .darling-hero__float-card {
        display: none;
    }
}

@media (max-width: 767px) {
    .darling-hero__title {
        font-size: 32px;
    }
    
    .darling-hero__subtitle {
        font-size: 15px;
    }
    
    .darling-hero__stats {
        gap: 16px;
    }
    
    .darling-hero__stat-number {
        font-size: 22px;
    }
    
    .darling-hero__stat-divider {
        height: 30px;
    }
    
    .darling-hero__trust-items {
        gap: 20px;
    }
    
    .darling-hero__trust-item {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .darling-hero__content {
        padding: 30px 0 20px;
    }
    
    .darling-hero__badge {
        font-size: 11px;
        padding: 8px 14px;
    }
    
    .darling-hero__title {
        font-size: 28px;
    }
    
    .darling-hero__cta {
        flex-direction: column;
        width: 100%;
    }
    
    .darling-hero__btn {
        width: 100%;
        justify-content: center;
    }
    
    .darling-hero__visual {
        min-height: 300px;
    }
    
    .darling-hero__product-display {
        width: 180px;
        height: 180px;
    }
}

/* ===== ENTERPRISE CATEGORIES SECTION V2 - MOBILE-FIRST ===== */
.dc-section {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.dc-section::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='%23000' 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;
}

/* Header */
.dc-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.dc-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.08);
    color: var(--brand-primary,var(--web-primary,#16a34a));
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.dc-header__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-primary,var(--web-primary,#16a34a));
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.dc-header__title {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 12px;
    line-height: 1.2;
}

.dc-header__title span {
    background: linear-gradient(135deg, var(--brand-primary,var(--web-primary,#16a34a)) 0%, var(--brand-secondary,var(--web-secondary,#fbbf24)) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dc-header__subtitle {
    font-size: 17px;
    color: #64748b;
    margin: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Grid */
.dc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

/* Card Base */
.dc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    min-height: 480px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.dc-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
    border-color: transparent;
}

.dc-card__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 32px;
}

/* Highlight Badge */
.dc-card__highlight {
    position: absolute;
    top: 20px;
    left: -36px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e293b;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 48px;
    transform: rotate(-45deg);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    z-index: 10;
}

/* Header Section */
.dc-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dc-card__badge {
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
}

.dc-card__stats {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
}

/* Visual Section */
.dc-card__visual-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.dc-card__visual {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.dc-card__visual-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 0, 0, 0.06);
    opacity: 0;
    transition: all 0.4s ease;
}

.dc-card:hover .dc-card__visual {
    transform: scale(1.15) rotate(5deg);
}

.dc-card:hover .dc-card__visual-ring {
    opacity: 1;
    animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.dc-card__emoji {
    font-size: 48px;
    line-height: 1;
}

.dc-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Content */
.dc-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.dc-card__title {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px;
    line-height: 1.2;
}

.dc-card__tagline {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px;
}

.dc-card__desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 20px;
}

/* Size Pills */
.dc-card__sizes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.dc-card__size {
    padding: 6px 14px;
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dc-card:hover .dc-card__size {
    background: #e2e8f0;
    transform: translateY(-2px);
}

/* Footer CTA */
.dc-card__footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}

.dc-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.dc-card__cta-text {
    transition: transform 0.3s ease;
}

.dc-card__cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dc-card:hover .dc-card__cta-icon {
    transform: translateX(4px);
}

/* Decorative Elements */
.dc-card__glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dc-card:hover .dc-card__glow {
    opacity: 1;
}

.dc-card__pattern {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 160px;
    height: 160px;
    opacity: 0.04;
    background-image: radial-gradient(circle, currentColor 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    pointer-events: none;
}

.dc-card__shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.dc-card:hover .dc-card__shine {
    left: 100%;
}

/* Color Variants - Emerald (Retail) */
.dc-card--emerald {
    background: linear-gradient(165deg, #fff 0%, #f0fdf4 50%, #dcfce7 100%);
}

.dc-card--emerald .dc-card__visual {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.08) 100%);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.15);
}

.dc-card--emerald .dc-card__visual-ring {
    border-color: rgba(34, 197, 94, 0.15);
}

.dc-card--emerald .dc-card__badge {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}

.dc-card--emerald .dc-card__tagline {
    color: #16a34a;
}

.dc-card--emerald .dc-card__cta {
    color: #16a34a;
    background: rgba(34, 197, 94, 0.08);
}

.dc-card--emerald:hover .dc-card__cta {
    background: rgba(34, 197, 94, 0.15);
}

.dc-card--emerald .dc-card__cta-icon {
    background: rgba(34, 197, 94, 0.15);
}

.dc-card--emerald .dc-card__glow {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
}

.dc-card--emerald .dc-card__pattern {
    color: #22c55e;
}

.dc-card--emerald:hover {
    border-color: rgba(34, 197, 94, 0.3);
}

/* Color Variants - Ocean (Distributor) */
.dc-card--ocean {
    background: linear-gradient(165deg, #fff 0%, #eff6ff 50%, #dbeafe 100%);
}

.dc-card--ocean .dc-card__visual {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.08) 100%);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
}

.dc-card--ocean .dc-card__visual-ring {
    border-color: rgba(59, 130, 246, 0.15);
}

.dc-card--ocean .dc-card__badge {
    background: rgba(59, 130, 246, 0.12);
    color: var(--brand-primary,var(--web-primary,#16a34a));
}

.dc-card--ocean .dc-card__tagline {
    color: var(--brand-primary,var(--web-primary,#16a34a));
}

.dc-card--ocean .dc-card__cta {
    color: var(--brand-primary,var(--web-primary,#16a34a));
    background: rgba(59, 130, 246, 0.08);
}

.dc-card--ocean:hover .dc-card__cta {
    background: rgba(59, 130, 246, 0.15);
}

.dc-card--ocean .dc-card__cta-icon {
    background: rgba(59, 130, 246, 0.15);
}

.dc-card--ocean .dc-card__glow {
    background: linear-gradient(90deg, var(--brand-primary,var(--web-primary,#16a34a)) 0%, var(--brand-secondary,var(--web-secondary,#fbbf24)) 100%);
}

.dc-card--ocean .dc-card__pattern {
    color: var(--brand-primary,var(--web-primary,#16a34a));
}

.dc-card--ocean:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

/* Color Variants - Royal (Bulk) */
.dc-card--royal {
    background: linear-gradient(165deg, #fff 0%, #faf5ff 50%, #f3e8ff 100%);
}

.dc-card--royal .dc-card__visual {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(168, 85, 247, 0.08) 100%);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.15);
}

.dc-card--royal .dc-card__visual-ring {
    border-color: rgba(168, 85, 247, 0.15);
}

.dc-card--royal .dc-card__badge {
    background: rgba(168, 85, 247, 0.12);
    color: #7c3aed;
}

.dc-card--royal .dc-card__tagline {
    color: #7c3aed;
}

.dc-card--royal .dc-card__cta {
    color: #7c3aed;
    background: rgba(168, 85, 247, 0.08);
}

.dc-card--royal:hover .dc-card__cta {
    background: rgba(168, 85, 247, 0.15);
}

.dc-card--royal .dc-card__cta-icon {
    background: rgba(168, 85, 247, 0.15);
}

.dc-card--royal .dc-card__glow {
    background: linear-gradient(90deg, #a855f7 0%, #7c3aed 100%);
}

.dc-card--royal .dc-card__pattern {
    color: #a855f7;
}

.dc-card--royal:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

/* Section Footer */
.dc-footer {
    text-align: center;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.dc-footer__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--brand-primary,var(--web-primary,#16a34a));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.3);
}

.dc-footer__btn:hover {
    background: var(--brand-primary,var(--web-primary,#16a34a));
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 86, 219, 0.4);
}

.dc-footer__btn svg {
    transition: transform 0.5s ease;
}

.dc-footer__btn:hover svg {
    transform: rotate(360deg);
}

/* ===== TABLET RESPONSIVE (max-width: 991px) ===== */
@media (max-width: 991px) {
    .dc-section {
        padding: 48px 0;
    }
    
    .dc-header {
        margin-bottom: 32px;
    }
    
    .dc-header__title {
        font-size: 28px;
    }
    
    .dc-header__subtitle {
        font-size: 15px;
    }
    
    .dc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Horizontal Card Layout for Tablet/Mobile */
    .dc-card {
        flex-direction: row;
        min-height: 180px;
        border-radius: 20px;
    }
    
    .dc-card__highlight {
        top: 12px;
        left: -30px;
        font-size: 9px;
        padding: 5px 36px;
    }
    
    .dc-card__inner {
        flex-direction: row;
        align-items: center;
        padding: 24px;
        gap: 20px;
    }
    
    .dc-card__header {
        display: none;
    }
    
    .dc-card__visual-wrap {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .dc-card__visual {
        width: 80px;
        height: 80px;
        border-radius: 16px;
    }
    
    .dc-card__visual-ring {
        display: none;
    }
    
    .dc-card__emoji {
        font-size: 36px;
    }
    
    .dc-card__content {
        flex: 1;
        text-align: left;
    }
    
    .dc-card__title {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .dc-card__tagline {
        font-size: 13px;
        margin-bottom: 4px;
    }
    
    .dc-card__desc {
        font-size: 13px;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .dc-card__sizes {
        justify-content: flex-start;
        margin-bottom: 0;
        gap: 6px;
    }
    
    .dc-card__size {
        padding: 4px 10px;
        font-size: 11px;
    }
    
    .dc-card__footer {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        padding-left: 20px;
        border-left: 1px solid rgba(0, 0, 0, 0.06);
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }
    
    .dc-card__cta {
        flex-direction: column;
        gap: 8px;
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .dc-card__cta-icon {
        width: 36px;
        height: 36px;
    }
    
    .dc-card:hover .dc-card__cta-icon {
        transform: translateX(0) scale(1.1);
    }
    
    .dc-card__pattern {
        width: 100px;
        height: 100px;
    }
    
    .dc-card:hover {
        transform: translateY(-6px) scale(1.01);
    }
    
    .dc-footer {
        margin-top: 32px;
    }
}

/* ===== MOBILE RESPONSIVE (max-width: 575px) ===== */
@media (max-width: 575px) {
    .dc-section {
        padding: 40px 0;
    }
    
    .dc-header {
        margin-bottom: 28px;
    }
    
    .dc-header__badge {
        font-size: 10px;
        padding: 8px 14px;
    }
    
    .dc-header__title {
        font-size: 24px;
    }
    
    .dc-header__subtitle {
        font-size: 14px;
    }
    
    .dc-grid {
        gap: 16px;
    }
    
    .dc-card {
        border-radius: 16px;
        min-height: 160px;
    }
    
    .dc-card__highlight {
        top: 10px;
        left: -28px;
        font-size: 8px;
        padding: 4px 32px;
    }
    
    .dc-card__inner {
        padding: 18px;
        gap: 16px;
    }
    
    .dc-card__visual {
        width: 64px;
        height: 64px;
        border-radius: 14px;
    }
    
    .dc-card__emoji {
        font-size: 30px;
    }
    
    .dc-card__title {
        font-size: 17px;
    }
    
    .dc-card__tagline {
        font-size: 12px;
    }
    
    .dc-card__desc {
        font-size: 12px;
        margin-bottom: 10px;
        -webkit-line-clamp: 2;
    }
    
    .dc-card__sizes {
        gap: 4px;
    }
    
    .dc-card__size {
        padding: 3px 8px;
        font-size: 10px;
    }
    
    .dc-card__footer {
        padding-left: 14px;
    }
    
    .dc-card__cta {
        font-size: 12px;
        padding: 10px 12px;
    }
    
    .dc-card__cta-text {
        display: none;
    }
    
    .dc-card__cta-icon {
        width: 40px;
        height: 40px;
    }
    
    .dc-footer {
        margin-top: 28px;
    }
    
    .dc-footer__btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}
        width: 48px;
        height: 48px;
        border-radius: 10px;
    }
    
    .dc-card__emoji {
        font-size: 24px;
    }
    
    .dc-card__title {
        font-size: 15px;
    }
    
    .dc-card__tagline {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .dc-card__sizes {
        gap: 4px;
    }
    
    .dc-card__size {
        padding: 2px 6px;
        font-size: 9px;
    }
    
    .dc-card__footer {
        padding-left: 12px;
    }
    
    .dc-card__cta {
        font-size: 12px;
    }
    
    .dc-footer {
        margin-top: 24px;
    }
    
    .dc-footer__btn {
        padding: 12px 24px;
        font-size: 13px;
    }
}

/* ===== LEGACY - Keep old styles for backward compatibility ===== */
/* ===== PRODUCT CATEGORIES SECTION (OLD - KEPT FOR REFERENCE) ===== */
.product-categories-section {
    background: #fff;
    padding: 50px 0;
}

.product-categories-section .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.product-categories-section .section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--title-clr, #262d34);
    margin-bottom: 12px;
}

.product-categories-section .section-header h2 span {
    color: var(--brand-primary,var(--web-primary,#16a34a));
}

.product-categories-section .section-header p {
    color: #6c757d;
    font-size: 16px;
    margin: 0;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #f8fafc;
    border-radius: 12px;
    padding: 32px 24px;
    height: 100%;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--brand-primary,var(--web-primary,#16a34a));
}

.category-card__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.category-card--retail .category-card__icon {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.category-card--distributor .category-card__icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--brand-primary,var(--web-primary,#16a34a));
}

.category-card--bulk .category-card__icon {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.category-card:hover .category-card__icon {
    transform: scale(1.1);
}

.category-card__content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--title-clr, #262d34);
    margin-bottom: 10px;
}

.category-card__content p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 16px;
}

.category-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-primary,var(--web-primary,#16a34a));
    transition: all 0.3s ease;
}

.category-card:hover .category-card__cta {
    gap: 10px;
}

.category-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.category-card--retail .category-card__badge {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.category-card--distributor .category-card__badge {
    background: rgba(59, 130, 246, 0.1);
    color: var(--brand-primary,var(--web-primary,#16a34a));
}

.category-card--bulk .category-card__badge {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

@media (max-width: 767px) {
    .product-categories-section {
        padding: 40px 0;
    }
    
    .product-categories-section .section-header h2 {
        font-size: 22px;
    }
    
    .product-categories-section .section-header p {
        font-size: 14px;
    }
    
    .category-card {
        padding: 24px 20px;
    }
    
    .category-card__icon {
        width: 64px;
        height: 64px;
    }
    
    .category-card__icon svg {
        width: 36px;
        height: 36px;
    }
    
    .category-card__content h3 {
        font-size: 18px;
    }
}

/* ===== WHY CHOOSE SECTION V3 - MODERN LIGHT BLUE TILE DESIGN ===== */
.wc-section {
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

/* Section decorative background elements */
.wc-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.wc-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(96, 165, 250, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

/* Header */
.wc-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 2;
}

.wc-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(240,253,244,0.9) 100%);
    color: var(--brand-primary,var(--web-primary,#16a34a));
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid rgba(22, 163, 74, 0.28);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.16);
}

.wc-header__badge-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--brand-primary,var(--web-primary,#16a34a)) 0%, var(--brand-secondary,var(--web-secondary,#fbbf24)) 100%);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(22, 163, 74, 0.35);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.wc-header__title {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.wc-header__title span {
    color: var(--brand-primary,var(--web-primary,#16a34a));
}

.wc-header__subtitle {
    font-size: 18px;
    color: #64748b;
    margin: 0 auto;
    max-width: 520px;
    line-height: 1.7;
}

/* Grid */
.wc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Card - Modern Light Blue Tile Design */
.wc-card {
    position: relative;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    border-radius: 24px;
    padding: 36px 32px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    min-height: 320px;
    overflow: hidden;
    box-shadow: 0 4px 20px -5px rgba(59, 130, 246, 0.15);
}

/* Decorative background pattern */
.wc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(96, 165, 250, 0.06) 0%, transparent 50%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

/* Shimmer effect on card */
.wc-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.6s ease;
    pointer-events: none;
}

.wc-card:hover::after {
    left: 100%;
}

.wc-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 25px 50px -12px rgba(59, 130, 246, 0.25),
        0 0 0 1px rgba(59, 130, 246, 0.1);
    transform: translateY(-6px);
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 50%, #e0f2fe 100%);
}

/* Floating decorative element */
.wc-card__float {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    top: -40px;
    right: -40px;
    pointer-events: none;
}

/* Number - With gradient */
.wc-card__number {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    z-index: 0;
    user-select: none;
    transition: all 0.35s ease;
    opacity: 0.6;
}

.wc-card:hover .wc-card__number {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Card Header */
.wc-card__header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* Icon - Glass morphism style */
.wc-card__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.1);
}

.wc-card:hover .wc-card__icon {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.15);
}

.wc-card__icon svg {
    width: 26px;
    height: 26px;
}

/* Icon Color Variants - Enhanced with gradients */
.wc-card__icon--green {
    background: linear-gradient(145deg, #dcfce7 0%, #86efac 100%);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.wc-card__icon--gold {
    background: linear-gradient(145deg, #fef3c7 0%, #fcd34d 100%);
    color: #b45309;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.wc-card__icon--blue {
    background: linear-gradient(145deg, #dbeafe 0%, #93c5fd 100%);
    color: var(--brand-primary,var(--web-primary,#16a34a));
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.wc-card__icon--red {
    background: linear-gradient(145deg, #fee2e2 0%, #fca5a5 100%);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.wc-card__icon--purple {
    background: linear-gradient(145deg, #ede9fe 0%, #c4b5fd 100%);
    color: #7c3aed;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.wc-card__icon--teal {
    background: linear-gradient(145deg, #ccfbf1 0%, #5eead4 100%);
    color: #0d9488;
    border: 1px solid rgba(20, 184, 166, 0.2);
}

/* Title */
.wc-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.35;
    padding-top: 14px;
}

/* Description */
.wc-card__desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin: 0;
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Footer */
.wc-card__footer {
    margin-top: auto;
    padding-top: 20px;
    position: relative;
    z-index: 1;
}

/* Tag - Modern pill style */
.wc-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.8);
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.wc-card:hover .wc-card__tag {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(4px);
}

.wc-card__tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

/* Tag Color Variants */
.wc-card__tag--green { color: #15803d; }
.wc-card__tag--green .wc-card__tag-dot { background: #22c55e; }

.wc-card__tag--gold { color: #b45309; }
.wc-card__tag--gold .wc-card__tag-dot { background: #f59e0b; }

.wc-card__tag--blue { color: var(--brand-primary,var(--web-primary,#16a34a)); }
.wc-card__tag--blue .wc-card__tag-dot { background: var(--brand-secondary,var(--web-secondary,#fbbf24)); }

.wc-card__tag--red { color: #dc2626; }
.wc-card__tag--red .wc-card__tag-dot { background: #ef4444; }

.wc-card__tag--purple { color: #7c3aed; }
.wc-card__tag--purple .wc-card__tag-dot { background: #a855f7; }

.wc-card__tag--teal { color: #0d9488; }
.wc-card__tag--teal .wc-card__tag-dot { background: #14b8a6; }

/* Stats Bar */
.wc-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-top: 72px;
    padding: 40px 56px;
    background: linear-gradient(135deg, var(--brand-primary,var(--web-primary,#16a34a)) 0%, var(--brand-secondary,var(--web-secondary,#fbbf24)) 100%);
    border-radius: 24px;
    box-shadow: 0 20px 60px -15px rgba(22, 163, 74, 0.35);
}

.wc-stats__item {
    text-align: center;
}

.wc-stats__number {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.wc-stats__label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-top: 6px;
}

.wc-stats__divider {
    width: 1px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
}

/* ===== WHY CHOOSE RESPONSIVE ===== */
@media (max-width: 1199px) {
    .wc-section {
        padding: 80px 0;
    }
    
    .wc-header__title {
        font-size: 38px;
    }
    
    .wc-grid {
        gap: 24px;
    }
    
    .wc-card {
        padding: 32px 28px;
        min-height: 300px;
    }
    
    .wc-card__number {
        font-size: 60px;
        top: 24px;
        right: 24px;
    }
}

@media (max-width: 991px) {
    .wc-section {
        padding: 64px 0;
    }
    
    .wc-header {
        margin-bottom: 48px;
    }
    
    .wc-header__title {
        font-size: 34px;
    }
    
    .wc-header__subtitle {
        font-size: 16px;
    }
    
    .wc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .wc-card {
        min-height: 280px;
    }
    
    .wc-card__number {
        font-size: 56px;
    }
    
    .wc-stats {
        flex-wrap: wrap;
        gap: 32px 40px;
        padding: 36px 40px;
        margin-top: 56px;
    }
    
    .wc-stats__divider {
        display: none;
    }
    
    .wc-stats__item {
        flex: 0 0 calc(50% - 20px);
    }
    
    .wc-stats__number {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .wc-section {
        padding: 56px 0;
    }
    
    .wc-header {
        margin-bottom: 40px;
    }
    
    .wc-header__badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .wc-header__title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .wc-header__subtitle {
        font-size: 15px;
    }
    
    .wc-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .wc-card {
        padding: 28px 24px;
        border-radius: 16px;
        min-height: auto;
    }
    
    .wc-card__number {
        font-size: 48px;
        top: 20px;
        right: 20px;
    }
    
    .wc-card__header {
        gap: 14px;
        margin-bottom: 16px;
    }
    
    .wc-card__icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 12px;
    }
    
    .wc-card__icon svg {
        width: 22px;
        height: 22px;
    }
    
    .wc-card__title {
        font-size: 16px;
        padding-top: 12px;
    }
    
    .wc-card__desc {
        font-size: 14px;
    }
    
    .wc-card__footer {
        padding-top: 16px;
    }
    
    .wc-card__tag {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .wc-stats {
        margin-top: 40px;
        padding: 28px 24px;
        border-radius: 20px;
        gap: 24px;
    }
    
    .wc-stats__item {
        flex: 0 0 calc(50% - 12px);
    }
    
    .wc-stats__number {
        font-size: 28px;
    }
    
    .wc-stats__label {
        font-size: 12px;
        margin-top: 4px;
    }
}

/* ===== DISTRIBUTOR SECTION ===== */
.distributor-section {
    background: var(--brand-primary,var(--web-primary,#16a34a));
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.distributor-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.distributor-section .content-wrap {
    position: relative;
    z-index: 1;
}

.distributor-section h2 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.distributor-section .lead-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    max-width: 450px;
}

.distributor-section .benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.distributor-section .benefits-list li {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.distributor-section .benefits-list li svg {
    width: 18px;
    height: 18px;
    color: #28a745;
    flex-shrink: 0;
}

.distributor-section .btn-apply {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 14px 28px !important;
    background: #fff !important;
    color: var(--brand-primary,var(--web-primary,#16a34a)) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    white-space: nowrap !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    flex-direction: row !important;
}

.distributor-section .btn-apply:hover {
    background: #fff !important;
    color: var(--brand-primary,var(--web-primary,#16a34a)) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.distributor-section .btn-apply svg {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
}

.distributor-section .btn-secondary-light {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 14px 24px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    white-space: nowrap !important;
    backdrop-filter: blur(10px);
    flex-direction: row !important;
}

.distributor-section .btn-secondary-light:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #fff !important;
}

.distributor-section .btn-secondary-light svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Distributor Visual (Right Column) - Enterprise */
.distributor-visual {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.distributor-visual__card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    width: 100%;
    max-width: 380px;
    position: relative;
    overflow: hidden;
}

.distributor-visual__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.distributor-visual__icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.distributor-visual__icon svg {
    color: #fff;
    width: 48px;
    height: 48px;
}

.distributor-visual__title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1;
}

.distributor-visual__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

.distributor-visual__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 380px;
}

.distributor-visual__stat {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
}

.distributor-visual__stat-number {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #fbbf24;
    line-height: 1;
}

.distributor-visual__stat-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .distributor-visual {
        margin-top: 30px;
        padding: 0;
    }
    
    .distributor-visual__card {
        max-width: 400px;
    }
    
    .distributor-visual__stats {
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .distributor-visual__card {
        padding: 36px 24px;
        border-radius: 16px;
    }
    
    .distributor-visual__title {
        font-size: 42px;
    }
    
    .distributor-visual__icon {
        width: 72px;
        height: 72px;
    }
    
    .distributor-visual__icon svg {
        width: 36px;
        height: 36px;
    }
    
    .distributor-visual__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .distributor-visual__stat {
        padding: 14px 8px;
        border-radius: 10px;
    }
    
    .distributor-visual__stat-number {
        font-size: 18px;
    }
    
    .distributor-visual__stat-label {
        font-size: 10px;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
/* ===== TESTIMONIALS SECTION V3 - ULTRA PREMIUM ===== */
.tm-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.tm-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.08) 0%, transparent 100%);
    pointer-events: none;
}

/* Header */
.tm-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
}

.tm-header__eyebrow {
    display: inline-block;
    padding: 10px 24px;
    background: var(--brand-primary,var(--web-primary,#16a34a));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 100px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(29, 78, 216, 0.3);
}

.tm-header__title {
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.tm-header__title span {
    background: linear-gradient(135deg, var(--brand-primary,var(--web-primary,#16a34a)) 0%, var(--brand-secondary,var(--web-secondary,#fbbf24)) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tm-header__subtitle {
    font-size: 18px;
    color: #64748b;
    margin: 0 auto;
    max-width: 480px;
    text-align: center;
    line-height: 1.7;
}

/* Main Content Layout */
.tm-content {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: start;
}

/* Rating Block */
.tm-rating-block {
    position: sticky;
    top: 100px;
}

.tm-rating-block__inner {
    background: #ffffff;
    border-radius: 28px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 80px -20px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.tm-rating-block__score {
    font-size: 80px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
}

.tm-rating-block__stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

.tm-rating-block__stars svg {
    width: 28px;
    height: 28px;
    color: #f59e0b;
}

.tm-rating-block__label {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.tm-rating-block__count {
    font-size: 15px;
    color: #94a3b8;
    margin-bottom: 32px;
}

.tm-rating-block__count strong {
    color: #0f172a;
    font-weight: 700;
}

/* Rating Bars */
.tm-rating-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tm-rating-bars__row {
    display: grid;
    grid-template-columns: 20px 1fr 40px;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.tm-rating-bars__track {
    height: 8px;
    background: #f1f5f9;
    border-radius: 100px;
    overflow: hidden;
}

.tm-rating-bars__fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
    border-radius: 100px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Cards Container */
.tm-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Card */
.tm-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.tm-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

/* Card Header */
.tm-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

/* Avatar */
.tm-card__avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.tm-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Author Info */
.tm-card__author {
    flex: 1;
    min-width: 0;
}

.tm-card__author h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px;
}

.tm-card__author p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* Card Rating */
.tm-card__rating {
    display: flex;
    gap: 2px;
}

.tm-card__rating svg {
    width: 18px;
    height: 18px;
    color: #f59e0b;
}

/* Quote */
.tm-card__quote {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin: 0 0 20px;
    quotes: none;
}

.tm-card__quote strong {
    color: #0f172a;
    font-weight: 600;
}

/* Card Footer */
.tm-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.tm-card__verified {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #22c55e;
}

.tm-card__verified svg {
    width: 16px;
    height: 16px;
}

.tm-card__date {
    font-size: 13px;
    color: #94a3b8;
}

/* CTA Section */
.tm-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 64px;
    padding: 32px 40px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.tm-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.tm-cta__text {
    position: relative;
}

.tm-cta__badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 8px;
}

.tm-cta__text p {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.tm-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--brand-primary,var(--web-primary,#16a34a));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 8px 24px rgba(29, 78, 216, 0.4);
}

.tm-cta__btn:hover {
    background: var(--brand-primary,var(--web-primary,#16a34a));
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(29, 78, 216, 0.5);
    color: #fff;
}

.tm-cta__btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.tm-cta__btn:hover svg {
    transform: translateX(4px);
}

/* ===== TESTIMONIALS RESPONSIVE ===== */
@media (max-width: 1199px) {
    .tm-section {
        padding: 80px 0;
    }
    
    .tm-content {
        grid-template-columns: 340px 1fr;
        gap: 36px;
    }
    
    .tm-header__title {
        font-size: 44px;
    }
    
    .tm-rating-block__inner {
        padding: 32px;
    }
    
    .tm-rating-block__score {
        font-size: 64px;
    }
}

@media (max-width: 991px) {
    .tm-section {
        padding: 64px 0;
    }
    
    .tm-header {
        margin-bottom: 48px;
    }
    
    .tm-header__title {
        font-size: 38px;
    }
    
    .tm-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tm-rating-block {
        position: static;
        order: 2;
    }
    
    .tm-rating-block__inner {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .tm-cards {
        order: 1;
    }
    
    .tm-cta {
        flex-direction: column;
        text-align: center;
        padding: 32px;
        margin-top: 48px;
    }
}

@media (max-width: 575px) {
    .tm-section {
        padding: 56px 0;
    }
    
    .tm-header {
        margin-bottom: 40px;
    }
    
    .tm-header__eyebrow {
        font-size: 11px;
        padding: 8px 18px;
        letter-spacing: 1.5px;
    }
    
    .tm-header__title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .tm-header__subtitle {
        font-size: 16px;
    }
    
    .tm-card {
        padding: 24px;
        border-radius: 20px;
    }
    
    .tm-card__header {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .tm-card__avatar {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 12px;
    }
    
    .tm-card__author h4 {
        font-size: 15px;
    }
    
    .tm-card__rating {
        width: 100%;
        order: 3;
        margin-top: 4px;
    }
    
    .tm-card__rating svg {
        width: 16px;
        height: 16px;
    }
    
    .tm-card__quote {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .tm-card__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .tm-rating-block__inner {
        padding: 28px 24px;
        border-radius: 20px;
    }
    
    .tm-rating-block__score {
        font-size: 56px;
    }
    
    .tm-rating-block__stars svg {
        width: 24px;
        height: 24px;
    }
    
    .tm-cta {
        padding: 24px 20px;
        border-radius: 20px;
        margin-top: 40px;
    }
    
    .tm-cta__text p {
        font-size: 17px;
    }
    
    .tm-cta__btn {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        border-radius: 12px;
    }
}

/* ===== FEATURED PRODUCTS SECTION - ENTERPRISE GRID ===== */
.fp-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

/* Header - Centered */
.fp-header {
    text-align: center;
    margin-bottom: 48px;
}

.fp-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #fef3c7;
    color: #b45309;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.fp-header__badge svg {
    width: 14px;
    height: 14px;
}

.fp-header__title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.fp-header__title span {
    color: var(--brand-primary,var(--web-primary,#16a34a));
}

.fp-header__subtitle {
    font-size: 17px;
    color: #64748b;
    margin: 0 auto;
    max-width: 500px;
    line-height: 1.6;
}

/* Products Grid */
.fp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Product Card */
.fp-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.fp-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

/* Badge */
.fp-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
}

.fp-card__badge--discount {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Out of Stock */
.fp-card__stock-out {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    backdrop-filter: blur(2px);
}

.fp-card__stock-out span {
    padding: 10px 20px;
    background: #fff;
    color: #dc2626;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Image */
.fp-card__image {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8fafc;
    position: relative;
}

.fp-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fp-card:hover .fp-card__image img {
    transform: scale(1.08);
}

/* Quick Actions */
.fp-card__actions {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: all 0.35s ease;
}

.fp-card:hover .fp-card__actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.fp-card__action {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.fp-card__action:hover {
    background: var(--brand-primary,var(--web-primary,#16a34a));
    color: #fff;
}

.fp-card__action svg {
    width: 20px;
    height: 20px;
}

/* Content */
.fp-card__content {
    padding: 24px;
}

/* Rating */
.fp-card__rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.fp-card__stars {
    display: flex;
    gap: 2px;
}

.fp-card__stars svg {
    width: 14px;
    height: 14px;
    color: #f59e0b;
}

.fp-card__reviews {
    font-size: 12px;
    color: #94a3b8;
}

/* Title */
.fp-card__title {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 12px;
    line-height: 1.5;
    min-height: 45px;
}

.fp-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fp-card__title a:hover {
    color: var(--brand-primary,var(--web-primary,#16a34a));
}

/* Price */
.fp-card__price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.fp-card__price-current {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.fp-card__price-old {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: line-through;
}

/* Button - Modern Eye-Catching Quick View */
.fp-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--brand-primary,var(--web-primary,#16a34a)) 0%, var(--brand-secondary,var(--web-secondary,#fbbf24)) 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* Shimmer effect */
.fp-card__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

/* Glow pulse effect */
.fp-card__btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--brand-primary,var(--web-primary,#16a34a)) 0%, var(--brand-secondary,var(--web-secondary,#fbbf24)) 100%);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}

.fp-card__btn:hover::after {
    opacity: 0.6;
    animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

.fp-card__btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.fp-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, var(--brand-primary,var(--web-primary,#16a34a)) 0%, var(--brand-secondary,var(--web-secondary,#fbbf24)) 100%);
}

.fp-card__btn:hover svg {
    transform: scale(1.15);
}

.fp-card:hover .fp-card__btn {
    background: linear-gradient(135deg, var(--brand-primary,var(--web-primary,#16a34a)) 0%, var(--brand-secondary,var(--web-secondary,#fbbf24)) 100%);
    color: #fff;
}

/* Footer */
.fp-footer {
    display: none;
    text-align: center;
    margin-top: 40px;
}

.fp-footer__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--brand-primary,var(--web-primary,#16a34a));
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(29, 78, 216, 0.3);
}

.fp-footer__btn:hover {
    background: var(--brand-primary,var(--web-primary,#16a34a));
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(29, 78, 216, 0.4);
    color: #fff;
}

.fp-footer__btn svg {
    width: 18px;
    height: 18px;
}

/* ===== FEATURED PRODUCTS RESPONSIVE ===== */
@media (max-width: 1199px) {
    .fp-section {
        padding: 64px 0;
    }
    
    .fp-header__title {
        font-size: 34px;
    }
    
    .fp-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .fp-card__content {
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .fp-section {
        padding: 56px 0;
    }
    
    .fp-header {
        margin-bottom: 36px;
    }
    
    .fp-header__title {
        font-size: 30px;
    }
    
    .fp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .fp-card {
        border-radius: 16px;
    }
    
    .fp-card__content {
        padding: 18px;
    }
    
    .fp-card__title {
        font-size: 14px;
        min-height: 42px;
    }
    
    .fp-card__price-current {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .fp-section {
        padding: 48px 0;
    }
    
    .fp-header {
        margin-bottom: 28px;
    }
    
    .fp-header__badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .fp-header__title {
        font-size: 26px;
    }
    
    .fp-header__link {
        display: none;
    }
    
    .fp-grid {
        gap: 12px;
    }
    
    .fp-card {
        border-radius: 14px;
    }
    
    .fp-card__badge {
        top: 12px;
        left: 12px;
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .fp-card__actions {
        bottom: 12px;
    }
    
    .fp-card__action {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .fp-card__action svg {
        width: 18px;
        height: 18px;
    }
    
    .fp-card__content {
        padding: 14px;
        text-align: center;
    }
    
    .fp-card__rating {
        margin-bottom: 8px;
        justify-content: center;
    }
    
    .fp-card__stars svg {
        width: 12px;
        height: 12px;
    }
    
    .fp-card__reviews {
        font-size: 11px;
    }
    
    .fp-card__title {
        font-size: 13px;
        margin-bottom: 10px;
        min-height: 40px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .fp-card__price {
        margin-bottom: 12px;
        gap: 4px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
    }
    
    .fp-card__price-current {
        font-size: 16px;
        width: 100%;
        text-align: center;
    }
    
    .fp-card__price-old {
        font-size: 12px;
        width: 100%;
        text-align: center;
    }
    
    .fp-card__btn {
        padding: 10px 12px;
        font-size: 12px;
        border-radius: 10px;
        gap: 6px;
        box-shadow: 0 3px 12px rgba(59, 130, 246, 0.35);
    }
    
    .fp-card__btn::before {
        animation: shimmer 2s infinite;
    }
    
    .fp-card__btn svg {
        width: 14px;
        height: 14px;
    }
    
    .fp-footer {
        display: block;
        margin-top: 32px;
    }
    
    .fp-footer__btn {
        padding: 14px 28px;
        font-size: 14px;
        border-radius: 10px;
    }
}

/* ===== BLOG SECTION ===== */
.blog-section {
    background: #f8fafc;
    padding: 40px 0;
}

.blog-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.blog-section .section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--title-clr, #262d34);
    margin: 0;
}

.blog-section .section-header h2 span {
    color: var(--brand-primary,var(--web-primary,#16a34a));
}

.blog-section .btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-primary,var(--web-primary,#16a34a));
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-section .btn-view-all:hover {
    gap: 10px;
}

.blog-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--bs-border-color, #EFF1F4);
    transition: all 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--brand-primary,var(--web-primary,#16a34a));
}

.blog-card .card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

.blog-card:hover .card-img img {
    transform: scale(1.03);
}

.blog-card .card-img .category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: var(--brand-primary,var(--web-primary,#16a34a));
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    border-radius: 5px;
    text-transform: uppercase;
}

.blog-card .card-body {
    padding: 20px;
}

.blog-card .card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #6c757d;
}

.blog-card .card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--title-clr, #262d34);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card .card-title a {
    color: inherit;
    text-decoration: none;
}

.blog-card .card-title a:hover {
    color: var(--brand-primary,var(--web-primary,#16a34a));
}

.blog-card .card-excerpt {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 12px;
}

.blog-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--brand-primary,var(--web-primary,#16a34a));
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.blog-card .read-more:hover {
    gap: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .why-choose-section,
    .distributor-section,
    .testimonials-section,
    .blog-section {
        padding: 30px 0;
    }
    
    .why-choose-section .section-header h2,
    .testimonials-section .section-header h2 {
        font-size: 24px;
    }
    
    .distributor-section h2 {
        font-size: 26px;
    }
    
    .blog-section .section-header h2 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .why-choose-section .section-header,
    .testimonials-section .section-header {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .why-choose-section .section-header h2,
    .testimonials-section .section-header h2 {
        font-size: 22px !important;
        margin-bottom: 10px !important;
        display: block !important;
        width: 100% !important;
    }
    
    .why-choose-section .section-header p,
    .testimonials-section .section-header p {
        font-size: 14px !important;
        display: block !important;
        width: 100% !important;
        margin-top: 0 !important;
    }
    
    .distributor-section h2 {
        font-size: 24px !important;
    }
    
    .blog-section .section-header h2 {
        font-size: 22px !important;
    }
    
    .blog-section .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== FILTER PRODUCT QUICK VIEW BUTTON ===== */
.filter-quick-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 12px;
    margin-top: 10px;
    background: linear-gradient(135deg, var(--brand-primary,var(--web-primary,#16a34a)) 0%, var(--brand-secondary,var(--web-secondary,#fbbf24)) 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(59, 130, 246, 0.35);
}

.filter-quick-view-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* Shimmer effect */
.filter-quick-view-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: filter-shimmer 2.5s infinite;
}

@keyframes filter-shimmer {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.filter-quick-view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, var(--brand-primary,var(--web-primary,#16a34a)) 0%, var(--brand-secondary,var(--web-secondary,#fbbf24)) 100%);
    color: #fff;
}

.filter-quick-view-btn:hover svg {
    transform: scale(1.15);
}

/* ===== FILTER PAGE - USE SAME FP-CARD STYLES ===== */
.fp-grid--filter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .fp-grid--filter {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 575px) {
    .fp-grid--filter {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ===== QUICK VIEW MODAL - VIEW DETAILS BUTTON ===== */
.quick-view-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-view-details-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.quick-view-details-btn:hover {
    transform: translateY(-1px);
}

/* Mobile: Stack qty and view details */
@media (max-width: 767px) {
    .modal-quick-view .d-flex.align-items-center.gap-3.mb-30 {
        flex-wrap: wrap !important;
    }
    
    .quick-view-details-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* ===== QUICK VIEW MODAL - MOBILE (Distributor Style) ===== */
@media (max-width: 767px) {
    /* Full width bottom sheet style */
    .modal-quick-view .modal-dialog {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        transform: none !important;
    }
    
    .modal-quick-view .modal-content {
        border-radius: 20px 20px 0 0 !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
    }
    
    .modal-quick-view .modal-body {
        padding: 0 !important;
    }
    
    /* Close button - top right corner */
    .modal-quick-view .modal-body > .d-flex.justify-content-end {
        position: absolute !important;
        top: 12px !important;
        right: 12px !important;
        z-index: 10 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .modal-quick-view .close {
        width: 32px !important;
        height: 32px !important;
        background: rgba(0,0,0,0.5) !important;
        border-radius: 50% !important;
        color: #fff !important;
        font-size: 20px !important;
        line-height: 32px !important;
        padding: 0 !important;
        opacity: 1 !important;
    }
    
    /* Image Section - Full width with light background */
    .modal-quick-view .pd-img-wrap {
        margin: 0 !important;
        padding: 0 !important;
        position: relative !important;
    }
    
    .modal-quick-view .quickviewSlider2 {
        border: none !important;
        border-radius: 0 !important;
        background: #f8f9fa !important;
        padding: 20px !important;
    }
    
    .modal-quick-view .quickviewSlider2 img {
        width: 100% !important;
        max-height: 250px !important;
        height: auto !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    /* Hide unnecessary elements */
    .modal-quick-view .quickviewSliderThumb2,
    .modal-quick-view .mt-3.user-select-none,
    .modal-quick-view .cz-product-gallery-icons,
    .modal-quick-view .d-block.pb-2.text-truncate,
    .modal-quick-view .pro,
    .modal-quick-view .quick-view-details-btn {
        display: none !important;
    }
    
    /* Content Section */
    .modal-quick-view .col-lg-7,
    .modal-quick-view .col-md-8 {
        padding: 20px !important;
    }
    
    .modal-quick-view .details {
        padding: 0 !important;
        border: none !important;
    }
    
    /* Product Title */
    .modal-quick-view .fs-18,
    .modal-quick-view a.fs-18 {
        font-size: 18px !important;
        font-weight: 700 !important;
        color: #0f172a !important;
        margin-bottom: 12px !important;
        display: block !important;
        line-height: 1.3 !important;
    }
    
    /* Price */
    .modal-quick-view .product-price-show {
        font-size: 24px !important;
        font-weight: 800 !important;
        color: #16a34a !important;
    }
    
    .modal-quick-view .off-price {
        font-size: 16px !important;
        color: #9ca3af !important;
    }
    
    /* Quantity Section */
    .modal-quick-view .product-quantity {
        margin-bottom: 0 !important;
    }
    
    .modal-quick-view .d-flex.align-items-center.gap-3.mb-30 {
        flex-wrap: wrap !important;
        gap: 12px !important;
        margin-bottom: 16px !important;
    }
    
    .modal-quick-view .product-description-label {
        font-size: 14px !important;
        font-weight: 600 !important;
        color: #6b7280 !important;
    }
    
    .modal-quick-view .quantity-box {
        height: 44px !important;
        border-radius: 10px !important;
        border: 1px solid #e5e7eb !important;
    }
    
    .modal-quick-view .quantity-box .btn-number {
        width: 44px !important;
        font-size: 18px !important;
        font-weight: 600 !important;
    }
    
    .modal-quick-view .quantity-box input {
        font-size: 16px !important;
        font-weight: 700 !important;
    }
    
    /* Total Price Section */
    .modal-quick-view .product-details-chosen-price-section {
        padding: 14px 16px !important;
        margin: 16px 0 !important;
        background: #f0fdf4 !important;
        border-radius: 10px !important;
        border: 1px solid #dcfce7 !important;
    }
    
    .modal-quick-view .product-details-chosen-price-amount {
        font-size: 22px !important;
        font-weight: 800 !important;
        color: #16a34a !important;
    }
    
    /* Action Buttons */
    .modal-quick-view .__btn-grp {
        display: flex !important;
        gap: 12px !important;
        flex-wrap: nowrap !important;
    }
    
    .modal-quick-view .__btn-grp .btn {
        flex: 1 !important;
        padding: 16px 20px !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        border-radius: 12px !important;
    }
    
    .modal-quick-view .__btn-grp .btn-secondary {
        background: #f3f4f6 !important;
        border: 1px solid #e5e7eb !important;
        color: #374151 !important;
    }
    
    .modal-quick-view .__btn-grp .btn--primary {
        background: linear-gradient(135deg, #16a34a, #15803d) !important;
        border: none !important;
        color: #fff !important;
    }
    
    /* Hide wishlist button in button group */
    .modal-quick-view .__btn-grp .product-action-add-wishlist {
        display: none !important;
    }
    
    /* Compact spacing */
    .modal-quick-view .row {
        margin: 0 !important;
    }
    
    .modal-quick-view .row > [class*="col-"] {
        padding: 0 !important;
    }
    
    .modal-quick-view .mb-3 {
        margin-bottom: 12px !important;
    }
    
    .modal-quick-view .gap-3 {
        gap: 10px !important;
    }
    
    /* Hide color/variant options on mobile for simplicity */
    .modal-quick-view .checkbox-color,
    .modal-quick-view .checkbox-alphanumeric {
        display: none !important;
    }
    
    .modal-quick-view .position-relative.d-none {
        display: none !important;
    }
}

/* ================================================
   PREMIUM HOMEPAGE SECTIONS - DARLING A VEGETABLE OIL
   ================================================ */

/* Global Section Spacing & Typography */
.premium-section {
    padding: 80px 0;
    position: relative;
}

.premium-section-dark {
    background: linear-gradient(135deg, #1e3a2f 0%, #0d1f17 100%);
    color: #fff;
}

.premium-section-alt {
    background: linear-gradient(180deg, #f8faf8 0%, #f0f5f0 100%);
}

.premium-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.premium-section-title-light {
    color: #fff;
}

.premium-section-subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(22,163,74,0.1), rgba(22,163,74,0.05));
    color: #16a34a;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

/* Premium Card Styling */
.premium-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(22,163,74,0.15);
    border-color: rgba(22,163,74,0.2);
}

.premium-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
}

.premium-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.premium-card-text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
}

/* Premium Button Styling */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(22,163,74,0.3);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22,163,74,0.4);
    color: #fff;
    text-decoration: none;
}

.btn-premium-outline {
    background: transparent;
    border: 2px solid #16a34a;
    color: #16a34a;
    box-shadow: none;
}

.btn-premium-outline:hover {
    background: #16a34a;
    color: #fff;
}

.btn-premium-gold {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    box-shadow: 0 4px 15px rgba(245,158,11,0.3);
}

.btn-premium-gold:hover {
    box-shadow: 0 8px 25px rgba(245,158,11,0.4);
}

/* Stats Grid */
.premium-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.premium-stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.premium-stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1;
    margin-bottom: 8px;
}

.premium-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 90px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #16a34a, #22c55e, #16a34a);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 10px;
}

.process-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 16px;
    box-shadow: 0 4px 15px rgba(22,163,74,0.3);
    border: 4px solid #fff;
}

.process-step-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.process-step-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.process-step-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.industry-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #16a34a, #22c55e);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    border-color: rgba(22,163,74,0.2);
    box-shadow: 0 20px 40px rgba(22,163,74,0.15);
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(22,163,74,0.1), rgba(22,163,74,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    transform: scale(1.1);
}

.industry-card:hover .industry-icon span {
    filter: brightness(0) invert(1);
}

.industry-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.industry-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Trust Indicators */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(22,163,74,0.12);
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(22,163,74,0.1), rgba(22,163,74,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 16px;
}

.trust-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.trust-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

/* Testimonials Premium */
.testimonial-rating-card {
    background: linear-gradient(135deg, #16a34a, #0f7535);
    border-radius: 24px;
    padding: 48px;
    color: #fff;
    text-align: center;
}

.testimonial-rating-number {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
}

.testimonial-rating-stars {
    font-size: 28px;
    color: #fbbf24;
    margin-bottom: 16px;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(22,163,74,0.12);
}

.testimonial-quote-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 48px;
    opacity: 0.1;
    color: #16a34a;
}

.testimonial-stars {
    font-size: 16px;
    color: #fbbf24;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.testimonial-role {
    font-size: 13px;
    color: #6b7280;
}

.testimonial-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #16a34a;
    background: rgba(22,163,74,0.1);
    padding: 4px 10px;
    border-radius: 50px;
    margin-top: 8px;
}

/* CTA Section */
.cta-premium {
    background: linear-gradient(135deg, #1e3a2f 0%, #0d1f17 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(22,163,74,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.9);
}

.cta-benefit-icon {
    width: 28px;
    height: 28px;
    background: rgba(22,163,74,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    font-size: 14px;
}

.cta-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.cta-stat {
    text-align: center;
}

.cta-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1;
    margin-bottom: 8px;
}

.cta-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* Blog Premium */
.blog-card-premium {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.blog-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(22,163,74,0.15);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.blog-card-premium:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-body {
    padding: 28px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 16px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #16a34a;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    gap: 12px;
    color: #0f7535;
}

/* Hero Premium */
.hero-premium {
    background: linear-gradient(135deg, #1e3a2f 0%, #0d1f17 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at right top, rgba(22,163,74,0.2) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(22,163,74,0.15);
    color: #22c55e;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid rgba(22,163,74,0.2);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title span {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.hero-product-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-product-image {
    max-height: 500px;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-floating-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 3s ease-in-out infinite;
}

.hero-floating-card:nth-child(2) { animation-delay: -1s; }
.hero-floating-card:nth-child(3) { animation-delay: -2s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-floating-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.hero-floating-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-floating-text span {
    font-size: 12px;
    color: #6b7280;
}

.hero-trust-bar {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    margin-top: auto;
}

.hero-trust-bar .trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.hero-trust-bar .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
}

.hero-trust-bar .trust-item i {
    color: #22c55e;
    font-size: 18px;
}

/* Responsive - Premium Homepage */
@media (max-width: 1199px) {
    .premium-section-title {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .premium-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .premium-section {
        padding: 60px 0;
    }
    
    .premium-section-title {
        font-size: 32px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 32px;
    }
    
    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 3px;
        height: 100%;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-product-showcase {
        margin-top: 48px;
    }
    
    .hero-product-image {
        max-height: 350px;
    }
    
    .cta-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .premium-section {
        padding: 48px 0;
    }
    
    .premium-section-title {
        font-size: 28px;
    }
    
    .premium-section-subtitle {
        font-size: 16px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-premium {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .hero-floating-card {
        display: none;
    }
    
    .premium-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-rating-number {
        font-size: 56px;
    }
    
    .blog-card-image {
        height: 180px;
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

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

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.5s ease forwards;
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Stagger animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== DESKTOP NAVIGATION FIXES ===== */
/* Hide hamburger menu on desktop */
@media (min-width: 768px) {
    .navbar-toggler {
        display: none !important;
    }
}

/* ===== DESKTOP HERO FULL WIDTH FIX ===== */
/* Root cause: style.css sets .__top-slider-images to calc(100% - 254px) for category sidebar */
/* Since we removed the sidebar, we need full width */
@media (min-width: 1280px) {
    .premium-hero-banner .__top-slider-images {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    /* Override max-height constraint on slide images */
    .premium-hero-banner .__slide-img {
        height: 100%;
        max-height: none;
    }
    
    /* Ensure hero wrapper has proper height */
    .premium-hero-banner .hero-slider-wrapper {
        min-height: 550px;
    }
}

/* Override all fixed height constraints on hero slider images for desktop */
@media (min-width: 768px) {
    .premium-hero-banner .__top-slider-images .__slide-img,
    .premium-hero-banner .__slide-img {
        height: 100% !important;
        max-height: none !important;
        min-height: 100%;
    }
}

/* Ensure navigation links are visible on desktop */
@media (min-width: 768px) {
    .navbar-nav {
        color: #1f2937 !important;
    }
    
    .navbar-nav .nav-link {
        color: #1f2937 !important;
        font-weight: 500;
        padding: 0.5rem 1rem;
    }
    
    .navbar-nav .nav-link:hover {
        color: var(--web-primary, #16a34a) !important;
    }
    
    .navbar-nav .nav-item.active .nav-link {
        color: var(--web-primary, #16a34a) !important;
    }
}

/* Desktop navigation spacing */
@media (min-width: 1200px) {
    .navbar-stuck-menu .container {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .navbar-nav {
        gap: 0.5rem;
    }
}

/* ===== DESKTOP HERO SECTION ALIGNMENT ===== */
/* Fix hero section layout on desktop */
@media (min-width: 1200px) {
    .premium-hero-banner .row {
        align-items: stretch;
    }
    
    /* Category sidebar proper height */
    .premium-hero-banner .__top-slider-cate {
        display: flex;
        align-items: flex-start;
    }
    
    .premium-category-menu {
        width: 100%;
    }
    
    /* Slider section proper alignment */
    .premium-hero-banner .__top-slider-images {
        display: flex;
        align-items: center;
    }
    
    /* Ensure slider wrapper fills properly */
    .premium-hero-banner .__top-slider-images > div {
        width: 100%;
    }
}

/* Fix container width issues on desktop */
@media (min-width: 1200px) {
    .container-fluid.px-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .premium-hero-banner .container-fluid {
        max-width: 100%;
    }
}
