/* ====================================
   TORRID - Home Page Redesign Styles
   Modern, Luxury Design
==================================== */

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0B0B0B;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    text-align: center;
    margin-bottom: 20px;
}

.preloader-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
    animation: pulseLogo 2s infinite;
}

.preloader-text {
    font-size: 24px;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.preloader-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    animation: loadingLine 1.5s infinite;
}

@keyframes pulseLogo {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes loadingLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Header Enhancements */
.header {
    background: linear-gradient(to bottom, rgba(11, 11, 11, 0.95), rgba(11, 11, 11, 0.8));
    backdrop-filter: blur(10px);
}

.header-icons a {
    position: relative;
    overflow: hidden;
}

.header-icons a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.header-icons a:hover::after {
    width: 40px;
    height: 40px;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    position: relative;
}

.search-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: #D4AF37;
    font-size: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.search-close:hover {
    transform: rotate(90deg);
}

.search-form {
    display: flex;
    gap: 15px;
}

.search-form input {
    flex: 1;
    padding: 20px 25px;
    background: #1A1A1A;
    border: 2px solid #D4AF37;
    color: #F8F8F8;
    font-size: 18px;
    transition: all 0.3s ease;
}

.search-form input:focus {
    outline: none;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.search-form button {
    padding: 0 30px;
    background: #D4AF37;
    color: #0B0B0B;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form button:hover {
    background: #B8962E;
}

/* Hero Section Enhancements */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(11, 11, 11, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    display: inline-block;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid #D4AF37;
    animation: fadeInLeft 1s ease;
}

.hero-title {
    font-size: 80px;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInRight 1s ease;
}

.gold-text {
    color: #D4AF37;
    position: relative;
    display: inline-block;
}

.gold-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-size: 16px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    animation: fadeInUp 1s ease 0.9s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #F8F8F8;
    letter-spacing: 1px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #F8F8F8;
    text-align: center;
    z-index: 2;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.hero-scroll span {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

/* Enhanced Category Cards */
.featured-categories {
    padding: 100px 0;
    background: linear-gradient(135deg, #0B0B0B 0%, #1A1A1A 100%);
}

.category-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.category-card-enhanced {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.category-card-enhanced:hover {
    transform: translateY(-10px);
}

.category-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.category-image {
    width: 100%;
    height: 100%;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card-enhanced:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 11, 11, 0.9), rgba(11, 11, 11, 0.3));
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: all 0.3s ease;
}

.category-card-enhanced:hover .category-overlay {
    background: linear-gradient(to top, rgba(212, 175, 55, 0.3), rgba(11, 11, 11, 0.5));
}

.category-content {
    color: #F8F8F8;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.category-card-enhanced:hover .category-content {
    transform: translateY(0);
}

.category-icon {
    font-size: 30px;
    color: #D4AF37;
    margin-bottom: 15px;
}

.category-content h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.category-content p {
    font-size: 14px;
    color: #B8962E;
    margin-bottom: 15px;
}

.category-link {
    color: #D4AF37;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.category-card-enhanced:hover .category-link {
    opacity: 1;
    transform: translateX(0);
}

.category-link:hover {
    gap: 10px;
}

/* Enhanced Product Cards */
.featured-products {
    padding: 100px 0;
    background: #0B0B0B;
}

.product-filters-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.product-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.product-card-enhanced {
    background: #1A1A1A;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card-enhanced:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.product-badge-wrapper {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    display: flex;
    gap: 5px;
}

.product-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.featured {
    background: #D4AF37;
    color: #0B0B0B;
}

.product-badge.sale {
    background: #dc3545;
    color: #fff;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-enhanced:hover .product-image {
    transform: scale(1.1);
}

.product-actions {
    position: absolute;
    top: 15px;
    right: -50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: right 0.3s ease;
}

.product-card-enhanced:hover .product-actions {
    right: 15px;
}

.product-action-btn {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.9);
    color: #0B0B0B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.product-action-btn:hover {
    background: #D4AF37;
    transform: scale(1.1);
}

.product-action-btn.whatsapp {
    background: rgba(37, 211, 102, 0.9);
}

.product-action-btn.whatsapp:hover {
    background: #25D366;
}

.product-info-enhanced {
    padding: 20px;
    text-align: center;
}

.product-category-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(212, 175, 55, 0.1);
    color: #B8962E;
    font-size: 11px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.product-title-enhanced {
    font-size: 16px;
    margin-bottom: 8px;
    color: #F8F8F8;
    font-weight: 500;
}

.product-rating {
    margin-bottom: 8px;
    color: #D4AF37;
    font-size: 12px;
}

.product-rating span {
    color: #666;
    margin-left: 5px;
}

.product-price-enhanced {
    font-size: 18px;
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-price-enhanced .old-price {
    font-size: 14px;
    color: #666;
    text-decoration: line-through;
    margin-left: 8px;
}

.whatsapp-btn-small {
    display: inline-block;
    padding: 8px 20px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.whatsapp-btn-small:hover {
    background: #128C7E;
    transform: scale(1.05);
}

/* About Preview Section */
.about-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #0B0B0B 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #F8F8F8;
}

.about-feature i {
    color: #D4AF37;
    font-size: 18px;
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.about-image-grid::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 2px solid #D4AF37;
    border-radius: 15px;
    z-index: 1;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 2;
}

.about-image-wrapper:first-child {
    grid-column: span 2;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #0B0B0B;
}

.testimonial-slider {
    padding: 20px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: #1A1A1A;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    position: relative;
}

.testimonial-quote {
    font-size: 40px;
    color: #D4AF37;
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #F8F8F8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #D4AF37;
}

.author-info p {
    font-size: 12px;
    color: #B8962E;
}

.swiper-button-next,
.swiper-button-prev {
    color: #D4AF37;
    background: rgba(11, 11, 11, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
}

.swiper-pagination-bullet {
    background: #D4AF37;
}

/* Enhanced Features Section */
.features-enhanced {
    padding: 60px 0;
    background: #1A1A1A;
}

.features-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.feature-item-enhanced {
    text-align: center;
    padding: 30px 20px;
    background: #0B0B0B;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.feature-item-enhanced:hover .feature-icon-wrapper {
    background: #D4AF37;
    color: #0B0B0B;
}

.feature-item-enhanced h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #F8F8F8;
}

.feature-item-enhanced p {
    font-size: 12px;
    color: #B8962E;
}

/* Enhanced Newsletter Section */
.newsletter-enhanced {
    padding: 80px 0;
    background: linear-gradient(135deg, #0B0B0B 0%, #1A1A1A 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M20 20 L80 20 L80 80 L20 80 Z" fill="none" stroke="%23D4AF37" stroke-width="2"/><circle cx="50" cy="50" r="20" fill="none" stroke="%23D4AF37" stroke-width="2"/></svg>') repeat;
    background-size: 100px;
}

.newsletter-wrapper {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid #D4AF37;
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter-wrapper h2 {
    font-size: 36px;
    color: #D4AF37;
    margin-bottom: 15px;
}

.newsletter-wrapper p {
    font-size: 16px;
    margin-bottom: 30px;
}

.newsletter-form-enhanced {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    flex: 1;
    position: relative;
}

.newsletter-input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #D4AF37;
}

.newsletter-input-group input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: #0B0B0B;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #F8F8F8;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.newsletter-form-enhanced button {
    padding: 15px 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Instagram Section */
.instagram-section {
    padding: 100px 0;
    background: #0B0B0B;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    display: block;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-overlay i {
    font-size: 40px;
    color: white;
}

/* Enhanced Footer */
.footer-enhanced {
    background: linear-gradient(135deg, #0B0B0B 0%, #1A1A1A 100%);
    padding: 80px 0 20px;
    position: relative;
}

.footer-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 2px;
}

.footer-description {
    color: #F8F8F8;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #D4AF37;
    color: #0B0B0B;
    transform: translateY(-5px);
}

.footer-col h3 {
    font-size: 18px;
    color: #D4AF37;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #D4AF37;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #F8F8F8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 12px;
    color: #D4AF37;
}

.footer-links a:hover {
    color: #D4AF37;
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #F8F8F8;
}

.footer-contact li i {
    color: #D4AF37;
    font-size: 16px;
}

.footer-hours {
    margin-top: 20px;
}

.footer-hours h4 {
    color: #D4AF37;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-hours p {
    color: #F8F8F8;
    font-size: 13px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #F8F8F8;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #F8F8F8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #D4AF37;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #D4AF37;
    color: #0B0B0B;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #B8962E;
    transform: translateY(-5px);
}

/* Animation Classes */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-grid-enhanced {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid-enhanced {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 60px;
    }
    
    .category-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .category-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .product-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .features-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .newsletter-form-enhanced {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .features-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}