:root {
    --sv-brand-blue: #0a86bf;
    --sv-brand-red: #d61f2b;
}

.sv-home {
    background: #ffffff;
    color: #1f2430;
}

.sv-home h1,
.sv-home h2,
.sv-home h3,
.sv-home h4 {
    color: #121621;
}

.sv-home p {
    color: #5a6375;
}

.sv-hero {
    padding: 120px 0 80px;
    background: #ffffff;
}

.sv-hero-new {
    position: relative;
    overflow: hidden;
}

.sv-orbit {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(0);
    z-index: 0;
}

.sv-orbit-1 {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -120px;
    background: radial-gradient(circle, rgba(10, 134, 191, 0.35), transparent 70%);
}

.sv-orbit-2 {
    width: 360px;
    height: 360px;
    bottom: -140px;
    left: -120px;
    background: radial-gradient(circle, rgba(214, 31, 43, 0.35), transparent 70%);
}

.sv-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sv-hero-left h1 {
    font-size: 52px;
    line-height: 1.08;
}

.sv-hero-right {
    display: none;
}

.sv-hero-mosaic {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 70px;
    gap: 12px;
    padding: 16px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(16, 19, 28, 0.08);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.sv-mosaic-tile {
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(10, 134, 191, 0.25), rgba(214, 31, 43, 0.25));
    position: relative;
    overflow: hidden;
}

.sv-mosaic-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 60%);
}

.sv-tile-1 { grid-column: span 3; grid-row: span 2; }
.sv-tile-2 { grid-column: span 2; grid-row: span 1; }
.sv-tile-3 { grid-column: span 1; grid-row: span 1; }
.sv-tile-4 { grid-column: span 2; grid-row: span 2; background: linear-gradient(135deg, rgba(214, 31, 43, 0.2), rgba(10, 134, 191, 0.2)); }
.sv-tile-5 { grid-column: span 2; grid-row: span 1; }
.sv-tile-6 { grid-column: span 2; grid-row: span 1; background: linear-gradient(135deg, rgba(10, 134, 191, 0.15), rgba(214, 31, 43, 0.35)); }

.sv-hero-feature {
    display: grid;
    gap: 14px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(16, 19, 28, 0.08);
    padding: 18px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.sv-featured-images .sv-section-head {
    max-width: 520px;
}

.sv-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.sv-featured-card {
    display: grid;
    gap: 10px;
    border-radius: 18px;
    padding: 14px;
    background: #fff;
    border: 1px solid rgba(16, 19, 28, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: inherit;
}

.sv-featured-card img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
}

.sv-featured-card span {
    font-weight: 600;
    font-size: 14px;
    color: #1f2430;
}

.sv-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.sv-hero-feature h3 {
    margin-bottom: 6px;
    font-size: 16px;
}

.sv-hero-feature p {
    margin: 0;
    font-size: 13px;
    color: #7d869a;
}

.sv-hero-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.sv-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(16, 19, 28, 0.08);
    color: #121621;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sv-hero h1 {
    font-size: 46px;
    line-height: 1.15;
    margin: 20px 0;
}

.sv-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}

.sv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sv-btn-primary {
    background: var(--sv-brand-red);
    color: #fff;
}

.sv-btn-primary:hover {
    transform: translateY(-1px);
    color: #fff;
    background: var(--sv-brand-blue);
}

.sv-btn-ghost {
    border: 1px solid rgba(16, 19, 28, 0.2);
    color: #121621;
}

.sv-btn-ghost:hover {
    color: #121621;
    border-color: var(--sv-brand-blue);
}

.sv-search {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.sv-search input[type="search"] {
    flex: 1;
    min-width: 220px;
    height: 54px;
    border-radius: 999px;
    border: 1px solid rgba(16, 19, 28, 0.1);
    background: #fff;
    color: #121621;
    padding: 0 20px;
}

.sv-search button {
    height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    border: none;
    background: var(--sv-brand-red);
    color: #fff;
    font-weight: 600;
}

.sv-search button:hover {
    background: var(--sv-brand-blue);
}

.sv-hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.sv-stat-number {
    font-size: 20px;
    font-weight: 700;
}

.sv-stat-label {
    display: block;
    color: #7d869a;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.sv-hero-visual {
    display: grid;
    gap: 20px;
}

.sv-hero-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid rgba(16, 19, 28, 0.06);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.sv-hero-card-secondary {
    background: #eef4ff;
}

.sv-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.sv-hero-tags span {
    background: rgba(16, 19, 28, 0.08);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
}

.sv-section {
    padding: 90px 0;
    background: #ffffff;
}

.sv-section-light {
    background: #ffffff;
}

.sv-section-spotlight {
    background: linear-gradient(180deg, rgba(10, 134, 191, 0.06), rgba(214, 31, 43, 0.04));
}

.sv-section-cta {
    background: linear-gradient(120deg, rgba(10, 134, 191, 0.1), rgba(214, 31, 43, 0.08));
}

.sv-section-head {
    max-width: 640px;
    margin-bottom: 40px;
}

.sv-category-grid,
.sv-collection-grid,
.sv-testimonials {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.sv-category-card,
.sv-collection-card,
.sv-testimonial,
.sv-card,
.sv-product-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(16, 19, 28, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sv-category-card:hover,
.sv-collection-card:hover,
.sv-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.sv-category-thumb {
    height: 140px;
    border-radius: 16px;
    background: linear-gradient(120deg, rgba(15, 120, 255, 0.4), rgba(255, 74, 122, 0.4));
    background-size: cover;
    margin-bottom: 16px;
}

.sv-category-info h3 {
    font-size: 16px;
}

.sv-category-info span {
    color: #7d869a;
    font-size: 13px;
}

.sv-collection-card {
    min-height: 220px;
}

.sv-collection-thumb {
    height: 150px;
    border-radius: 16px;
    background: linear-gradient(120deg, rgba(15, 120, 255, 0.4), rgba(255, 74, 122, 0.4));
    background-size: cover;
    background-position: center;
    margin-bottom: 16px;
}

.sv-text-link {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    color: var(--sv-brand-blue);
    font-weight: 600;
}

.sv-split {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
}

.sv-card-stack .sv-card {
    padding: 16px 18px;
}

.sv-card-stack .sv-card h4 {
    font-size: 16px;
    margin-bottom: 6px;
}

.sv-card-stack .sv-card p {
    font-size: 14px;
    margin-bottom: 0;
}

.sv-card-stack {
    display: grid;
    gap: 14px;
}

.sv-testimonial span {
    margin-top: 12px;
    display: block;
    color: #7d869a;
}

.sv-muted {
    color: #7d869a;
}

.sv-masonry {
    column-count: 3;
    column-gap: 20px;
}

.sv-product-card {
    display: inline-block;
    width: 100%;
    margin: 0 0 20px;
    break-inside: avoid;
    text-align: left;
}

.sv-product-card img {
    border-radius: 16px;
    margin-bottom: 12px;
    width: 100%;
    height: auto;
    display: block;
}

.sv-product-card h3 {
    font-size: 16px;
    margin: 0 0 8px;
}

.sv-product-link {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .sv-masonry {
        column-count: 2;
    }
}

@media (max-width: 640px) {
    .sv-masonry {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    .sv-hero {
        padding: 90px 0 60px;
    }

    .sv-hero h1 {
        font-size: 34px;
    }

    .sv-hero-stats {
        gap: 16px;
    }
}
