/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #F4D03F;
    --secondary-color: #F7DC6F;
    --accent-color: #D4AC0D;
    --dark-gold: #B7950B;
    --lavender: #E8D5E8;
    --lavender-light: #F4E8F4;
    --lavender-dark: #D1B3D1;
    --purple-accent: #8E44AD;
    --text-dark: #1C1C1C;
    --text-light: #666;
    --background-light: #FEFEFE;
    --background-cream: #FDF6E3;
    --border-light: #E8E8E8;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
    --gradient-wave: linear-gradient(45deg, var(--primary-color), var(--lavender), var(--secondary-color), var(--lavender-light));
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-cream);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(244, 208, 63, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(247, 220, 111, 0.1) 0%, transparent 50%);
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="34" viewBox="0 0 20 34"><defs><linearGradient id="nailBase" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23F4D03F;stop-opacity:1" /><stop offset="30%" style="stop-color:%23F7DC6F;stop-opacity:1" /><stop offset="60%" style="stop-color:%23E8D5E8;stop-opacity:1" /><stop offset="100%" style="stop-color:%23F4E8F4;stop-opacity:1" /></linearGradient><linearGradient id="topShine" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23FFFFFF;stop-opacity:0.8" /><stop offset="100%" style="stop-color:%23FFFFFF;stop-opacity:0.0" /></linearGradient><radialGradient id="gem" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23FFFFFF;stop-opacity:1" /><stop offset="60%" style="stop-color:%238E44AD;stop-opacity:0.8" /><stop offset="100%" style="stop-color:%23D1B3D1;stop-opacity:0.5" /></radialGradient></defs><g transform="translate(10,3)"><ellipse cx="0" cy="28" rx="8" ry="2.5" fill="%23FDF6E3" opacity="0.5"/><path d="M-7,28 C-7.5,28 -8,27.5 -8,27 L-8,20 C-8,16 -7.5,12 -7,9 C-6.5,6 -5.5,4 -4,2.5 C-2.5,1 -1,0.5 0,0.5 C1,0.5 2.5,1 4,2.5 C5.5,4 6.5,6 7,9 C7.5,12 8,16 8,20 L8,27 C8,27.5 7.5,28 7,28 Z" fill="url(%23nailBase)" stroke="%23D1B3D1" stroke-width="0.8"/><ellipse cx="0" cy="2" rx="3" ry="1.5" fill="url(%23topShine)" opacity="0.6"/><ellipse cx="0" cy="23" rx="6" ry="4" fill="url(%23topShine)" opacity="0.3"/><circle cx="-2.5" cy="8" r="1.2" fill="url(%23gem)"/><circle cx="3" cy="12" r="1" fill="%23F4D03F" opacity="0.9"/><circle cx="-1.5" cy="16" r="1.1" fill="url(%23gem)"/><circle cx="2.5" cy="20" r="0.8" fill="%238E44AD" opacity="0.8"/><circle cx="0" cy="24" r="0.7" fill="%23FFFFFF" opacity="0.9"/><ellipse cx="0" cy="14" rx="2.5" ry="1.5" fill="%23E8D5E8" opacity="0.4"/></g></svg>') 10 3, auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Main Content Frame */
.main-frame {
    max-width: 1400px;
    margin: 20px auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid var(--border-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
.header-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--lavender), var(--secondary-color));
    background-size: 300% 300%;
    color: var(--text-dark);
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: bannerWave 5s ease infinite;
    position: relative;
    overflow: hidden;
}

.header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s ease infinite;
}

@keyframes bannerWave {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.navbar {
    background: var(--white);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand .logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 50%;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="42" viewBox="0 0 14 42"><defs><linearGradient id="hoverNail" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%238E44AD;stop-opacity:1" /><stop offset="50%" style="stop-color:%23F4D03F;stop-opacity:1" /><stop offset="100%" style="stop-color:%23F7DC6F;stop-opacity:1" /></linearGradient><radialGradient id="sparkle" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23FFFFFF;stop-opacity:1" /><stop offset="100%" style="stop-color:%23E8D5E8;stop-opacity:0.5" /></radialGradient></defs><g transform="translate(7,3)"><path d="M-3.5,34 Q-4,34 -4,32 L-4,22 Q-4,18 -3.5,14 Q-3,10 -2.5,8 Q-2,6 -1.5,4 Q-1,2 -0.5,1 Q0,0 0.5,1 Q1,2 1.5,4 Q2,6 2.5,8 Q3,10 3.5,14 Q4,18 4,22 L4,32 Q4,34 3.5,34 Z" fill="url(%23hoverNail)" stroke="%23D1B3D1" stroke-width="0.7"/><ellipse cx="0" cy="30" rx="3" ry="3.5" fill="url(%23sparkle)" opacity="0.6"/><circle cx="-1.5" cy="9" r="0.9" fill="%23FFFFFF"/><circle cx="1.8" cy="13" r="0.8" fill="%238E44AD"/><circle cx="0" cy="17" r="0.7" fill="%23FFFFFF"/><circle cx="-1" cy="21" r="0.6" fill="%23F4D03F"/><circle cx="1.5" cy="25" r="0.5" fill="%23FFFFFF"/><ellipse cx="0" cy="11" rx="1.8" ry="1" fill="%23E8D5E8" opacity="0.7"/><path d="M-2.5,7 Q0,5 2.5,7 Q1.5,9 0,9 Q-1.5,9 -2.5,7" fill="%23FFFFFF" opacity="0.8"/></g></svg>') 7 3, pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--background-cream), var(--lavender-light), var(--white));
    background-size: 400% 400%;
    padding: 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: heroWave 8s ease infinite;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(232, 213, 232, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 208, 63, 0.1) 0%, transparent 70%);
    animation: rotate 25s linear infinite reverse;
}

@keyframes heroWave {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.brand-name {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
        font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="42" viewBox="0 0 14 42"><defs><linearGradient id="hoverNail" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%238E44AD;stop-opacity:1" /><stop offset="50%" style="stop-color:%23F4D03F;stop-opacity:1" /><stop offset="100%" style="stop-color:%23F7DC6F;stop-opacity:1" /></linearGradient><radialGradient id="sparkle" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23FFFFFF;stop-opacity:1" /><stop offset="100%" style="stop-color:%23E8D5E8;stop-opacity:0.5" /></radialGradient></defs><g transform="translate(7,3)"><path d="M-3.5,34 Q-4,34 -4,32 L-4,22 Q-4,18 -3.5,14 Q-3,10 -2.5,8 Q-2,6 -1.5,4 Q-1,2 -0.5,1 Q0,0 0.5,1 Q1,2 1.5,4 Q2,6 2.5,8 Q3,10 3.5,14 Q4,18 4,22 L4,32 Q4,34 3.5,34 Z" fill="url(%23hoverNail)" stroke="%23D1B3D1" stroke-width="0.7"/><ellipse cx="0" cy="30" rx="3" ry="3.5" fill="url(%23sparkle)" opacity="0.6"/><circle cx="-1.5" cy="9" r="0.9" fill="%23FFFFFF"/><circle cx="1.8" cy="13" r="0.8" fill="%238E44AD"/><circle cx="0" cy="17" r="0.7" fill="%23FFFFFF"/><circle cx="-1" cy="21" r="0.6" fill="%23F4D03F"/><circle cx="1.5" cy="25" r="0.5" fill="%23FFFFFF"/><ellipse cx="0" cy="11" rx="1.8" ry="1" fill="%23E8D5E8" opacity="0.7"/><path d="M-2.5,7 Q0,5 2.5,7 Q1.5,9 0,9 Q-1.5,9 -2.5,7" fill="%23FFFFFF" opacity="0.8"/></g></svg>') 7 3, pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--lavender), var(--accent-color));
    background-size: 200% 200%;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    animation: gradientShift 4s ease infinite;
}

.btn-primary::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.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(244, 208, 63, 0.4);
    animation: waveEffect 0.6s ease;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes waveEffect {
    0% { transform: translateY(-2px) scale(1.02); }
    25% { transform: translateY(-2px) scale(1.02) rotateX(5deg); }
    50% { transform: translateY(-2px) scale(1.02) rotateY(5deg); }
    75% { transform: translateY(-2px) scale(1.02) rotateX(-5deg); }
    100% { transform: translateY(-2px) scale(1.02); }
}

.btn-secondary {
    background: transparent;
    color: var(--purple-accent);
    border: 2px solid var(--lavender);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--lavender), var(--lavender-light));
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    background: transparent;
    color: var(--purple-accent);
    border-color: var(--lavender-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 213, 232, 0.6);
}

.btn-white {
    background: var(--white);
    color: var(--text-dark);
}

.btn-white:hover {
    background: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--white);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* Featured Collection */
.featured-collection {
    padding: 100px 0;
    background: var(--white);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.collection-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
}

.collection-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-wave);
    background-size: 400% 400%;
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    animation: gradientWave 3s ease infinite;
    transition: opacity 0.3s ease;
}

.collection-item:hover::before {
    opacity: 1;
}

.collection-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(232, 213, 232, 0.3);
    animation: floatWave 2s ease infinite;
}

@keyframes gradientWave {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatWave {
    0%, 100% { transform: translateY(-8px) scale(1.02) rotate(0deg); }
    25% { transform: translateY(-10px) scale(1.02) rotate(0.5deg); }
    50% { transform: translateY(-6px) scale(1.02) rotate(0deg); }
    75% { transform: translateY(-10px) scale(1.02) rotate(-0.5deg); }
}

.collection-image {
    position: relative;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collection-item:hover .collection-image img {
    transform: scale(1.05);
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(142, 68, 173, 0.9), rgba(232, 213, 232, 0.95));
    color: var(--white);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-item:hover .collection-overlay {
    transform: translateY(0);
    animation: shimmerEffect 2s ease infinite;
}

@keyframes shimmerEffect {
    0% { background: linear-gradient(transparent, rgba(142, 68, 173, 0.9), rgba(232, 213, 232, 0.95)); }
    50% { background: linear-gradient(transparent, rgba(232, 213, 232, 0.9), rgba(142, 68, 173, 0.95)); }
    100% { background: linear-gradient(transparent, rgba(142, 68, 173, 0.9), rgba(232, 213, 232, 0.95)); }
}

.collection-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.collection-overlay p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Categories Section */
.categories {
    padding: 100px 0;
    background: var(--background-cream);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.category-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.category-content {
    padding: 30px;
}

.category-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.category-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.category-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: var(--dark-gold);
}

/* Custom CTA Section */
.custom-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Expansion Features */
.expansion-features {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: var(--background-cream);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.feature-icon {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95), 
        rgba(45, 45, 45, 0.95), 
        rgba(142, 68, 173, 0.85),
        rgba(26, 26, 26, 0.95)
    );
    background-size: 400% 400%;
    color: var(--white);
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
    animation: footerWave 8s ease infinite;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(232, 213, 232, 0.2);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--lavender), 
        var(--secondary-color), 
        var(--lavender-light), 
        var(--accent-color),
        var(--primary-color)
    );
    background-size: 400% 100%;
    animation: borderWave 4s ease infinite;
    box-shadow: 0 2px 15px rgba(232, 213, 232, 0.3);
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(232, 213, 232, 0.08) 0%, 
        rgba(244, 208, 63, 0.03) 30%,
        transparent 70%
    );
    animation: rotate 40s linear infinite;
}

@keyframes footerWave {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes borderWave {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--lavender-light), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.footer-section p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: var(--white);
    padding: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--lavender));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    color: var(--text-dark);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(232, 213, 232, 0.4);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid transparent;
    border-radius: 25px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--lavender);
    box-shadow: 0 0 0 3px rgba(232, 213, 232, 0.2);
}

.newsletter-form button {
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--lavender), var(--secondary-color));
    background-size: 200% 200%;
    color: var(--text-dark);
    font-weight: 600;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="38" viewBox="0 0 18 38"><defs><linearGradient id="glamNail" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%238E44AD;stop-opacity:1" /><stop offset="30%" style="stop-color:%23F4D03F;stop-opacity:1" /><stop offset="70%" style="stop-color:%23F7DC6F;stop-opacity:1" /><stop offset="100%" style="stop-color:%23E8D5E8;stop-opacity:1" /></linearGradient><radialGradient id="luxGem" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23FFFFFF;stop-opacity:1" /><stop offset="50%" style="stop-color:%238E44AD;stop-opacity:0.9" /><stop offset="100%" style="stop-color:%23D1B3D1;stop-opacity:0.7" /></radialGradient></defs><g transform="translate(9,3)"><path d="M-6.5,32 Q-7,32 -7,30.5 L-7,22 Q-7,18 -6.5,14 Q-6,10 -5.5,7 Q-5,4 -3.5,2 Q-2,0.5 0,0.5 Q2,0.5 3.5,2 Q5,4 5.5,7 Q6,10 6.5,14 Q7,18 7,22 L7,30.5 Q7,32 6.5,32 Z" fill="url(%23glamNail)" stroke="%23D1B3D1" stroke-width="0.8"/><ellipse cx="0" cy="28" rx="5.5" ry="3" fill="%23FFFFFF" opacity="0.4"/><circle cx="-2.5" cy="8" r="1.3" fill="url(%23luxGem)"/><circle cx="3" cy="12" r="1.1" fill="%23F4D03F" opacity="0.9"/><circle cx="-1.5" cy="16" r="1.2" fill="url(%23luxGem)"/><circle cx="2.5" cy="20" r="1" fill="%238E44AD" opacity="0.9"/><circle cx="0" cy="24" r="0.9" fill="%23FFFFFF" opacity="0.9"/><ellipse cx="0" cy="14" rx="3" ry="1.8" fill="%23E8D5E8" opacity="0.5"/></g></svg>') 9 3, pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: buttonGradient 4s ease infinite;
}

.newsletter-form 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.5s ease;
}

.newsletter-form button:hover::before {
    left: 100%;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 208, 63, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(232, 213, 232, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    background: linear-gradient(90deg, transparent, rgba(232, 213, 232, 0.05), transparent);
}

/* Popup Modal Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-modal {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7) translateY(50px);
    transition: all 0.3s ease;
    position: relative;
}

.popup-overlay.show .popup-modal {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-light);
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="38" viewBox="0 0 18 38"><defs><linearGradient id="glamNail" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%238E44AD;stop-opacity:1" /><stop offset="30%" style="stop-color:%23F4D03F;stop-opacity:1" /><stop offset="70%" style="stop-color:%23F7DC6F;stop-opacity:1" /><stop offset="100%" style="stop-color:%23E8D5E8;stop-opacity:1" /></linearGradient><radialGradient id="luxGem" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23FFFFFF;stop-opacity:1" /><stop offset="50%" style="stop-color:%238E44AD;stop-opacity:0.9" /><stop offset="100%" style="stop-color:%23D1B3D1;stop-opacity:0.7" /></radialGradient></defs><g transform="translate(9,3)"><path d="M-6.5,32 Q-7,32 -7,30.5 L-7,22 Q-7,18 -6.5,14 Q-6,10 -5.5,7 Q-5,4 -3.5,2 Q-2,0.5 0,0.5 Q2,0.5 3.5,2 Q5,4 5.5,7 Q6,10 6.5,14 Q7,18 7,22 L7,30.5 Q7,32 6.5,32 Z" fill="url(%23glamNail)" stroke="%23D1B3D1" stroke-width="0.8"/><ellipse cx="0" cy="28" rx="5.5" ry="3" fill="%23FFFFFF" opacity="0.4"/><circle cx="-2.5" cy="8" r="1.3" fill="url(%23luxGem)"/><circle cx="3" cy="12" r="1.1" fill="%23F4D03F" opacity="0.9"/><circle cx="-1.5" cy="16" r="1.2" fill="url(%23luxGem)"/><circle cx="2.5" cy="20" r="1" fill="%238E44AD" opacity="0.9"/><circle cx="0" cy="24" r="0.9" fill="%23FFFFFF" opacity="0.9"/><ellipse cx="0" cy="14" rx="3" ry="1.8" fill="%23E8D5E8" opacity="0.5"/></g></svg>') 9 3, pointer;
    z-index: 10001;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.popup-header {
    background: linear-gradient(135deg, var(--primary-color), var(--lavender), var(--secondary-color));
    background-size: 300% 300%;
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
    animation: popupWave 6s ease infinite;
}

@keyframes popupWave {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.popup-header::before {
    content: '✨';
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
}

.popup-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.popup-subtitle {
    font-size: 16px;
    color: var(--text-dark);
    opacity: 0.8;
}

.popup-content {
    padding: 30px;
    text-align: center;
}

.popup-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.5;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-input {
    padding: 15px 20px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

.popup-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 172, 13, 0.1);
}

.popup-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--dark-gold), var(--lavender-dark));
    background-size: 200% 200%;
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="38" viewBox="0 0 18 38"><defs><linearGradient id="glamNail" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%238E44AD;stop-opacity:1" /><stop offset="30%" style="stop-color:%23F4D03F;stop-opacity:1" /><stop offset="70%" style="stop-color:%23F7DC6F;stop-opacity:1" /><stop offset="100%" style="stop-color:%23E8D5E8;stop-opacity:1" /></linearGradient><radialGradient id="luxGem" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23FFFFFF;stop-opacity:1" /><stop offset="50%" style="stop-color:%238E44AD;stop-opacity:0.9" /><stop offset="100%" style="stop-color:%23D1B3D1;stop-opacity:0.7" /></radialGradient></defs><g transform="translate(9,3)"><path d="M-6.5,32 Q-7,32 -7,30.5 L-7,22 Q-7,18 -6.5,14 Q-6,10 -5.5,7 Q-5,4 -3.5,2 Q-2,0.5 0,0.5 Q2,0.5 3.5,2 Q5,4 5.5,7 Q6,10 6.5,14 Q7,18 7,22 L7,30.5 Q7,32 6.5,32 Z" fill="url(%23glamNail)" stroke="%23D1B3D1" stroke-width="0.8"/><ellipse cx="0" cy="28" rx="5.5" ry="3" fill="%23FFFFFF" opacity="0.4"/><circle cx="-2.5" cy="8" r="1.3" fill="url(%23luxGem)"/><circle cx="3" cy="12" r="1.1" fill="%23F4D03F" opacity="0.9"/><circle cx="-1.5" cy="16" r="1.2" fill="url(%23luxGem)"/><circle cx="2.5" cy="20" r="1" fill="%238E44AD" opacity="0.9"/><circle cx="0" cy="24" r="0.9" fill="%23FFFFFF" opacity="0.9"/><ellipse cx="0" cy="14" rx="3" ry="1.8" fill="%23E8D5E8" opacity="0.5"/></g></svg>') 9 3, pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    animation: buttonGradient 4s ease infinite;
}

.popup-btn::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;
}

.popup-btn:hover::before {
    left: 100%;
}

.popup-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(212, 172, 13, 0.4);
    animation: buttonWave 1s ease;
}

@keyframes buttonGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes buttonWave {
    0%, 100% { transform: translateY(-3px) scale(1.05); }
    25% { transform: translateY(-3px) scale(1.05) rotateZ(1deg); }
    50% { transform: translateY(-3px) scale(1.05) rotateZ(0deg); }
    75% { transform: translateY(-3px) scale(1.05) rotateZ(-1deg); }
}

.popup-disclaimer {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 15px;
    line-height: 1.4;
}

/* ================================
   SINGLE PAGE STYLING - WHOLESALE
   ================================ */

.single-page-wrapper {
    min-height: calc(100vh - 160px);
}

.page-header {
    background: linear-gradient(135deg, var(--lavender) 0%, var(--primary-color) 50%, var(--lavender-light) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V7.23C0,65.52,268.63,112.77,600,112.77S1200,65.52,1200,7.23V0Z" fill="rgba(255,255,255,0.1)"></path></svg>') repeat-x;
    background-size: 1200px 120px;
    animation: wave-animation 6s linear infinite;
}

.header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--white), var(--background-cream), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.page-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.9;
}

.decorative-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--purple-accent), var(--lavender-dark), var(--purple-accent));
    margin: 0 auto;
    border-radius: 2px;
    animation: shimmer 2s ease-in-out infinite alternate;
}

/* Content Frame Styling */
.content-frame {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 60px 50px;
    margin: -40px auto 40px;
    position: relative;
    z-index: 3;
    max-width: 1000px;
    border: 2px solid var(--lavender-light);
}

.content-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--lavender), var(--primary-color), var(--lavender-light), var(--secondary-color));
    border-radius: 22px;
    z-index: -1;
    animation: gradient-shift 4s ease-in-out infinite;
}

/* Wholesale Content Specific Styling */
.wholesale-content h1 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(45deg, var(--purple-accent), var(--lavender-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wholesale-content h2 {
    font-size: 2.2rem;
    color: var(--purple-accent);
    margin: 40px 0 25px;
    position: relative;
    padding-left: 20px;
}

.wholesale-content h3 {
    font-size: 1.6rem;
    color: var(--dark-gold);
    margin: 30px 0 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--lavender-light), var(--background-cream));
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.wholesale-content h3::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 208, 63, 0.1), transparent);
    transform: translateX(-100%);
    animation: shimmer-sweep 3s ease-in-out infinite;
}

.wholesale-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.wholesale-content ul, .wholesale-content ol {
    margin: 20px 0 20px 30px;
}

.wholesale-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 8px;
    position: relative;
}

.wholesale-content ul li {
    list-style: none;
    padding-left: 25px;
}

.wholesale-content ul li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
    animation: sparkle 2s ease-in-out infinite alternate;
}

/* Enhanced Pricing Tiers Styling */
.pricing-intro {
    background: linear-gradient(135deg, var(--lavender-light), var(--primary-color));
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 30px 0 40px;
    border: 2px solid var(--lavender);
    position: relative;
    overflow: hidden;
}

.pricing-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: intro-shimmer 4s ease-in-out infinite;
}

.pricing-tiers {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.tier-details {
    background: var(--white);
    padding: 25px;
    margin: 15px 0 30px;
    border-radius: 15px;
    border: 2px solid var(--lavender-light);
    box-shadow: var(--shadow-light);
    position: relative;
    transition: all 0.3s ease;
}

.tier-details:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--lavender);
}

.tier-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--lavender), var(--purple-accent));
    border-radius: 2px 2px 0 0;
}

.tier-details ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tier-details li {
    margin: 12px 0;
    padding-left: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.tier-details li::before {
    margin-right: 10px;
}

.tier-details em {
    display: block;
    margin-top: 20px;
    padding: 15px;
    background: var(--lavender-light);
    border-radius: 8px;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--purple-accent);
    border-left: 4px solid var(--primary-color);
}

/* Artisan Level - Yellow theme */
.pricing-tiers h3:nth-of-type(1) + .tier-details::before {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
}

/* Salon Professional - Lavender theme */
.pricing-tiers h3:nth-of-type(2) + .tier-details::before {
    background: linear-gradient(90deg, var(--lavender), var(--lavender-dark), var(--lavender));
}

/* Beauty Enterprise - Purple theme */
.pricing-tiers h3:nth-of-type(3) + .tier-details::before {
    background: linear-gradient(90deg, var(--purple-accent), var(--lavender-dark), var(--purple-accent));
}

@keyframes intro-shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Wholesale Products Grid */
.wholesale-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
    padding: 30px;
    background: var(--background-cream);
    border-radius: 15px;
    border: 2px solid var(--lavender-light);
}

.wholesale-product-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.wholesale-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--lavender), var(--purple-accent));
    border-radius: 15px 15px 0 0;
}

.wholesale-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--lavender);
}

.wholesale-product-card h4 {
    font-size: 1.3rem;
    color: var(--purple-accent);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.wholesale-product-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Shopify Buy Button Customization */
.wholesale-product-card [data-testid="product-wrapper"] {
    border: none !important;
    box-shadow: none !important;
}

.wholesale-product-card [data-testid="product-title"] {
    display: none !important; /* Hide duplicate title */
}

.wholesale-product-card [data-testid="product-price"] {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: var(--accent-color) !important;
    margin-bottom: 15px !important;
}

.wholesale-product-card button[data-testid="product-buy-button"] {
    width: 100% !important;
    background: linear-gradient(135deg, var(--primary-color), var(--lavender), var(--accent-color)) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 15px 30px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    color: var(--text-dark) !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.wholesale-product-card button[data-testid="product-buy-button"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.4) !important;
}

/* Wholesale Product Notice */
.wholesale-notice {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #f39c12;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wholesale-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: notice-shimmer 3s ease-in-out infinite;
}

@keyframes notice-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.wholesale-notice h4 {
    color: #d68910;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}

.wholesale-notice p {
    color: #856404;
    margin: 0;
    font-weight: 500;
    line-height: 1.6;
}

/* Enhanced Shopify Buy Button Styling */
.shopify-buy-section {
    margin: 20px 0;
    text-align: center;
}

/* Wholesale CTA Button Enhancements */
.wholesale-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.btn-wholesale-primary,
.btn-wholesale-secondary {
    display: inline-block;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

.btn-wholesale-primary {
    background: linear-gradient(135deg, var(--purple-accent), var(--lavender), var(--primary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.2);
}

.btn-wholesale-primary::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.5s ease;
}

.btn-wholesale-primary:hover::before {
    left: 100%;
}

.btn-wholesale-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(142, 68, 173, 0.3);
    background: linear-gradient(135deg, var(--primary-color), var(--lavender), var(--purple-accent));
}

.btn-wholesale-secondary {
    background: transparent;
    color: var(--purple-accent);
    border: 2px solid var(--purple-accent);
}

.btn-wholesale-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--purple-accent);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-wholesale-secondary:hover::before {
    width: 100%;
}

.btn-wholesale-secondary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(142, 68, 173, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wholesale-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-wholesale-primary,
    .btn-wholesale-secondary {
        width: 100%;
        max-width: 300px;
        margin-bottom: 15px;
    }
    
    .wholesale-products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px 15px;
    }
    
    .wholesale-notice {
        padding: 20px 15px;
        margin: 20px 10px;
    }
    
    .wholesale-product-card {
        padding: 20px;
    }
}

/* Enhanced Product Card Animations */
.wholesale-product-card {
    position: relative;
    animation: card-entrance 0.6s ease-out;
}

@keyframes card-entrance {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.wholesale-product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.wholesale-product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.wholesale-product-card:nth-child(3) {
    animation-delay: 0.3s;
}
