/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #E91E63;
    --dark-pink: #C2185B;
    --light-pink: #F8E1EA;
    --accent-pink: #FF4081;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --bg-light: #FAFAFA;
    --bg-section: #FFFFFF;
    --border-color: #E0E0E0;
    --chicago-blue: #0B5394;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-light);
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.hero {
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,26,0.75) 0%, rgba(26,26,26,0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 24px;
    width: 100%;
}

.brand-banner {
    margin-bottom: 24px;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    text-transform: none;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    line-height: 1.1;
}

.brand-name {
    color: var(--accent-pink);
    display: inline;
}

.brand-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-tagline {
    background: rgba(255,255,255,0.95);
    color: var(--text-dark);
    padding: 16px 32px;
    border-radius: 4px;
    display: inline-block;
    margin: 32px 0 24px;
    font-size: 1.15rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent-pink);
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,0.95);
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0.3px;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--accent-pink);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-pink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.95);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    padding: 0;
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-pink);
}

.section-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-top: 16px;
}

/* Products Section */
.products-section {
    padding: 100px 24px;
    background: var(--bg-section);
}

.product-category {
    margin-bottom: 80px;
}

.product-category:last-child {
    margin-bottom: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.product-item {
    background: var(--white);
    padding: 0;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.product-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
    padding: 16px;
    width: 100%;
    background: var(--white);
}

.product-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-pink);
}

.product-item:hover .product-image {
    transform: scale(1.05);
}

.product-item:hover .product-name {
    color: var(--accent-pink);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 24px;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.benefit-card {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--accent-pink);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 1.5rem;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--accent-pink);
    color: var(--white);
    border-radius: 4px;
    font-weight: 700;
}

.benefit-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Ordering Section */
.ordering-section {
    padding: 100px 24px;
    background: var(--bg-section);
}

.ordering-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.ordering-info {
    padding: 0;
}

.ordering-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.contact-info {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.email-highlight {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.email-icon {
    font-size: 1.5rem;
    color: var(--accent-pink);
}

.email-link {
    font-size: 1.25rem;
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.email-link:hover {
    color: var(--primary-pink);
    text-decoration: underline;
}

.contact-instruction {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-top: 8px;
}

/* Form Styles */
.order-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.order-form-container h3 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 32px;
    text-align: left;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.wholesale-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 3px rgba(255,64,129,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Phone Input with Country Code */
.phone-input-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.country-code-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    white-space: nowrap;
}

.country-code-selector .flag {
    font-size: 1.2rem;
}

.country-code-selector .country-code {
    font-weight: 600;
    color: var(--text-dark);
}

.phone-input-group input {
    flex: 1;
}

/* Radio Button Groups */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    border: 1px solid transparent;
}

.radio-label:hover {
    background-color: var(--bg-light);
    border-color: var(--border-color);
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--accent-pink);
    flex-shrink: 0;
}

.radio-label span {
    color: var(--text-dark);
    font-weight: 500;
}

.btn-submit {
    margin-top: 8px;
    width: 100%;
    padding: 16px;
    font-size: 1rem;
}

.form-success {
    background: #E8F5E9;
    color: #2E7D32;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
    border: 1px solid #C8E6C9;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 48px 24px;
    text-align: center;
}

.footer-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.footer-location {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.9);
}

.footer-contact {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

.footer-contact a {
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 600;
}

.footer-contact a:hover {
    color: var(--light-pink);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 60px 20px;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(26,26,26,0.8) 0%, rgba(26,26,26,0.7) 100%);
    }
    
    .brand-title {
        font-size: 2.5rem;
    }
    
    .brand-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
        padding: 12px 24px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }
    
    .product-image {
        height: 140px;
    }
    
    .product-name {
        font-size: 0.9rem;
        padding: 12px;
    }
    
    .ordering-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        max-width: none;
    }
    
    .products-section,
    .benefits-section,
    .ordering-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 60vh;
    }
    
    .hero-content {
        padding: 40px 16px;
    }
    
    .brand-title {
        font-size: 2rem;
    }
    
    .order-form-container {
        padding: 24px;
    }
    
    .products-section,
    .benefits-section,
    .ordering-section {
        padding: 40px 16px;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
    }
    
    .product-image {
        height: 120px;
    }
    
    .product-name {
        font-size: 0.85rem;
        padding: 10px;
    }
    
    .product-item {
        padding: 0;
    }
    
    .phone-input-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .country-code-selector {
        width: 100%;
        justify-content: center;
    }
    
    .radio-group {
        gap: 10px;
    }
    
    .radio-label {
        padding: 10px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-item,
.benefit-card {
    animation: fadeIn 0.6s ease-out;
}
