/* Homepage Glamorous Design - Cosmetics-Inspired UI */

/* Hero Section - Full Height with Elegant Overlay */
.hero-glam {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f7f5 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-glam::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(212,165,116,0.08)"/></svg>');
    background-size: 400px;
    opacity: 0.4;
}

.hero-glam-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-glam-content {
    max-width: 600px;
}

.hero-glam-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border: 1.5px solid var(--secondary-color);
    border-radius: 2px;
}

.hero-glam-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-glam-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-glam-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-glam-primary {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn-glam-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 26, 26, 0.15);
}

.btn-glam-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid var(--border-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-glam-secondary:hover {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
}

.hero-glam-image {
    position: relative;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-glam-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Featured Categories - Clean Grid */
.featured-categories-glam {
    padding: 6rem 0;
    background: white;
}

.section-header-glam {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag-glam {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.section-title-glam {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle-glam {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.categories-grid-glam {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card-glam {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    text-decoration: none;
    display: block;
    transition: all 0.4s ease;
}

.category-card-glam:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-card-glam img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card-glam:hover img {
    transform: scale(1.05);
}

.category-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
    transition: all 0.4s ease;
}

.category-card-glam:hover .category-card-overlay {
    padding-bottom: 3rem;
}

.category-card-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-card-link {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.category-card-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.category-card-glam:hover .category-card-link::after {
    transform: translateX(4px);
}

/* Best Sellers - Modern Product Grid */
.bestsellers-glam {
    padding: 6rem 0;
    background: #fafafa;
}

.products-grid-glam {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card-glam {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.product-card-glam:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.product-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--background-cream);
}

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

.product-card-glam:hover .product-card-image img {
    transform: scale(1.08);
}

.product-badge-new {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    border-radius: 2px;
}

.product-quick-view {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    background: white;
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.product-card-glam:hover .product-quick-view {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-card-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-card-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    flex: 1;
}

.product-card-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.product-stars-glam {
    color: #f59e0b;
    letter-spacing: 2px;
}

.product-review-count {
    color: var(--text-light);
}

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

.product-price-glam {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.btn-add-cart-glam {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.65rem 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-add-cart-glam:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 26, 26, 0.2);
}

/* Benefits Section */
.benefits-glam {
    padding: 6rem 0;
    background: white;
}

.benefits-grid-glam {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.benefit-item-glam {
    text-align: center;
}

.benefit-icon-glam {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--background-cream) 0%, var(--background-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.benefit-title-glam {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.benefit-desc-glam {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* CTA Banner */
.cta-banner-glam {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner-glam::before,
.cta-banner-glam::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-banner-glam::before {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.cta-banner-glam::after {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -75px;
}

.cta-content-glam {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.cta-title-glam {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle-glam {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-form-glam {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.cta-input-glam {
    flex: 1;
    padding: 1.25rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    border-radius: 2px;
    backdrop-filter: blur(10px);
}

.cta-input-glam::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.cta-button-glam {
    padding: 1.25rem 2.5rem;
    background: white;
    color: var(--primary-color);
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button-glam:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-glam-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-glam-image {
        height: 400px;
    }

    .products-grid-glam {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-glam {
        min-height: auto;
        padding: 4rem 0;
    }

    .hero-glam-title {
        font-size: 2.5rem;
    }

    .categories-grid-glam {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .products-grid-glam {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }

    .cta-form-glam {
        flex-direction: column;
    }

    .benefits-grid-glam {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
