body.wholesale-body {
    background: linear-gradient(135deg, #f0f7ff 0%, #eff4ff 50%, #eaf0fb 100%);
}

.wholesale-hero {
    position: relative;
    text-align: center;
    padding: 64px 20px 40px;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}
.wholesale-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.14;
    z-index: 0;
    pointer-events: none;
}
.wb1 { width: 300px; height: 300px; top: -140px; right: -60px; background: #2563eb; }
.wb2 { width: 240px; height: 240px; top: -60px; left: -80px; background: #f59e0b; }
.wholesale-hero-eyebrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2563eb;
    margin-bottom: 14px;
}
.wholesale-hero-eyebrow::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: #2563eb;
}
.wholesale-hero h1 {
    position: relative;
    z-index: 1;
    font-size: 34px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 22px;
}
.wholesale-hero-body {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto 28px;
    text-align: right;
}
.wholesale-hero-body p {
    font-size: 15.5px;
    color: #444;
    line-height: 2;
    margin-bottom: 16px;
}
.wholesale-hero-cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
    transition: 0.2s;
}
.wholesale-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(37, 99, 235, 0.35);
}

.wholesale-features {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.wholesale-feature-card {
    background: white;
    border-radius: 18px;
    padding: 26px 22px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
    text-align: center;
}
.wholesale-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 20px;
    margin-bottom: 14px;
}
.wholesale-feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.wholesale-feature-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}
@media (max-width: 860px) {
    .wholesale-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .wholesale-hero { padding: 44px 16px 28px; }
    .wholesale-hero h1 { font-size: 26px; }
    .wholesale-features { grid-template-columns: 1fr; }
}

.wholesale-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.wholesale-card {
    width: 100%;
    max-width: 630px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(37, 99, 235, 0.15);
    padding: 40px 44px 36px;
}

.wholesale-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.wholesale-card-header .icon-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2563eb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.wholesale-card-header h1 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
}

.wholesale-card-subtitle {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.wholesale-divider {
    border: none;
    border-top: 1px solid #eee;
    margin-bottom: 22px;
}

.wholesale-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.wholesale-form input,
.wholesale-form select {
    width: 100%;
    padding: 15px 18px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    background: #fafbfc;
    outline: none;
    transition: 0.2s;
}
.wholesale-form input:focus,
.wholesale-form select:focus {
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.wholesale-field-error {
    font-size: 12px;
    color: #ef4444;
    margin-top: -8px;
}

.wholesale-form-errors {
    font-size: 13px;
    color: #ef4444;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 12px 14px;
}

.wholesale-submit {
    width: 100%;
    padding: 17px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.2s;
    margin-top: 6px;
}
.wholesale-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}

.wholesale-privacy-note {
    margin-top: 18px;
    font-size: 12px;
    color: #999;
    line-height: 1.6;
}
.wholesale-privacy-note a {
    color: #333;
    font-weight: 600;
}

.wholesale-back-link {
    display: block;
    text-align: center;
    margin-top: 18px;
    font-size: 13px;
    color: #2563eb;
    font-weight: 600;
}

@media (max-width: 640px) {
    .wholesale-card { padding: 28px 22px 26px; }
    .wholesale-row-2 { grid-template-columns: 1fr; }
}

.wholesale-showcase-row {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.wholesale-showcase-row:last-of-type {
    margin-bottom: 70px;
}
.wholesale-showcase-row-reverse .wholesale-showcase-card {
    order: -1;
}
.wholesale-showcase-img {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 25px 50px -18px rgba(37, 99, 235, 0.28);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.wholesale-showcase-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -16px rgba(37, 99, 235, 0.35);
}
.wholesale-showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.wholesale-showcase-img:hover img {
    transform: scale(1.05);
}
.wholesale-showcase-card {
    background: white;
    border-radius: 18px;
    padding: 32px 30px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
}
.wholesale-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 18px;
    margin-bottom: 14px;
}
.wholesale-showcase-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}
.wholesale-showcase-card p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.8;
}
@media (max-width: 900px) {
    .wholesale-showcase-row { grid-template-columns: 1fr; }
    .wholesale-showcase-row-reverse .wholesale-showcase-card { order: 0; }
    .wholesale-showcase-img { aspect-ratio: 16 / 10; }
}
