.fallback-home {
    font-family: 'Poppins', sans-serif;
}
.fallback-home .hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #111827;
}
.fallback-home .hero .slide {
    position: relative;
    height: 85vh;
    min-height: 650px;
}
.fallback-home .hero .image-container {
    position: absolute;
    inset: 0;
}
.fallback-home .hero .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fallback-home .hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(17,24,39,0.8), rgba(107,33,168,0.4));
}
.fallback-home .hero .content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}
@media (min-width: 768px) {
    .fallback-home .hero .content {
        padding: 0 5rem;
    }
}
.fallback-home .hero .content.left {
    justify-content: flex-start;
    text-align: left;
}
.fallback-home .hero .content.right {
    justify-content: flex-end;
    text-align: right;
}
.fallback-home .hero .content.center {
    justify-content: center;
    text-align: center;
}
.fallback-home .hero .text-box {
    max-width: 42rem;
    color: white;
}
.fallback-home .hero .text-box h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}
@media (min-width: 768px) {
    .fallback-home .hero .text-box h2 {
        font-size: 3rem;
    }
}
.fallback-home .hero .text-box p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
@media (min-width: 768px) {
    .fallback-home .hero .text-box p {
        font-size: 1.25rem;
    }
}
.fallback-home .hero .btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #7d2ae8, #db2777);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: box-shadow 0.2s;
}
.fallback-home .hero .btn:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.fallback-home .hero .btn svg {
    width: 1rem;
    height: 1rem;
}
.fallback-home .hero .fallback-banner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #7d2ae8, #db2777);
}
.fallback-home .hero .fallback-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.fallback-home .hero .fallback-banner p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}
.fallback-home .hero .fallback-banner .btn-white {
    background: white;
    color: #7d2ae8;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}
.fallback-home .stats {
    background: linear-gradient(135deg, #7d2ae8, #db2777);
    color: white;
    padding: 3rem 0;
}
.fallback-home .stats .container {
    max-width: 72rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
    padding: 0 1rem;
}
@media (min-width: 768px) {
    .fallback-home .stats .container {
        grid-template-columns: repeat(4, 1fr);
    }
}
.fallback-home .stats .stat-value {
    font-size: 1.875rem;
    font-weight: 700;
}
@media (min-width: 768px) {
    .fallback-home .stats .stat-value {
        font-size: 2.25rem;
    }
}
.fallback-home .stats .stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}
.fallback-home .section {
    padding: 5rem 0;
}
.fallback-home .section.bg-gray {
    background-color: #f3f4f6;
}
.fallback-home .section.bg-white {
    background-color: white;
}
.fallback-home .section.bg-orange {
    background-color: #fff7ed;
}
.fallback-home .container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
}
.fallback-home .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #7d2ae8, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fallback-home .section-subtitle {
    text-align: center;
    color: #4b5563;
    max-width: 42rem;
    margin: 0 auto 3rem;
}
.fallback-home .grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .fallback-home .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .fallback-home .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}
.fallback-home .category-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s;
}
.fallback-home .category-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.fallback-home .category-card .image {
    height: 12rem;
    overflow: hidden;
}
.fallback-home .category-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.fallback-home .category-card:hover .image img {
    transform: scale(1.1);
}
.fallback-home .category-card .content {
    padding: 1.5rem;
    text-align: center;
}
.fallback-home .category-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1f2937;
}
.fallback-home .category-card .btn {
    display: inline-block;
    border: 2px solid #7d2ae8;
    color: #7d2ae8;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.fallback-home .category-card .btn:hover {
    background: #7d2ae8;
    color: white;
}
.fallback-home .product-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
}
.fallback-home .product-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    transform: translateY(-0.5rem);
}
.fallback-home .product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}
.fallback-home .product-badge.popular {
    background: linear-gradient(135deg, #7d2ae8, #db2777);
}
.fallback-home .product-badge.urgency {
    right: 1rem;
    left: auto;
    animation: pulse 2s infinite;
}
.fallback-home .product-badge.urgency.critical {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}
.fallback-home .product-badge.urgency.low {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.fallback-home .product-image {
    overflow: hidden;
}
.fallback-home .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.fallback-home .product-card:hover .product-image img {
    transform: scale(1.1);
}
.fallback-home .product-info {
    padding: 1.25rem;
}
.fallback-home .product-category {
    font-size: 0.875rem;
    color: #7d2ae8;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.fallback-home .product-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fallback-home .color-swatches {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}
.fallback-home .color-swatch {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.fallback-home .size-swatches {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}
.fallback-home .size-swatch {
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
}
.fallback-home .rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.fallback-home .stars {
    display: flex;
    color: #fbbf24;
}
.fallback-home .stars .star-gray {
    color: #d1d5db;
}
.fallback-home .rating-value {
    font-size: 0.875rem;
    color: #4b5563;
}
.fallback-home .price-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.fallback-home .current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7d2ae8;
}
.fallback-home .old-price {
    color: #9ca3af;
    text-decoration: line-through;
}
.fallback-home .discount-badge {
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
}
.fallback-home .stock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.fallback-home .stock i {
    color: #6b7280;
}
.fallback-home .stock-status {
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}
.fallback-home .stock-status.in-stock {
    background: #d1fae5;
    color: #047857;
}
.fallback-home .stock-status.low-stock {
    background: #fef3c7;
    color: #b45309;
}
.fallback-home .stock-status.out-of-stock {
    background: #fee2e2;
    color: #b91c1c;
}
.fallback-home .product-link {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #7d2ae8, #db2777);
    color: white;
    text-align: center;
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: box-shadow 0.2s;
}
.fallback-home .product-link:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.fallback-home .promo-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    position: relative;
    transition: box-shadow 0.2s;
}
.fallback-home .promo-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.fallback-home .promo-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}
.fallback-home .promo-image {
    height: 14rem;
    overflow: hidden;
}
.fallback-home .promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.fallback-home .promo-card:hover .promo-image img {
    transform: scale(1.1);
}
.fallback-home .promo-info {
    padding: 1.25rem;
}
.fallback-home .promo-name {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fallback-home .promo-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.fallback-home .promo-current {
    font-size: 1.25rem;
    font-weight: 700;
    color: #7d2ae8;
}
.fallback-home .promo-old {
    font-size: 0.875rem;
    color: #9ca3af;
    text-decoration: line-through;
}
.fallback-home .promo-btn {
    display: block;
    background: #ef4444;
    color: white;
    text-align: center;
    padding: 0.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}
.fallback-home .promo-btn:hover {
    background: #dc2626;
}
.fallback-home .review-card {
    background: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    position: relative;
    transition: box-shadow 0.2s;
}
.fallback-home .review-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.fallback-home .review-card .quote {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 2.5rem;
    color: #e9d5ff;
}
.fallback-home .review-product {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}
.fallback-home .review-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.fallback-home .user-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #7d2ae8, #db2777);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}
.fallback-home .user-name {
    font-weight: 500;
}
.fallback-home .review-stars {
    display: flex;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}
.fallback-home .review-stars .gray {
    color: #d1d5db;
}
.fallback-home .review-comment {
    color: #374151;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fallback-home .review-link {
    color: #7d2ae8;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.2s;
}
.fallback-home .review-link:hover {
    gap: 0.5rem;
}
.fallback-home .cta {
    background: linear-gradient(135deg, #6d28d9, #be185d);
    color: white;
    padding: 5rem 0;
    text-align: center;
}
.fallback-home .cta h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
@media (min-width: 768px) {
    .fallback-home .cta h2 {
        font-size: 2.25rem;
    }
}
.fallback-home .cta p {
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto 2rem;
}
.fallback-home .cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #6d28d9;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: box-shadow 0.2s;
}
.fallback-home .cta .btn:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.fallback-home .newsletter {
    background: #111827;
    color: white;
    padding: 5rem 0;
}
.fallback-home .newsletter .container {
    max-width: 36rem;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}
.fallback-home .newsletter h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.fallback-home .newsletter p {
    color: #9ca3af;
    margin-bottom: 2rem;
}
.fallback-home .newsletter form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .fallback-home .newsletter form {
        flex-direction: row;
    }
}
.fallback-home .newsletter input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    border: none;
    font-size: 1rem;
    color: #1f2937;
}
.fallback-home .newsletter input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(125,42,232,0.3);
}
.fallback-home .newsletter button {
    background: linear-gradient(135deg, #7d2ae8, #db2777);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.2s;
}
.fallback-home .newsletter button:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.fallback-home .newsletter .small {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 1rem;
}
