@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Light.woff2') format('woff2'),
        url('../fonts/Inter-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'More Sugar';
    src: url('../fonts/MoreSugarThin.woff2') format('woff2'),
        url('../fonts/MoreSugarThin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2'),
        url('../fonts/Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2'),
        url('../fonts/Inter-SemiBold.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2'),
        url('../fonts/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PT Serif';
    src: url('../fonts/PTSerif-Regular.woff2') format('woff2'),
        url('../fonts/PTSerif-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #ffcc00;
    --primary-dark: #ffcc00;
    --primary-light: #FFF4CC;
    --text-dark: #282544;
    --text-medium: #4A4766;
    --text-light: #7A7794;
    --bg-main: #f3fbfb;
    --bg-white: #FFFFFF;
    --border-light: #d8f0f0;
    --success: #22c55e;
    --success-light: #dcfce7;
    --error: #ef4444;
    --shadow-soft: 0 2px 12px rgba(40, 37, 68, 0.08);
    --shadow-medium: 0 4px 20px rgba(40, 37, 68, 0.12);
    --shadow-large: 0 8px 40px rgba(40, 37, 68, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    min-width: 320px;
}

strong {
    font-weight: 500;
}

h1, h2, h3 { font-family: 'PT Serif', serif; font-weight: 400; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(243, 251, 251, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
}

.logo {
    width: 175px;
    height: 40px;
}

.logo svg {
    width: 175px;
    height: 40px;
}

.logo svg * {
    fill: #282544;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--text-dark);
}

.social-link svg { width: 20px; height: 20px; }

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-main) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text { max-width: 540px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--text-dark);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-size: 2.75rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero h1 span {
    font-family: 'More Sugar', sans-serif;
    font-weight: 100;
    color: var(--primary-dark);
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid var(--border-light);
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: var(--bg-white);
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-form input::placeholder { color: var(--text-light); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 214, 51, 0.4);
}

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

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

.btn svg { width: 20px; height: 20px; }

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
}

.form-note a {
    color: var(--text-medium);
    text-decoration: underline;
}

/* Hero Visual - Overlapping Images */
.hero-visual {
    position: relative;
    height: 500px;
    width: 100%;
    max-width: 400px;
}

.hero-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-large);
    transition: transform 0.4s ease;
}

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

.hero-image-1 {
    width: 280px;
    height: 350px;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    z-index: 3;
}

.hero-image-2 {
    width: 200px;
    height: 250px;
    top: 40px;
    left: 0;
    transform: rotate(6deg);
    z-index: 2;
}

.hero-image-3 {
    width: 180px;
    height: 240px;
    top: 60px;
    right: 0;
    transform: rotate(-5deg);
    z-index: 2;
}

.hero-image-4 {
    width: 160px;
    height: 200px;
    bottom: 20px;
    left: 60px;
    transform: rotate(4deg);
    z-index: 1;
}

.hero-image-5 {
    width: 150px;
    height: 190px;
    bottom: 0;
    right: 40px;
    transform: rotate(-6deg);
    z-index: 1;
}

/* Floating Labels */
.hero-label {
    position: absolute;
    background: var(--bg-white);
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 20;
    white-space: nowrap;
}

.hero-label-1 {
    top: -10px;
    right: 20px;
    animation: float 3s ease-in-out infinite;
}

.hero-label-2 {
    bottom: 80px;
    left: -10px;
    animation: float 3s ease-in-out infinite 0.5s;
}

.hero-label-3 {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    animation: float 3s ease-in-out infinite 1s;
}

.hero-label span {
    font-size: 1rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-label-3 {
    animation: float-center 3s ease-in-out infinite 1s;
}

@keyframes float-center {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* Features Section */
.features {
    padding: 100px 40px;
    background: var(--bg-white);
}

.features-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 32px;
    border-radius: var(--radius-xl);
    background: var(--bg-main);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon svg { width: 32px; height: 32px; color: var(--text-dark); }

.feature-card h3 {
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.pricing {
    padding: 100px 40px;
    background: var(--bg-main);
}

.pricing-inner {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 2px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--primary);
}

.pricing-card.featured {
    border-color: var(--primary);
    position: relative;
    box-shadow: var(--shadow-medium);
}

.pricing-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-main);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.pricing-card.featured .pricing-badge {
    background: var(--primary);
    color: var(--text-dark);
}

.pricing-badge-promo {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--success);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-original {
    display: block;
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.pricing-amount {
    margin-bottom: 16px;
}

.pricing-amount .price {
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1;
}

.pricing-amount .price small {
    font-size: 1.5rem;
    font-weight: 500;
}

.pricing-amount .price-period {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 4px;
}

.pricing-desc {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

.pricing-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-medium);
    background: var(--primary-light);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
}

.pricing-comparison {
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.pricing-comparison strong {
    color: var(--text-dark);
}

.pricing-limited {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.pricing-bundle {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px dashed var(--border-light);
}

.bundle-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.bundle-content {
    background: var(--bg-main);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.bundle-price {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.bundle-desc {
    font-size: 0.85rem;
    color: var(--text-medium);
}

.pricing-after {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 16px;
    padding: 12px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.pricing-after strong {
    color: var(--text-medium);
}

/* Pioneer Section */
.pioneer {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--text-dark) 0%, #3a3660 100%);
    color: var(--bg-white);
}

.pioneer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.pioneer-inner > div {
    width: 100%;
}

@media (min-width: 1024px) {
    .pioneer-inner > div {
        width: 50%;
    }

    .pioneer-content {
        padding-right: 80px;
    }
}

.pioneer-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.pioneer-content > p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.7;
}

.pioneer-deadline {
    background: rgba(255, 214, 51, 0.2);
    color: var(--bg-white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 32px;
}

.pioneer-deadline strong {
    color: var(--primary);
}

.pioneer-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.pioneer-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.benefit-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.benefit-text span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

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

.btn-light:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Pioneer Form */
.pioneer-form-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    color: var(--text-dark);
}

.pioneer-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pioneer-form-card > p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-main);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.radio-option:hover {
    border-color: var(--primary);
}

.radio-option:has(input:checked) {
    border-color: var(--primary);
    background: var(--primary-light);
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.radio-label {
    font-weight: 500;
    color: var(--text-dark);
}

.radio-note {
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.radio-option:has(input:checked) .radio-note {
    color: var(--success);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit {
    margin-top: 8px;
}

.form-submit .btn { width: 100%; }

/* Footer */
.footer {
    padding: 40px;
    text-align: center;
    background: var(--bg-main);
    border-top: 1px solid var(--border-light);
}

.footer p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer a {
    color: var(--text-medium);
    text-decoration: underline;
}

/* Success Messages */
.success-message {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--success-light);
    border-radius: var(--radius-md);
    color: var(--success);
    font-weight: 500;
}

.success-message.show { display: flex; }

.success-message svg { width: 24px; height: 24px; flex-shrink: 0; }

/* Preview Section */
.preview {
    padding: 100px 40px;
    background: var(--bg-main);
}

.preview-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.preview-block {
    margin-bottom: 80px;
}

.preview-block:last-child { margin-bottom: 0; }

.preview-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-light);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.preview-label-icon { font-size: 1rem; }

.preview-description {
    max-width: 500px;
    margin-bottom: 32px;
}

.preview-description h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.preview-description p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.preview-block.reverse .preview-description {
    margin-left: auto;
    text-align: right;
}

/* Browser Window Style */
.preview-window {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-large);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.preview-window.large {
    max-width: 900px;
}

.preview-block.reverse .preview-window {
    margin-left: auto;
}

.preview-window-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f5f5f7;
    border-bottom: 1px solid var(--border-light);
}

.window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-dot.red { background: #ff5f57; }
.window-dot.yellow { background: #ffbd2e; }
.window-dot.green { background: #28c840; }

.window-url {
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    background: var(--bg-white);
    padding: 6px 16px;
    border-radius: 6px;
    margin-left: 8px;
}

.preview-window-content {
    padding: 24px;
    background: var(--bg-main);
}

/* Products Preview Grid */
.products-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.preview-product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.preview-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.preview-product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.preview-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
}

.preview-badge.new { background: var(--success); color: white; }
.preview-badge.sale { background: var(--error); color: white; }

.preview-wishlist {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: var(--bg-white);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition);
}

.preview-product-card:hover .preview-wishlist { opacity: 1; }

.preview-wishlist svg { width: 14px; height: 14px; color: var(--text-medium); }

.preview-product-content {
    padding: 12px;
}

.preview-product-seller {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.preview-product-seller img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}

.preview-product-seller span {
    font-size: 0.7rem;
    color: var(--text-light);
}

.preview-product-content h4 {
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.preview-product-price {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.preview-product-price .old-price {
    font-size: 0.75rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 4px;
}

.preview-product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: var(--text-light);
}

.preview-product-rating .stars {
    color: var(--primary);
}

        .product-detail-preview {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            background: var(--bg-main);
            border-radius: 0;
            padding: 20px;
        }

        .product-gallery-preview {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .gallery-main-preview {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--bg-white);
        }

        .gallery-main-preview img {
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
        }

        .gallery-badge-preview {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--primary);
            color: var(--text-dark);
            padding: 4px 10px;
            border-radius: 50px;
            font-size: 0.65rem;
            font-weight: 500;
        }

        .gallery-wishlist-preview {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 32px;
            height: 32px;
            background: var(--bg-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-soft);
        }

        .gallery-wishlist-preview svg {
            width: 14px;
            height: 14px;
            color: var(--text-light);
        }

        .gallery-nav-preview {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 28px;
            height: 28px;
            background: var(--bg-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-soft);
        }

        .gallery-nav-preview svg {
            width: 12px;
            height: 12px;
            color: var(--text-medium);
        }

        .gallery-nav-preview.prev { left: 10px; }
        .gallery-nav-preview.next { right: 10px; }

        .gallery-thumbs-preview {
            display: flex;
            gap: 8px;
        }

        .gallery-thumb-preview {
            width: 50px;
            height: 50px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            border: 2px solid transparent;
            opacity: 0.6;
        }

        .gallery-thumb-preview.active {
            border-color: var(--primary);
            opacity: 1;
        }

        .gallery-thumb-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-info-preview {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding-top: 4px;
        }

        .seller-mini-preview {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .seller-mini-preview > img {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
        }

        .seller-mini-preview .seller-info {
            display: flex;
            flex-direction: column;
        }

        .seller-mini-preview .seller-name {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--text-dark);
        }

        .seller-mini-preview .seller-rating {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 0.65rem;
            color: var(--text-medium);
        }

        .seller-mini-preview .seller-rating svg {
            width: 10px;
            height: 10px;
            fill: var(--primary);
        }

        .product-title-preview {
            font-family: 'PT Serif', serif;
            font-size: 1.1rem;
            font-weight: 400;
            line-height: 1.3;
            color: var(--text-dark);
        }

        .product-price-preview {
            font-size: 1.4rem;
            font-weight: 500;
            color: var(--text-dark);
        }

        .product-meta-preview {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .meta-item-preview {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 0.65rem;
            color: var(--text-medium);
            background: var(--bg-white);
            padding: 4px 8px;
            border-radius: 50px;
        }

        .meta-item-preview svg {
            width: 10px;
            height: 10px;
        }

        .meta-item-preview.in-stock {
            color: var(--success);
        }

        .product-options-preview {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .option-group-preview {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .option-label-preview {
            font-size: 0.7rem;
            font-weight: 500;
            color: var(--text-dark);
        }

        .color-choices-preview {
            display: flex;
            gap: 6px;
        }

        .color-choice-preview {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: 2px solid transparent;
            cursor: pointer;
        }

        .color-choice-preview.selected {
            border-color: var(--text-dark);
            box-shadow: inset 0 0 0 2px white;
        }

        .option-choices-preview {
            display: flex;
            gap: 6px;
        }

        .option-choice-preview {
            padding: 5px 10px;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-sm);
            font-size: 0.65rem;
            background: var(--bg-white);
        }

        .option-choice-preview.selected {
            border-color: var(--primary);
            background: var(--primary-light);
        }

        .product-actions-preview {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .btn-cart-preview {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 10px 16px;
            background: var(--primary);
            border: none;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--text-dark);
        }

        .btn-cart-preview svg {
            width: 14px;
            height: 14px;
        }

        .btn-row-preview {
            display: flex;
            gap: 8px;
        }

        .btn-secondary-preview {
            flex: 1;
            padding: 8px 12px;
            background: var(--text-dark);
            color: var(--bg-white);
            border: none;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 500;
        }

        .btn-wishlist-preview {
            width: 36px;
            height: 36px;
            background: var(--bg-white);
            border: 1px solid var(--border-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-wishlist-preview svg {
            width: 14px;
            height: 14px;
            color: var(--text-light);
        }

        .delivery-info-preview {
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding-top: 10px;
            border-top: 1px solid var(--border-light);
        }

        .delivery-item-preview {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.65rem;
            color: var(--text-medium);
        }

        .delivery-item-preview svg {
            width: 14px;
            height: 14px;
            color: var(--text-light);
        }

/* Vendor Preview */
.vendor-preview {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 0;
}

.vendor-cover {
    height: 220px;
    overflow: hidden;
}

.vendor-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vendor-profile {
    display: flex;
    gap: 20px;
    padding: 0 24px 20px;
    margin-top: -40px;
    position: relative;
}

.vendor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--bg-white);
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.vendor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vendor-info {
    flex: 1;
    padding-top: 64px;
    padding-bottom: 10px;
}

.vendor-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.vendor-header h3 {
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.vendor-header .pioneer-badge {
    padding: 3px 8px;
    background: var(--primary-light);
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-dark);
}

.vendor-header .verified-badge {
    padding: 3px 8px;
    background: var(--success-light);
    color: var(--success);
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 500;
}

.vendor-location {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.vendor-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.vendor-stats .stat {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.vendor-stats .stat strong {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.vendor-stats .stat span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.vendor-bio {
    font-size: 0.8rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.vendor-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 64px;
}

.btn-follow, .btn-contact {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-follow {
    background: var(--primary);
    border: none;
    color: var(--text-dark);
}

.btn-follow svg { width: 14px; height: 14px; }

.btn-contact {
    background: transparent;
    border: 2px solid var(--border-light);
    color: var(--text-dark);
}

.vendor-products {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    padding: 16px 24px 24px;
    border-top: 1px solid var(--border-light);
}

.vendor-product {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.vendor-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.vendor-product:hover img { transform: scale(1.05); }

.vendor-product.more {
    background: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vendor-product.more span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-medium);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { margin: 0 auto; height: 420px; }
    .hero-bg { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .products-preview { grid-template-columns: repeat(2, 1fr); }
    .product-detail-preview { grid-template-columns: 1fr; }
    .vendor-products { grid-template-columns: repeat(4, 1fr); }
    
    .hero-image-1 { width: 240px; height: 300px; }
    .hero-image-2 { width: 160px; height: 200px; left: -10px; }
    .hero-image-3 { width: 150px; height: 190px; right: -10px; }
    .hero-image-4 { width: 130px; height: 160px; left: 30px; }
    .hero-image-5 { width: 120px; height: 150px; right: 20px; }
}

@media (max-width: 768px) {
    .header { padding: 16px 20px; }
    .hero { padding: 120px 20px 60px; }
    .hero h1 { font-size: 2.5rem; }
    .newsletter-form { flex-direction: column; }
    .features { padding: 60px 20px; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing { padding: 60px 20px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card { padding: 32px; }
    .pioneer { padding: 60px 20px; }
    .pioneer-form-card { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .preview { padding: 60px 20px; }
    .preview-block.reverse .preview-description { margin-left: 0; text-align: left; }
    .preview-block.reverse .preview-window { margin-left: 0; }
    .products-preview { grid-template-columns: repeat(2, 1fr); }
    .vendor-profile { flex-wrap: wrap; }
    .vendor-actions { flex-direction: row; padding-top: 0; width: 100%; margin-top: 16px; }
    .vendor-products { grid-template-columns: repeat(3, 1fr); }
    
    .hero-visual { height: 350px; }
    .hero-image-1 { width: 200px; height: 250px; }
    .hero-image-2 { width: 130px; height: 160px; top: 20px; }
    .hero-image-3 { width: 120px; height: 150px; top: 30px; }
    .hero-image-4 { width: 100px; height: 130px; bottom: 30px; left: 10px; }
    .hero-image-5 { width: 100px; height: 130px; bottom: 20px; right: 5px; }
    .hero-label { font-size: 0.75rem; padding: 8px 12px; }
    .hero-label-2 { left: 0; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero-description { font-size: 1rem; }
    .section-header h2 { font-size: 2rem; }
    .section-header p, .pioneer-content > p { font-size: 1rem; }
    .feature-card p { font-size: 0.85rem; }
    .pioneer-content h2 { font-size: 1.8rem; }
    .preview-description h3 { font-size: 1.4rem; }
    .products-preview { grid-template-columns: 1fr 1fr; gap: 10px; }
    .preview-product-content { padding: 10px; }
    .preview-product-content h4 { font-size: 0.75rem; }
    .vendor-profile { flex-direction: column; align-items: center; text-align: center; }
    .vendor-info { padding-top: 12px; }
    .vendor-stats { justify-content: center; }
    .vendor-actions { justify-content: center; }
    
    .hero-visual { height: 300px; padding: 0 20px; }
    .hero-label { font-size: 0.7rem; padding: 6px 10px; }
    .hero-label span { font-size: 0.85rem; }
    .hero-label-1 { top: -5px; right: 0; }
    .hero-label-2 { bottom: 60px; left: -5px; }
    .hero-label-3 { bottom: -5px; }
    .vendor-header { flex-direction: column; }
    .stat { flex-wrap: wrap; justify-content: center; }
    .form-row { gap: 0; }
}