/* 3M Cosmetics Premium Static Site Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    /* Premium Purple & Gold Color Palette */
    --primary-purple: #6B46C1;
    --deep-purple: #553C9A;
    --light-purple: #8B5CF6;
    --purple-gradient: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 100%);
    
    --primary-gold: #D4AF37;
    --deep-gold: #B8860B;
    --light-gold: #F4E4BC;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
    
    --accent-gradient: linear-gradient(135deg, #6B46C1 0%, #D4AF37 100%);
    --luxury-gradient: linear-gradient(135deg, #553C9A 0%, #6B46C1 50%, #D4AF37 100%);
    
    --text-dark: #1A1A1A;
    --text-light: #6B7280;
    --bg-light: #FAFAFA;
    --bg-premium: #F8F6FF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 400;
    background: var(--bg-premium);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Premium Header Styles */
.site-header {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(107, 70, 193, 0.1);
    border-bottom: 1px solid rgba(107, 70, 193, 0.1);
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    padding: 10px 0 !important;
    transition: all 0.3s ease;
    height: 90px !important;
    box-sizing: border-box;
}

body .site-header {
    height: 90px !important;
    padding: 10px 0 !important;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo img {
    height: 70px !important;
    width: auto !important;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.site-header .logo img {
    height: 70px !important;
    width: auto !important;
}

.logo:hover img {
    transform: scale(1.3);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-navigation a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    padding: 8px 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 50%;
    background: var(--accent-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.main-navigation a:hover {
    color: var(--primary-purple);
    transform: translateY(-2px);
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Main Content */
.site-main {
    margin-top: 90px;
}

/* Premium Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--luxury-gradient);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(107, 70, 193, 0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    height: 100%;
    z-index: 3;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) saturate(1.1);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 4;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 3px;
    text-shadow: 0 6px 30px rgba(0,0,0,0.6);
    background: linear-gradient(110deg, #FFFFFF 0%, #F4E4BC 20%, #D4AF37 30%, #FFFFFF 50%, #F4E4BC 70%, #D4AF37 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    position: relative;
    line-height: 1.2;
    animation: textShine 15s ease-in-out infinite;
    font-feature-settings: "liga", "kern", "lnum";
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-variant-numeric: lining-nums;
}

.hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

.hero-text p {
    font-family: 'Libre Baskerville', 'Playfair Display', serif;
    font-size: 2.4rem;
    font-style: italic;
    font-weight: 400;
    color: var(--light-gold);
    text-shadow: 0 3px 15px rgba(0,0,0,0.5);
    letter-spacing: 1.5px;
    margin-top: 40px;
    opacity: 0.95;
    font-feature-settings: "liga", "kern";
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.3;
}

/* Premium Brand Section */
.brand-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-premium) 0%, #FFFFFF 100%);
    position: relative;
}

.brand-section::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23D4AF37" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%236B46C1" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.brand-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.brand-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 40px;
    letter-spacing: 2px;
    position: relative;
}

.brand-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.brand-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Premium Products Section */
.products-section {
    padding: 120px 0;
    background: var(--bg-light);
    position: relative;
}

.products-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 70px;
    color: var(--primary-purple);
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
}

.products-section h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.product-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(107, 70, 193, 0.08);
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--purple-gradient);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.product-item:hover::before {
    left: 0;
    opacity: 0.05;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(107, 70, 193, 0.15);
}

.product-item img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    background: linear-gradient(135deg, #FAFAFA 0%, var(--bg-premium) 100%);
    border-radius: 20px 20px 0 0;
    padding: 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.product-item:hover img {
    transform: scale(1.05);
}

.product-item h3 {
    padding: 25px 30px 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-purple);
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.product-item p {
    padding: 0 30px 30px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* Brand Section */
.brand-section {
    padding: 60px 0;
    background: white;
}

.brand-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 40px;
    color: #2c2c2c;
    font-weight: 600;
    letter-spacing: 1px;
}

.brand-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
}

/* Product Showcase Section */
.product-showcase {
    padding: 80px 0;
    background: #f8f9fa;
}

.product-showcase h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 60px;
    color: #2c2c2c;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
}

.product-showcase h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    border-radius: 2px;
}

.product-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-category {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.showcase-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c2c2c;
    text-align: center;
    padding: 25px 20px 20px;
    margin: 0;
    font-weight: 600;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.product-images {
    padding: 20px;
}

.product-main-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.product-main-image:hover {
    border-color: #d4af37;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.product-thumbnails img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    border-radius: 6px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-thumbnails img:hover {
    border-color: #d4af37;
    transform: scale(1.05);
}

.showcase-category p {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    line-height: 1.6;
    padding: 0 20px 25px;
    text-align: center;
    font-size: 0.95rem;
}

/* Premium About Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-premium) 0%, #FFFFFF 100%);
    position: relative;
}

.about-section::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23D4AF37" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%236B46C1" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.about-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: var(--primary-purple);
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(107, 70, 193, 0.1);
    border: 1px solid rgba(107, 70, 193, 0.05);
}

.about-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: center;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-content p strong {
    color: var(--primary-purple);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

/* About Page Specific Styles */
.about-content h3,
.about-text h3,
.mission-section h3,
.about-details h3 {
    color: var(--primary-purple);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 25px;
}

.about-header h2 {
    color: var(--primary-purple);
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* Contact Page Specific Styles */
.contact-info h2,
.contact-form h2 {
    color: var(--primary-purple);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.contact-item h3 {
    color: var(--primary-purple);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
}

/* Premium YouTube Video Section */
.video-section {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--bg-premium) 0%, #FFFFFF 50%, var(--bg-light) 100%);
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--purple-gradient);
    opacity: 0.02;
    z-index: 1;
}

.video-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--primary-purple);
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.video-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.video-intro {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 60px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.video-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(107, 70, 193, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(107, 70, 193, 0.08);
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(107, 70, 193, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 65%; /* Increased height for bigger videos */
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    transition: all 0.3s ease;
}

.video-item h3 {
    padding: 25px 30px 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary-purple);
    font-weight: 600;
    margin: 0;
}

.video-item p {
    padding: 0 30px 30px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Call to Action Section */
.cta-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.8) 0%, rgba(212, 175, 55, 0.7) 100%);
    z-index: 2;
}

.cta-content {
    position: relative;
    height: 100%;
    z-index: 3;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.cta-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 4;
}

.cta-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: white;
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.cta-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

.cta-button {
    display: inline-block;
    background: var(--accent-gradient);
    color: white;
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
    background: linear-gradient(45deg, #f4d03f, #d4af37);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: white;
}

.blog-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #2c2c2c;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
}

.blog-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    border-radius: 2px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-post {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.blog-post h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 500;
}

.blog-post p {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.read-more {
    color: #d4af37;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #f4d03f;
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: #d4af37;
    font-size: 1.4rem;
    font-weight: 500;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header {
        position: fixed !important;
        top: 0 !important;
        width: 100% !important;
        z-index: 1000 !important;
        height: 80px;
        padding: 15px 0;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(25px);
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
    
    .logo img {
        height: 50px !important;
    }
    
    .site-header .logo img {
        height: 50px !important;
    }
    
    /* Adjust main content margin for mobile header */
    .site-main {
        margin-top: 80px;
    }
    
    .logo:hover img {
        transform: scale(1.2);
    }
    
    .main-navigation ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-navigation a {
        font-size: 0.9rem;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
        letter-spacing: 2px;
        line-height: 1.1;
    }
    
    .hero-text h1::after {
        width: 180px;
        height: 2px;
        bottom: -12px;
    }
    
    .hero-text p {
        font-size: 1.6rem;
        margin-top: 30px;
    }
    
    .about-section {
        padding: 100px 0;
    }
    
    .about-section h2 {
        font-size: 2.8rem;
    }
    
    .about-content {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .about-content p {
        font-size: 1.1rem;
    }
    
    .cta-section {
        height: 450px;
    }
    
    .cta-text h2 {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }
    
    .cta-text p {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 18px 40px;
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .products-section h2,
    .brand-section h2 {
        font-size: 2.5rem;
    }
    
    .brand-content h2 {
        font-size: 2.5rem;
    }
    
    .product-showcase h2 {
        font-size: 2.5rem;
    }
    
    .product-showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-text h2 {
        font-size: 2.5rem;
    }
    
    .cta-text p {
        font-size: 1.1rem;
    }
    
    .blog-section h2 {
        font-size: 2.5rem;
    }
    
    .video-section h2 {
        font-size: 2.5rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-intro {
        font-size: 1.1rem;
        margin-bottom: 50px;
    }
    
    .video-item h3 {
        font-size: 1.4rem;
        padding: 20px 25px 10px;
    }
    
    .video-item p {
        padding: 0 25px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.8rem;
        letter-spacing: 1px;
        line-height: 1.1;
    }
    
    .hero-text h1::after {
        width: 140px;
        height: 2px;
        bottom: -10px;
    }
    
    .hero-text p {
        font-size: 1.3rem;
        margin-top: 25px;
    }
    
    .about-section {
        padding: 80px 0;
    }
    
    .about-section h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .cta-section {
        height: 400px;
    }
    
    .cta-text h2 {
        font-size: 2.2rem;
        letter-spacing: 0.5px;
    }
    
    .cta-text p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 16px 35px;
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .products-section h2,
    .brand-section h2,
    .blog-section h2,
    .product-showcase h2 {
        font-size: 2rem;
    }
    
    .showcase-category h3 {
        font-size: 1.5rem;
    }
    
    .product-main-image {
        height: 200px;
    }
    
    .product-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .video-section h2 {
        font-size: 2rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .video-intro {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .video-item {
        border-radius: 15px;
    }
    
    .video-wrapper {
        border-radius: 15px 15px 0 0;
    }
    
    .video-item h3 {
        font-size: 1.3rem;
        padding: 18px 20px 8px;
    }
    
    .video-item p {
        padding: 0 20px 20px;
        font-size: 0.85rem;
    }
}

/* Form Message Styles */
.form-message {
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.4;
    animation: slideIn 0.3s ease-out;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Field Error Styles */
.field-error {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    font-family: 'Montserrat', sans-serif;
    display: block;
}

input.error, textarea.error, select.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

input.error:focus, textarea.error:focus, select.error:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

/* Shine Animation for Hero Text */
@keyframes textShine {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-out;
}

.popup-content {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease-out;
}

.popup-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.popup-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 600;
}

.popup-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.popup-close {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #2c2c2c;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Error state popup styles */
.popup-content.error {
    border-left: 5px solid #dc3545;
}

.popup-content.error .popup-icon {
    color: #dc3545;
}

.popup-content.error h3 {
    color: #dc3545;
}

.popup-content.error .popup-close {
    background: linear-gradient(45deg, #dc3545, #e74c3c);
    color: white;
}

.popup-content.error .popup-close:hover {
    background: linear-gradient(45deg, #c82333, #dc3545);
}

.popup-content.success {
    border-left: 5px solid #28a745;
}

.popup-content.success .popup-icon {
    color: #28a745;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Amazon Store Banner */
.amazon-store-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--deep-purple) 50%, var(--primary-gold) 100%);
    position: relative;
    overflow: hidden;
}

.amazon-store-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(107, 70, 193, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.amazon-banner {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 30px 80px rgba(107, 70, 193, 0.3);
    backdrop-filter: blur(30px);
    border: 3px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.amazon-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--accent-gradient);
    border-radius: 30px 30px 0 0;
}

.amazon-banner:hover {
    transform: translateY(-12px);
    box-shadow: 0 45px 100px rgba(107, 70, 193, 0.4);
}

.amazon-decorative-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(107, 70, 193, 0.1));
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.float-2 {
    width: 60px;
    height: 60px;
    bottom: 25%;
    left: 10%;
    animation-delay: 2s;
}

.float-3 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.amazon-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.amazon-left {
    display: flex;
    align-items: center;
    gap: 35px;
}

.shop-icon {
    width: 110px;
    height: 110px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 50px rgba(107, 70, 193, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.shop-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(45deg);
    transition: transform 0.8s ease;
}

.shop-icon:hover::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.shop-icon:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 25px 60px rgba(107, 70, 193, 0.6);
}

.icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.amazon-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(107, 70, 193, 0.3);
}

.premium-badge {
    background: linear-gradient(45deg, #FF6B35, #FF8E53);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.amazon-right {
    flex: 1;
}

.amazon-headline {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-purple);
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.amazon-cta {
    font-size: 18px;
    color: var(--text-light);
    margin: 0 0 35px 0;
    line-height: 1.7;
    font-style: italic;
}

.amazon-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--accent-gradient);
    color: white;
    text-decoration: none;
    padding: 22px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.4);
    border: 3px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.amazon-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.amazon-button:hover::before {
    left: 100%;
}

.amazon-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 25px 60px rgba(107, 70, 193, 0.6);
    color: white;
    text-decoration: none;
}

.amazon-button svg {
    transition: transform 0.3s ease;
    z-index: 2;
    position: relative;
}

.amazon-button:hover svg {
    transform: translateX(8px) scale(1.2);
}

@media (max-width: 768px) {
    .amazon-store-section {
        padding: 80px 0;
    }

    .amazon-banner {
        padding: 40px 25px;
        margin: 0 15px;
        border-radius: 25px;
    }

    .amazon-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .amazon-left {
        flex-direction: column;
        gap: 25px;
    }

    .amazon-text h3 {
        font-size: 32px;
    }

    .amazon-headline {
        font-size: 24px;
    }

    .shop-icon {
        width: 90px;
        height: 90px;
    }

    .amazon-cta {
        font-size: 16px;
    }

    .float-circle {
        display: none;
    }
}