

@media (max-width: 767px) {
    .homepage-hero {
        min-height: clamp(30rem, 74vh, 40rem);
    }

    .homepage-hero-image-layer {
        width: 100%;
        opacity: 0.42;
        background-size: 165% auto;
        background-position: calc(100% + 8px) calc(50% - 1rem);
    }
}

.stat-card {
    animation: scaleIn 0.6s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

/* ===== TRUST BADGES ===== */

.trust-badge {
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    padding: 1.4rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: #ffffff;
    color: #000000;
    border-radius: 1.5rem;
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

.trust-badge:hover {
    transform: translateY(-6px);
    border-color: rgba(239, 72, 37, 0.7);
    background: #f9fafb;
}

.trust-badge i,
.trust-badge .lucide,
.trust-badge svg {
    color: #ef4825 !important;
    stroke: currentColor;
}

.homepage-trust-strip {
    position: relative;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.55);
    border-bottom: 1px solid rgba(239, 72, 37, 0.85);
}

.homepage-trust-strip .trust-badge {
    padding: 0.95rem 0.8rem;
    border-radius: 1rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.homepage-trust-strip .trust-badge h3 {
    font-size: 0.95rem;
    line-height: 1.2;
}

/* ===== CATEGORY CARDS ===== */

.category-card {
    position: relative;
    isolation: isolate;
    display: block;
    transition: all 0.3s ease;
    border-radius: 1.8rem;
    overflow: hidden;
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(148, 163, 184, 0.34);
    border-radius: inherit;
    pointer-events: none;
    z-index: 3;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
}

.category-card:hover::after {
    border-color: rgba(51, 65, 85, 0.42);
}

.homepage-card-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: min(92%, 15rem);
    min-height: 2rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: anywhere;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    box-shadow: 0 8px 16px rgba(2, 6, 23, 0.2);
}

@media (max-width: 767px) {
    .homepage-card-tag {
        max-width: calc(100% - 0.5rem);
        min-height: 1.9rem;
        padding: 0.45rem 0.82rem;
        font-size: 0.8125rem;
    }
}

.homepage-card-link {
    color: #0f172a;
    font-size: 0.875rem;
    font-weight: 700;
}

/* ===== PRODUCT CARDS ===== */

.product-card {
    background: white;
    border-radius: 1.8rem;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.14);
    transition: all 0.3s ease;
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.product-landing-title {
    max-width: 12ch;
}

.catalog-compact-summary {
    align-items: flex-start;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
    border-color: rgba(51, 65, 85, 0.25);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
}

.product-card-image > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 1rem;
    background: #ffffff;
}

.product-card-image > .product-badge,
.product-card-image > .absolute {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.product-card-body {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.product-card-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.42rem;
    padding: 0.68rem 0.85rem 0.85rem;
    min-height: 30%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.64) 50%, rgba(0, 0, 0, 0.9) 100%);
}

.product-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-height: 0;
    flex: 0 0 auto;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
}

.product-card-meta {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
}

.product-card-title {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-height: 2.4em;
    text-overflow: ellipsis;
    overflow-wrap: anywhere;
    word-break: normal;
}

.product-card-price {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 2;
    color: #111827;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.01em;
    white-space: nowrap;
    padding: 0.45rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(10px);
}

.product-card-cta {
    width: 100%;
    flex: 1 1 auto;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(239, 72, 37, 0.96);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.82rem;
    line-height: 1;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.product-card-cta:hover {
    background: #ef4825;
    border-color: rgba(255, 255, 255, 0.34);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: none;
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: none;
    border: 1px solid #e5e7eb;
}

/* ===== FEATURE CARDS ===== */

.feature-card {
    padding: 2rem;
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.92) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(148, 163, 184, 0.14);
    transition: all 0.3s ease;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
    position: relative;
}

.feature-card:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 245, 249, 0.96) 100%);
    transform: translateY(-6px);
}

.homepage-feature-index {
    position: absolute;
    top: 1.8rem;
    right: 1.8rem;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #94a3b8;
}

/* ===== CTA CARD ===== */

.cta-card {
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: none;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: #ffffff;
    color: #374151;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #f9fafb;
    transform: translateY(-2px);
}

.app-page footer.bg-gray-900 .brand-logo-badge {
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
}

.app-page footer.bg-gray-900 .social-icon {
    background: transparent !important;
    color: #ffffff !important;
    border: 0 !important;
}

.app-page footer.bg-gray-900 .social-icon:hover {
    background: transparent !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.homepage-cart-btn {
    background: #0f172a;
    color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
}

.homepage-cart-btn:hover {
    background: #1f2937;
}

.homepage-section {
    position: relative;
    padding-top: clamp(3.75rem, 7vw, 6rem);
    padding-bottom: clamp(3.75rem, 7vw, 6rem);
}

.homepage-products-cta {
    margin-top: clamp(2.25rem, 4vw, 4rem) !important;
    margin-bottom: clamp(2rem, 3.5vw, 3.75rem) !important;
}

@media (max-width: 767px) {
    .homepage-section {
        padding-top: 2.75rem;
        padding-bottom: 2.75rem;
    }
}

.homepage-cta {
    position: relative;
    border-radius: 2.5rem;
    background: linear-gradient(135deg, #020617 0%, #0f172a 52%, #1e293b 100%);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.2);
}

.homepage-cta-band {
    width: 100%;
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    box-shadow: none !important;
    margin: 0;
}

.homepage-cta-band .homepage-inline-form {
    border-radius: 0.9rem;
}

.homepage-lead-form-wrap {
    overflow: hidden;
}

.homepage-inline-form {
    position: relative;
    z-index: 1;
    padding: 1.4rem;
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.homepage-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.homepage-inline-form .homepage-primary-action,
.homepage-inline-form .homepage-secondary-action {
    min-width: 0;
    flex: 1 1 12rem;
    max-width: 100%;
}

.homepage-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.homepage-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.homepage-field>span {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.homepage-field input,
.homepage-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.94);
    color: #0f172a;
    padding: 0.95rem 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.homepage-field textarea {
    min-height: 7.5rem;
    resize: vertical;
}

.homepage-field input::placeholder,
.homepage-field textarea::placeholder {
    color: #94a3b8;
}

.homepage-field input:focus,
.homepage-field textarea:focus {
    outline: none;
    border-color: rgba(125, 211, 252, 0.8);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.16);
    transform: translateY(-1px);
}

.homepage-footer {
    background: #fafafa;
}

.homepage-cta-glow {
    display: none;
}

@media (max-width: 767px) {
    .homepage-form-grid {
        grid-template-columns: 1fr;
    }

    .homepage-inline-form {
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .homepage-form-actions {
        flex-direction: column;
    }
}

/* ===== SKELETON LOADING ===== */

.skeleton-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.skeleton-image {
    width: 100%;
    height: 16rem;
    background: linear-gradient(90deg,
            #f3f4f6 0%,
            #e5e7eb 50%,
            #f3f4f6 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-line {
    height: 1rem;
    background: linear-gradient(90deg,
            #f3f4f6 0%,
            #e5e7eb 50%,
            #f3f4f6 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 0.25rem;
}

/* ===== CUSTOM SCROLLBAR ===== */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .hero-image-container {
        display: none;
    }

    .stat-card {
        position: static !important;
        margin-top: 1rem;
    }

    .homepage {
        background: linear-gradient(180deg, #f4efe7 0%, #ffffff 28%, #ffffff 100%);
    }

    .homepage-cta {
        border-radius: 1.8rem;
    }
}

/* ===== UTILITIES ===== */

.gradient-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.transition-all {
    transition: all 0.3s ease;
}

/* ===== PROGRESS BAR ===== */

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transition: width 0.3s ease;
}

/* ===== ACCORDION ===== */