/* Wholesalecollec - Cosmic Fitness Dance Experience
   Main Stylesheet */

/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --wholesalecollec-black: #0E0E0E;
    --wholesalecollec-gray: #1B1B1D;
    --wholesalecollec-purple: #8E44AD;
    --wholesalecollec-pink: #E84393;
    --wholesalecollec-green: #2ECC71;
    --wholesalecollec-white: #FFFFFF;
    --wholesalecollec-light-gray: #2A2A2E;
    --wholesalecollec-dark-purple: #6C3483;
    --wholesalecollec-dark-pink: #B83B78;
    --wholesalecollec-dark-green: #27AE60;
    --wholesalecollec-text: #F0F0F0;
    --wholesalecollec-text-secondary: #BBBBBB;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 5rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 9999px;

    /* Shadow */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
    --shadow-cosmic: 0 0 30px rgba(142, 68, 173, 0.3);
    --shadow-neon: 0 0 15px rgba(232, 67, 147, 0.5);
    --shadow-energy: 0 0 20px rgba(46, 204, 113, 0.4);

    /* Typography */
    --font-primary: 'Syncopate', sans-serif;
    --font-secondary: 'Quicksand', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.8s ease;

    /* Z-index */
    --z-negative: -1;
    --z-normal: 1;
    --z-sticky: 100;
    --z-dropdown: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-popup: 500;
}

/* ===== Reset & Base Styles ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--wholesalecollec-purple) var(--wholesalecollec-black);
}

body {
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--wholesalecollec-text);
    background-color: var(--wholesalecollec-black);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-md);
    letter-spacing: 0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--wholesalecollec-purple);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

/* ===== Utility Classes ===== */
.wholesalecollec-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.wholesalecollec-section {
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.wholesalecollec-section-dark {
    background-color: var(--wholesalecollec-gray);
}

.wholesalecollec-section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.wholesalecollec-section-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--wholesalecollec-purple), var(--wholesalecollec-pink));
    color: var(--wholesalecollec-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-neon);
}

.wholesalecollec-section-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    background: linear-gradient(90deg, var(--wholesalecollec-purple), var(--wholesalecollec-pink), var(--wholesalecollec-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.wholesalecollec-section-subtitle {
    font-size: 1.1rem;
    color: var(--wholesalecollec-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Cookie Consent ===== */
.wholesalecollec-cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--wholesalecollec-gray);
    padding: var(--space-md);
    z-index: var(--z-popup);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    transition: bottom var(--transition-medium);
}

.wholesalecollec-cookie-consent.active {
    bottom: 0;
}

.wholesalecollec-cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.wholesalecollec-cookie-content p {
    flex: 1;
    min-width: 250px;
}

/* ===== Header & Navigation ===== */
.wholesalecollec-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-md) 0;
    z-index: var(--z-sticky);
    transition: transform var(--transition-medium), background-color var(--transition-medium);
}

.terms-cont h3, .terms-cont h2 {
    margin-top: 10px;
}

.wholesalecollec-header.scrolled {
    position: fixed;
    background-color: rgba(14, 14, 14, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: var(--space-sm) 0;
}

.wholesalecollec-header.hidden {
    transform: translateY(-100%);
}

.wholesalecollec-header .wholesalecollec-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wholesalecollec-logo {
    z-index: var(--z-sticky);
}

.wholesalecollec-logo-text {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding: var(--space-xs) 0;
    color: var(--wholesalecollec-white);
}

.wholesalecollec-logo-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--wholesalecollec-purple), var(--wholesalecollec-pink));
    border-radius: var(--radius-sm);
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.wholesalecollec-logo-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--wholesalecollec-green), var(--wholesalecollec-purple));
    border-radius: var(--radius-sm);
    transform: scaleX(0.6);
    transform-origin: right;
    transition: transform var(--transition-medium);
}

.wholesalecollec-logo:hover .wholesalecollec-logo-text::before {
    transform: scaleX(1);
}

.wholesalecollec-logo:hover .wholesalecollec-logo-text::after {
    transform: scaleX(1);
}

.wholesalecollec-logo-highlight {
    background: linear-gradient(45deg, var(--wholesalecollec-purple), var(--wholesalecollec-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.wholesalecollec-nav {
    display: flex;
    align-items: center;
}

.wholesalecollec-nav-list {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.wholesalecollec-nav-list a {
    position: relative;
    padding: var(--space-xs);
    font-weight: 500;
}

.wholesalecollec-nav-list a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--wholesalecollec-purple), var(--wholesalecollec-pink));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
}

.wholesalecollec-nav-list a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.wholesalecollec-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
}

.wholesalecollec-mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--wholesalecollec-white);
    border-radius: var(--radius-pill);
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.wholesalecollec-mobile-menu-toggle.active span:first-child {
    transform: translateY(9px) rotate(45deg);
}

.wholesalecollec-mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.wholesalecollec-mobile-menu-toggle.active span:last-child {
    transform: translateY(-9px) rotate(-45deg);
}

/* ===== Buttons ===== */
.wholesalecollec-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: var(--z-normal);
}

.wholesalecollec-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transform: translateY(100%);
    transition: transform var(--transition-fast);
    z-index: -1;
}

.wholesalecollec-btn:hover::before {
    transform: translateY(0);
}

.wholesalecollec-btn i {
    margin-left: var(--space-sm);
}

.wholesalecollec-btn-primary {
    background: linear-gradient(45deg, var(--wholesalecollec-purple), var(--wholesalecollec-pink));
    color: var(--wholesalecollec-white);
    box-shadow: var(--shadow-neon);
}

.wholesalecollec-btn-primary:hover {
    box-shadow: 0 5px 20px rgba(232, 67, 147, 0.4);
    transform: translateY(-2px);
    color: var(--wholesalecollec-white);
}

.wholesalecollec-btn-outline {
    border: 2px solid var(--wholesalecollec-purple);
    color: var(--wholesalecollec-white);
    box-shadow: var(--shadow-sm);
}

.wholesalecollec-btn-outline:hover {
    background-color: rgba(142, 68, 173, 0.1);
    box-shadow: var(--shadow-cosmic);
    color: var(--wholesalecollec-white);
}

.wholesalecollec-btn-text {
    padding: var(--space-xs) 0;
    color: var(--wholesalecollec-purple);
    position: relative;
    display: inline-flex;
    align-items: center;
}

.wholesalecollec-btn-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--wholesalecollec-purple), var(--wholesalecollec-pink));
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform var(--transition-fast);
}

.wholesalecollec-btn-text:hover {
    color: var(--wholesalecollec-pink);
}

.wholesalecollec-btn-text:hover::after {
    transform: scaleX(1);
}

.wholesalecollec-btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.1rem;
}

.wholesalecollec-btn-block {
    display: flex;
    width: 100%;
}

/* ===== Hero Section ===== */
.wholesalecollec-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--wholesalecollec-black);
    overflow: hidden;
    z-index: var(--z-normal);
}

.wholesalecollec-particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-negative);
}

.wholesalecollec-hero-content {
    text-align: center;
    max-width: 800px;
    padding: var(--space-lg);
    position: relative;
    z-index: var(--z-normal);
}

.wholesalecollec-hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
    background: linear-gradient(90deg, var(--wholesalecollec-purple), var(--wholesalecollec-pink), var(--wholesalecollec-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    padding: 0 var(--space-md);
    animation: titleGlow 3s infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 10px rgba(142, 68, 173, 0.3);
    }

    50% {
        text-shadow: 0 0 20px rgba(232, 67, 147, 0.4);
    }

    100% {
        text-shadow: 0 0 15px rgba(46, 204, 113, 0.3);
    }
}

.wholesalecollec-hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: var(--space-xl);
    color: var(--wholesalecollec-text-secondary);
    position: relative;
}

.wholesalecollec-hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.wholesalecollec-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-negative);
    pointer-events: none;
}

.wholesalecollec-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: floatAnimation 15s infinite ease-in-out;
}

.wholesalecollec-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--wholesalecollec-purple);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

select option {
    background-color: #0e0e0e !important;
}

.wholesalecollec-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--wholesalecollec-pink);
    bottom: -50px;
    right: -50px;
    animation-delay: 5s;
}

.wholesalecollec-shape-3 {
    width: 350px;
    height: 350px;
    background: var(--wholesalecollec-green);
    bottom: 20%;
    left: 10%;
    animation-delay: 2.5s;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-30px) translateX(20px);
    }

    50% {
        transform: translateY(0) translateX(40px);
    }

    75% {
        transform: translateY(30px) translateX(20px);
    }
}

/* ===== Cards ===== */
.wholesalecollec-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.wholesalecollec-card {
    background-color: rgba(27, 27, 29, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: var(--z-normal);
}

.wholesalecollec-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(142, 68, 173, 0.05), rgba(232, 67, 147, 0.05));
    z-index: -1;
    transition: all var(--transition-medium);
    opacity: 0;
}

.wholesalecollec-card-hover:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-cosmic);
}

.wholesalecollec-card-hover:hover::before {
    opacity: 1;
}

.wholesalecollec-card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
    color: var(--wholesalecollec-purple);
    position: relative;
    display: inline-block;
}

.wholesalecollec-card-icon::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.2) 0%, rgba(142, 68, 173, 0) 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.7;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.7;
    }
}

.wholesalecollec-card-title {
    font-size: 1.4rem;
    margin-bottom: var(--space-md);
    color: var(--wholesalecollec-white);
}

.wholesalecollec-card-text {
    color: var(--wholesalecollec-text-secondary);
    margin-bottom: var(--space-lg);
}

.wholesalecollec-cta {
    text-align: center;
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.1), rgba(232, 67, 147, 0.1));
    border-radius: var(--radius-lg);
    margin-top: var(--space-lg);
}

.wholesalecollec-cta p {
    margin-bottom: var(--space-md);
}

/* ===== Free Session Section ===== */
.wholesalecollec-free-session-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.wholesalecollec-free-session-info h3 {
    font-size: 1.8rem;
    margin-bottom: var(--space-lg);
    color: var(--wholesalecollec-white);
}

.wholesalecollec-list {
    margin: var(--space-lg) 0;
}

.wholesalecollec-list li {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
}

.wholesalecollec-list li i {
    color: var(--wholesalecollec-green);
    margin-right: var(--space-md);
    font-size: 1.2rem;
}

.wholesalecollec-note {
    font-size: 0.9rem;
    color: var(--wholesalecollec-text-secondary);
    font-style: italic;
}

.wholesalecollec-free-session-form {
    background-color: rgba(14, 14, 14, 0.6);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-cosmic);
    position: relative;
    overflow: hidden;
}

.wholesalecollec-free-session-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wholesalecollec-purple), var(--wholesalecollec-pink), var(--wholesalecollec-green));
    z-index: 1;
}

/* ===== Forms ===== */
.wholesalecollec-form-group {
    margin-bottom: var(--space-lg);
}

label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 500;
    color: var(--wholesalecollec-white);
}

input, select, textarea {
    width: 100%;
    padding: var(--space-md);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--wholesalecollec-white);
    transition: all var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--wholesalecollec-purple);
    box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.2);
    background-color: rgba(255, 255, 255, 0.07);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.wholesalecollec-checkbox-group {
    display: flex;
    align-items: flex-start;
}

.wholesalecollec-checkbox-group input {
    width: auto;
    margin-right: var(--space-sm);
    margin-top: 0.25rem;
}

.wholesalecollec-checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== Online Classes ===== */
.wholesalecollec-tab-container {
    position: relative;
}

.wholesalecollec-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.wholesalecollec-tab-button {
    padding: var(--space-sm) var(--space-lg);
    background-color: transparent;
    border: none;
    color: var(--wholesalecollec-text-secondary);
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: all var(--transition-fast);
    position: relative;
}

.wholesalecollec-tab-button::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--wholesalecollec-purple), var(--wholesalecollec-pink));
    border-radius: var(--radius-pill);
    transition: transform var(--transition-fast);
}

.wholesalecollec-tab-button.active {
    color: var(--wholesalecollec-white);
    background-color: rgba(255, 255, 255, 0.05);
}

.wholesalecollec-tab-button.active::after {
    transform: translateX(-50%) scaleX(1);
}

.wholesalecollec-tab-panel {
    display: none;
}

.wholesalecollec-tab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wholesalecollec-online-class {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xl);
    align-items: center;
}

.wholesalecollec-online-class-image {
    height: 300px;
    background: linear-gradient(135deg, var(--wholesalecollec-purple), var(--wholesalecollec-dark-purple));
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-cosmic);
}

.wholesalecollec-image-recorded {
    background: linear-gradient(135deg, var(--wholesalecollec-pink), var(--wholesalecollec-dark-pink));
    box-shadow: var(--shadow-neon);
}

.wholesalecollec-image-personal {
    background: linear-gradient(135deg, var(--wholesalecollec-green), var(--wholesalecollec-dark-green));
    box-shadow: var(--shadow-energy);
}

.wholesalecollec-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background-color: rgba(14, 14, 14, 0.8);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--wholesalecollec-white);
    backdrop-filter: blur(5px);
}

.wholesalecollec-online-class-info h3 {
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
    color: var(--wholesalecollec-white);
}

.wholesalecollec-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.wholesalecollec-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.wholesalecollec-feature i {
    color: var(--wholesalecollec-purple);
    font-size: 1.2rem;
}

/* ===== Retreats Section ===== */
.wholesalecollec-retreats-slider {
    position: relative;
    padding: 0 var(--space-md);
    margin-bottom: var(--space-lg);
}

.wholesalecollec-retreats-track {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--space-md) 0;
}

.wholesalecollec-retreats-track::-webkit-scrollbar {
    display: none;
}

.wholesalecollec-retreat-card {
    min-width: 300px;
    flex: 1;
    background-color: rgba(14, 14, 14, 0.6);
    border-radius: var(--radius-lg);
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium);
}

.wholesalecollec-retreat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-cosmic);
}

.wholesalecollec-retreat-image {
    height: 200px;
    background: linear-gradient(135deg, var(--wholesalecollec-purple), var(--wholesalecollec-pink));
    position: relative;
}

.wholesalecollec-retreat-image-2 {
    background: linear-gradient(135deg, var(--wholesalecollec-green), var(--wholesalecollec-purple));
}

.wholesalecollec-retreat-image-3 {
    background: linear-gradient(135deg, var(--wholesalecollec-pink), var(--wholesalecollec-green));
}

.wholesalecollec-retreat-date {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background-color: rgba(14, 14, 14, 0.8);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70px;
    backdrop-filter: blur(5px);
}

.wholesalecollec-month {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--wholesalecollec-purple);
    text-transform: uppercase;
}

.wholesalecollec-day {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--wholesalecollec-white);
}

.wholesalecollec-year {
    font-size: 0.8rem;
    color: var(--wholesalecollec-text-secondary);
}

.wholesalecollec-retreat-content {
    padding: var(--space-lg);
}

.wholesalecollec-retreat-content h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    color: var(--wholesalecollec-white);
}

.wholesalecollec-retreat-details {
    margin: var(--space-md) 0;
}

.wholesalecollec-retreat-detail {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
}

.wholesalecollec-retreat-detail i {
    color: var(--wholesalecollec-purple);
}

.wholesalecollec-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.wholesalecollec-slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--wholesalecollec-white);
    transition: all var(--transition-fast);
}

.wholesalecollec-slider-arrow:hover {
    background-color: var(--wholesalecollec-purple);
    transform: scale(1.1);
}

.wholesalecollec-slider-dots {
    display: flex;
    gap: var(--space-sm);
}

.wholesalecollec-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.wholesalecollec-dot.active {
    background-color: var(--wholesalecollec-purple);
    transform: scale(1.2);
}

/* ===== Contact Section ===== */
.wholesalecollec-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.wholesalecollec-contact-item {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.wholesalecollec-contact-icon {
    font-size: 1.8rem;
    color: var(--wholesalecollec-purple);
    min-width: 50px;
    height: 50px;
    background-color: rgba(142, 68, 173, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wholesalecollec-contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
    color: var(--wholesalecollec-white);
}

.wholesalecollec-contact-form-container {
    position: relative;
}

.wholesalecollec-contact-form {
    background-color: rgba(27, 27, 29, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.wholesalecollec-map-container {
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ===== Footer ===== */
.wholesalecollec-footer {
    background-color: var(--wholesalecollec-gray);
    padding: var(--space-xl) 0 var(--space-lg);
}

.wholesalecollec-footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.wholesalecollec-footer-logo {
    margin-bottom: var(--space-lg);
}

.wholesalecollec-footer-logo p {
    margin-top: var(--space-sm);
    color: var(--wholesalecollec-text-secondary);
}

.wholesalecollec-footer-links {
    display: flex;
    gap: var(--space-lg);
    justify-content: space-around;
}

.wholesalecollec-footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    color: var(--wholesalecollec-white);
}

.wholesalecollec-footer-column ul li {
    margin-bottom: var(--space-sm);
}

.wholesalecollec-footer-column ul li a {
    color: var(--wholesalecollec-text-secondary);
    transition: color var(--transition-fast);
}

.wholesalecollec-footer-column ul li a:hover {
    color: var(--wholesalecollec-purple);
}

.wholesalecollec-social-links {
    display: flex;
    gap: var(--space-md);
}

.wholesalecollec-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--wholesalecollec-white);
    transition: all var(--transition-fast);
}

.wholesalecollec-social-link:hover {
    background-color: var(--wholesalecollec-purple);
    transform: scale(1.1);
}

.wholesalecollec-footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wholesalecollec-footer-bottom p {
    color: var(--wholesalecollec-text-secondary);
    font-size: 0.9rem;
}

/* ===== Responsive Styles ===== */
@media (max-width: 1024px) {
    .wholesalecollec-section-title {
        font-size: 2rem;
    }

    .wholesalecollec-hero-title {
        font-size: 3rem;
    }

    .wholesalecollec-free-session-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .wholesalecollec-online-class {
        grid-template-columns: 1fr;
    }

    .wholesalecollec-contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .wholesalecollec-footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 1000px) {
    :root {
        --space-xl: 2rem;
        --space-xxl: 3rem;
    }

    .wholesalecollec-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: rgba(14, 14, 14, 0.95);
        backdrop-filter: blur(10px);
        padding: 80px var(--space-lg) var(--space-lg);
        transition: right var(--transition-medium);
        z-index: var(--z-dropdown);
        box-shadow: var(--shadow-lg);
    }

    .wholesalecollec-nav.active {
        right: 0;
    }

    .wholesalecollec-nav-list {
        flex-direction: column;
        gap: var(--space-md);
        align-items: flex-start;
    }

    .wholesalecollec-mobile-menu-toggle {
        display: flex;
    }

    .wholesalecollec-hero-title {
        font-size: 2.5rem;
    }

    .wholesalecollec-hero-subtitle {
        font-size: 1.2rem;
    }

    .wholesalecollec-cards {
        grid-template-columns: 1fr;
    }

    .wholesalecollec-retreat-card {
        min-width: 260px;
    }

    .wholesalecollec-footer-links {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 1.5rem;
        --space-xl: 2rem;
    }

    .wholesalecollec-hero-title {
        font-size: 2rem;
    }

    .wholesalecollec-hero-subtitle {
        font-size: 1rem;
    }

    .wholesalecollec-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .wholesalecollec-section-title {
        font-size: 1.7rem;
    }

    .wholesalecollec-tabs {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .wholesalecollec-tab-button {
        font-size: 0.9rem;
        padding: var(--space-xs) var(--space-md);
    }

    .wholesalecollec-contact-item {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .wholesalecollec-footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 320px) {
    .wholesalecollec-container {
        padding: 0 var(--space-md);
    }

    .wholesalecollec-hero-title {
        font-size: 1.8rem;
    }

    .wholesalecollec-section-badge {
        font-size: 0.7rem;
    }
}