/* Home Page Specific Styles - Full Width Aesthetic Design */

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* CSS Hover Effects - Replacing JavaScript hover animations */
.banner-section {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-section:hover {
    transform: translateY(-5px);
}

.product-card {
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

/* ===== GRID SLIDER STYLES ===== */
.grid-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 20px 0;
}

.grid-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.grid-nav-btn {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 80px;
    width: 100%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        padding: 0 40px;
    }
    display: flex;
    align-items: center;
    justify-content: center;
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 0 30px;
    }
    background: rgba(212, 175, 55, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        padding: 0 25px;
    }
    transform: translateY(-50%);
}

.grid-prev-btn {
    left: -25px;
}

.grid-next-btn {
    right: -25px;
}

.grid-dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 12px;
}

.grid-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.grid-dot.active {
    background: var(--golden-color);
    border-color: var(--golden-color);
    transform: scale(1.2);
}

.grid-dot:hover {
    border-color: var(--golden-color);
    transform: scale(1.1);
}

/* Responsive Grid Slider */
@media (max-width: 1024px) {
    .grid-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .grid-prev-btn {
        left: -20px;
    }
    
    .grid-next-btn {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .grid-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .grid-prev-btn {
        left: 10px;
    }
    
    .grid-next-btn {
        right: 10px;
    }
    
    .grid-dots-container {
        margin-top: 20px;
        gap: 8px;
    }
    
    .grid-dot {
        width: 10px;
        height: 10px;
    }
}

/* Full Width Container System */
.full-width {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.content-wrapper {
    margin: 0 auto;
    padding: 0 60px;
}

.no-padding {
    padding: 0;
}

/* Hero Message Section */
.hero-message {
    background: linear-gradient(135deg, #fdfcf8 0%, #ffffff 100%);
    padding: 100px 0;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    width: 100%;
    position: relative;
}

.hero-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23f8f7f4" opacity="0.1"><polygon points="0,0 1000,0 1000,100"/></svg>') repeat-x;
    opacity: 0.03;
}

.hero-message-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-message-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 30px;
    letter-spacing: 1.5px;
    line-height: 1.15;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.hero-message-subtitle {
    font-size: 1.4rem;
    color: #555;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.8px;
    opacity: 0.9;
}

/* Featured Collection Banners */
.featured-banners {
    padding: 0;
    background: #ffffff;
    width: 100%;
}

.banner-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    margin-bottom: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    width: 100%;
}

.banner-section:hover {
    transform: none;
}

.banner-section:last-child {
    margin-bottom: 0;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease;
}

.banner-section:hover .banner-image {
    transform: scale(1.03);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(212, 175, 55, 0.15) 50%,
        rgba(0, 0, 0, 0.4) 100%
    ); */
    z-index: 2;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 0px;
    right: 0px;
    text-align: center;
    z-index: 3;
    color: white;
    width: 100%;
    padding: 20px;
}

.banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
    line-height: 1.1;
}

.banner-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 1px;
    line-height: 1.5;
}

.explore-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--golden-gradient);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.explore-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.explore-button:hover::before {
    left: 100%;
}

.explore-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #e5c04a, #c9a526);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Categories Showcase */
.categories-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 80px 0px;
}

.category-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

.category-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 3;
    color: white;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.category-description {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.5;
}

.category-link {
    color: var(--golden-color);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--golden-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

/* Best Sellers Section */
.best-sellers-section {
    padding: 120px 0;
    background: #ffffff;
    width: 100%;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 80px;
    width: 100%;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--golden-gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    z-index: 3;
    text-transform: uppercase;
}

.product-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-info {
    padding: 30px 25px;
    text-align: center;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--golden-color);
    letter-spacing: 0.5px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 25px;
    position: relative;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--golden-color), transparent);
    margin: 30px auto 0;
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.section-footer {
    text-align: center;
    margin-top: 60px;
}

.view-all-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--golden-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: var(--golden-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Lifestyle Banner */
.lifestyle-banner {
    position: relative;
    height: 500px;
    margin: 0;
    overflow: hidden;
}

.lifestyle-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.lifestyle-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.lifestyle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(212, 175, 55, 0.2) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

.lifestyle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    color: white;
    max-width: 600px;
}

.lifestyle-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 25px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.lifestyle-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.95;
}

.lifestyle-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid white;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.lifestyle-btn:hover {
    background: white;
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f8f7f4 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.about-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: 300;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--golden-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 8px;
    font-weight: 400;
}

.feature-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.about-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover .about-img {
    transform: scale(1.03);
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.testimonial-card {
    background: linear-gradient(135deg, #fafafa 0%, #f8f7f4 100%);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #2c2c2c;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border: 3px solid #d4af37;
}

.author-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 5px;
    font-weight: 400;
}

.author-title {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.newsletter-description {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
    font-weight: 300;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.newsletter-email {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-email::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-email:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-submit {
    padding: 15px 35px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-submit:hover {
    background: linear-gradient(135deg, #e5c04a, #c9a526);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.newsletter-privacy {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    
    .categories-grid {
        gap: 30px;
    }
    
    .hero-message-title,
    .banner-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    
    .banner-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .hero-message-title {
        font-size: 2.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 20px 0px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .banner-section {
        margin-bottom: 30px;
    }
    
    .banner-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .banner-subtitle {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    
    .explore-button {
        padding: 14px 35px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-message_title {
        font-size: 2.2rem;
    }
    
    .hero-message,
    .categories-showcase,
    .best-sellers-section,
    .about-section,
    .testimonials-section {
        padding: 80px 0;
    }
    
    .newsletter-section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .form-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-img {
        height: 400px;
    }
    
    .feature-item {
        gap: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 1.8rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .explore-button {
        padding: 12px 28px;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-message_title {
        font-size: 1.8rem;
    }
    
    .hero-message-subtitle {
        font-size: 1.1rem;
    }
    
    .product-info {
        padding: 25px 20px;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    .category-card {
        height: 220px;
        border-radius: 10px;
    }
    
    .category-content {
        bottom: 30px;
        left: 30px;
        right: 30px;
    }
    
    .category-title {
        font-size: 1.6rem;
    }
    
    .lifestyle-title {
        font-size: 2.2rem;
    }
    
    .lifestyle-description {
        font-size: 1.1rem;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-form {
        padding: 30px 25px;
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .content-wrapper {
        padding: 0 40px;
    }
    
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 0 40px;
    }
    
    .banner-title {
        font-size: 4.5rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 1200px) {
    .content-wrapper {
        padding: 0 30px;
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 0 30px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .lifestyle-content {
        grid-template-columns: 1fr;
    }
    
    .lifestyle-text {
        padding: 60px 40px;
    }
}

@media (max-width: 992px) {
    .content-wrapper {
        padding: 0 25px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        padding: 0 25px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-title {
        font-size: 3.5rem;
    }
    
    .hero-message_title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .lifestyle-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 0 20px;
    }
    
    .section-header {
        padding: 0 20px;
        margin-bottom: 60px;
    }
    
    .product-grid {
        padding: 0 20px;
        gap: 5px;
    }
    
    .banner-section {
        min-height: 400px;
    }
    
    .banner-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }
    
    .explore-button {
        padding: 16px 40px;
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .hero-message {
        padding: 60px 0;
    }
    
    .hero-message_title {
        font-size: 2.2rem;
    }
    
    .hero-message-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .categories-showcase,
    .best-sellers-section {
        padding: 80px 0;
    }
    
    .category-card {
        height: 220px;
    }
    
    .category-content {
        bottom: 30px;
        left: 30px;
        right: 30px;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .lifestyle-text {
        padding: 40px 30px;
    }
    
    .lifestyle-title {
        font-size: 2rem;
    }
    
    .lifestyle-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 0 15px;
    }
    
    .section-header {
        padding: 0 15px;
    }
    
    .product-grid {
        padding: 0 15px;
    }
    
    .banner-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .explore-button {
        padding: 14px 30px;
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
    
    .hero-message_title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-info {
        padding: 25px 20px;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .category-description {
        font-size: 0.95rem;
    }
}

/* Swiper Best Sellers Custom Styles */
.best-sellers-section .swiper {
    width: 100%;
    padding-bottom: 40px;
}
.best-sellers-section .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto;
}
.best-sellers-section .product-card {
    width: 100%;
    margin: 0;
    box-shadow: none;
    background: linear-gradient(135deg, #fdfcf8 0%, #faf9f4 100%);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}
.best-sellers-section .product-card:hover {
    background: linear-gradient(135deg, #faf9f4 0%, #f8f7f2 100%);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-8px);
}
.best-sellers-section .product-info {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    margin: 0;
    padding: 20px;
}
.best-sellers-section .product-name {
    color: #2c2c2c;
    font-weight: 500;
}
.best-sellers-section .product-price {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.1rem;
}
.best-sellers-section .swiper-button-next,
.best-sellers-section .swiper-button-prev {
    color: #d4af37;
}
.best-sellers-section .swiper-pagination-bullet {
    background: #d4af37;
    opacity: 0.7;
}
.best-sellers-section .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }
.animate-on-scroll.delay-6 { transition-delay: 0.6s; }

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 40px;
}

.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.newsletter-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
}

.newsletter-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-email {
    flex: 1;
    padding: 18px 25px;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: white;
    color: #333;
}

.newsletter-email::placeholder {
    color: #999;
}

.newsletter-submit {
    padding: 18px 35px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.newsletter-submit:hover {
    background: linear-gradient(135deg, #e5c04a, #c9a526);
    transform: translateY(-2px);
}

.newsletter-privacy {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
    font-style: italic;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .banner-overlay {
        background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    }
    
    .category-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.9) 100%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}