:root {
    --ssl-bg: #f7faf8;
    --ssl-band: #eef7f1;
    --ssl-surface: #ffffff;
    --ssl-surface-soft: #f8fafc;
    --ssl-border: #dce7df;
    --ssl-border-strong: #b6d7c3;
    --ssl-text: #0f172a;
    --ssl-muted: #4b5563;
    --ssl-faint: #64748b;
    --ssl-primary: #047857;
    --ssl-primary-strong: #065f46;
    --ssl-primary-soft: #dff7e9;
    --ssl-blue: #2563eb;
    --ssl-amber: #b7791f;
    --ssl-danger: #dc2626;
    --ssl-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body.ssl-store {
    margin: 0;
    background: var(--ssl-bg);
    color: var(--ssl-text);
    font-family: 'Plus Jakarta Sans', 'Outfit', Arial, sans-serif;
    max-width: 100%;
    overflow-x: hidden;
}

body.ssl-store img,
body.ssl-store iframe,
body.ssl-store svg {
    max-width: 100%;
}

a {
    color: inherit;
}

.store-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--ssl-border);
    backdrop-filter: blur(14px);
}

.store-header-inner,
.store-shell {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.store-header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-width: 0;
}

.store-mobile-menu {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.store-menu-toggle {
    min-height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--ssl-border);
    border-radius: 10px;
    background: #ffffff;
    color: var(--ssl-primary-strong);
    padding: 0 12px;
    font: inherit;
    font-size: 0.86rem;
    font-weight: 900;
    cursor: pointer;
}

.store-menu-toggle svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
}

.store-menu-toggle:hover,
.store-menu-toggle[aria-expanded="true"] {
    border-color: var(--ssl-border-strong);
    background: var(--ssl-primary-soft);
}

.store-logo {
    display: inline-flex;
    align-items: center;
    width: 170px;
    height: 44px;
    text-decoration: none;
    flex-shrink: 0;
}

.store-logo img {
    width: 100%;
    height: 100%;
    display: block;
}

.store-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
}

.store-nav a,
.store-action-link {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0 10px;
    color: var(--ssl-muted);
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 800;
    white-space: nowrap;
}

.store-nav a:hover,
.store-nav a.active {
    background: var(--ssl-primary-soft);
    color: var(--ssl-primary-strong);
}

.store-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    min-width: 0;
}

.store-auth-actions {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--ssl-border);
    border-radius: 12px;
    background: #f8fafc;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
    min-width: 0;
}

.store-auth-btn {
    min-height: 34px;
    border: 0;
    border-radius: 8px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    min-width: 0;
}

.store-auth-btn span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.store-auth-btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.store-auth-btn.login {
    background: transparent;
    color: var(--ssl-primary-strong);
}

.store-auth-btn.login:hover {
    background: #ffffff;
    color: var(--ssl-primary);
    box-shadow: 0 5px 14px rgba(15, 23, 42, 0.06);
}

.store-auth-btn.register {
    background: var(--ssl-primary);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(4, 120, 87, 0.22);
}

.store-auth-btn.register:hover {
    background: var(--ssl-primary-strong);
    transform: translateY(-1px);
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: var(--ssl-surface);
    border: 1px solid var(--ssl-border);
    border-radius: 999px;
    padding: 3px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.language-switcher a {
    min-width: 34px;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--ssl-muted);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 900;
}

.language-switcher a:hover,
.language-switcher a.active {
    background: var(--ssl-primary);
    color: #ffffff;
}

.store-btn {
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    background: var(--ssl-surface);
    color: var(--ssl-text);
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 15px;
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    min-width: 0;
    text-align: center;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.store-btn:hover {
    border-color: var(--ssl-border-strong);
    transform: translateY(-1px);
}

.store-btn.primary {
    background: var(--ssl-primary);
    border-color: var(--ssl-primary);
    color: #ffffff;
}

.store-btn.primary:hover {
    background: var(--ssl-primary-strong);
}

.store-btn.secondary {
    background: var(--ssl-primary-soft);
    border-color: var(--ssl-border-strong);
    color: var(--ssl-primary-strong);
}

.store-btn.danger {
    background: #fff1f2;
    border-color: #fecdd3;
    color: var(--ssl-danger);
}

.store-btn.full {
    width: 100%;
}

.store-btn.small {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.78rem;
}

.hero {
    background: linear-gradient(180deg, #ffffff 0%, var(--ssl-band) 100%);
    border-bottom: 1px solid var(--ssl-border);
}

.hero-inner {
    width: min(1180px, calc(100% - 32px));
    min-height: min(650px, calc(100vh - 112px));
    max-height: none;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 44px;
    align-items: center;
    padding: 48px 0 44px;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.eyebrow {
    width: fit-content;
    border: 1px solid var(--ssl-border-strong);
    border-radius: 999px;
    background: var(--ssl-surface);
    color: var(--ssl-primary-strong);
    padding: 7px 12px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    color: var(--ssl-text);
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.25rem, 7vw, 4.6rem);
    line-height: 1.04;
    font-weight: 900;
}

.hero p {
    max-width: 690px;
    margin: 0;
    color: var(--ssl-muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.hero-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    max-width: 660px;
}

.hero-search input,
.store-input,
.store-select,
.store-textarea {
    width: 100%;
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--ssl-text);
    font: inherit;
    min-height: 44px;
    padding: 0 13px;
    outline: none;
}

.store-textarea {
    min-height: 104px;
    padding: 12px 13px;
    resize: vertical;
}

.hero-search input:focus,
.store-input:focus,
.store-select:focus,
.store-textarea:focus {
    border-color: var(--ssl-primary);
    box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.12);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-pill,
.badge-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border: 1px solid var(--ssl-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--ssl-muted);
    padding: 0 10px;
    font-size: 0.78rem;
    font-weight: 800;
}

.badge-pill.green {
    background: var(--ssl-primary-soft);
    color: var(--ssl-primary-strong);
    border-color: var(--ssl-border-strong);
}

.badge-pill.blue {
    background: #dbeafe;
    color: var(--ssl-blue);
    border-color: #bfdbfe;
}

.badge-pill.amber {
    background: #fef3c7;
    color: var(--ssl-amber);
    border-color: #fde68a;
}

.hero-visual {
    display: grid;
    gap: 14px;
    align-content: center;
}

.certificate-visual {
    position: relative;
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    background: var(--ssl-surface);
    box-shadow: var(--ssl-shadow);
    padding: 22px;
    overflow: hidden;
}

.certificate-visual::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 8px;
    background: linear-gradient(90deg, var(--ssl-primary), var(--ssl-blue), #14b8a6);
}

.cert-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.cert-shield {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--ssl-primary-soft);
    display: grid;
    place-items: center;
    color: var(--ssl-primary-strong);
}

.cert-shield svg {
    width: 32px;
    height: 32px;
}

.cert-lines {
    display: grid;
    gap: 10px;
}

.cert-line {
    height: 12px;
    border-radius: 999px;
    background: #e2e8f0;
}

.cert-line.short {
    width: 56%;
}

.cert-line.mid {
    width: 78%;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 22px;
}

.cert-metric {
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    padding: 13px 10px;
    background: #f8fafc;
}

.cert-metric strong {
    display: block;
    font-size: 1rem;
}

.cert-metric span {
    display: block;
    color: var(--ssl-faint);
    font-size: 0.73rem;
    font-weight: 700;
    margin-top: 4px;
}

.mini-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.mini-product {
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    padding: 14px;
}

.mini-product strong {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 6px;
}

.mini-product span {
    color: var(--ssl-primary-strong);
    font-weight: 900;
}

.home-promo-slider {
    min-width: 0;
    align-content: center;
}

.home-slider-viewport {
    min-height: 330px;
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    background: var(--ssl-surface);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.home-slider-track {
    display: flex;
    height: 100%;
    transform: translateX(0);
    transition: transform 0.38s ease;
    min-width: 0;
}

.home-slide {
    position: relative;
    min-width: 100%;
    min-height: 330px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 238px);
    gap: 18px;
    align-items: center;
    padding: 24px 24px 24px 28px;
    overflow: hidden;
    background: #ffffff;
}

.home-slide::before {
    content: "";
    position: absolute;
    inset: 24px auto 24px 0;
    width: 3px;
    border-radius: 0 999px 999px 0;
    background: var(--ssl-primary);
}

.home-slide.wildcard {
    background: #ffffff;
}

.home-slide.wildcard::before {
    background: var(--ssl-primary);
}

.home-slide.business {
    background: #ffffff;
}

.home-slide.business::before {
    background: var(--ssl-primary);
}

.home-slide-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding-top: 0;
}

.home-slide-badge {
    width: fit-content;
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #cfe7d8;
    border-radius: 999px;
    background: #f8fffb;
    color: var(--ssl-primary-strong);
    padding: 0 9px;
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.home-slide h2 {
    margin: 0;
    color: var(--ssl-text);
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.64rem;
    line-height: 1.16;
    font-weight: 900;
}

.home-slide p {
    max-width: 430px;
    color: var(--ssl-muted);
    font-size: 0.93rem;
    line-height: 1.6;
}

.home-slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.home-slide-actions .store-btn {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.84rem;
}

.home-slide-actions .store-btn.secondary {
    background: #ffffff;
}

.home-slide-product {
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    background: #ffffff;
    padding: 16px;
}

.home-slide-product-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.home-slide-logo {
    width: 42px;
    height: 42px;
}

.home-slide-logo.logo-image {
    width: 78px;
    min-width: 78px;
    height: 42px;
}

.home-slide-product-head span {
    display: block;
    color: var(--ssl-faint);
    font-size: 0.72rem;
    font-weight: 800;
}

.home-slide-product-head strong {
    display: block;
    margin-top: 4px;
    color: var(--ssl-text);
    font-size: 0.93rem;
    line-height: 1.26;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.home-slide-price {
    color: var(--ssl-primary-strong);
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.62rem;
    line-height: 1;
    font-weight: 900;
}

.home-slide-price small {
    display: block;
    margin-top: 6px;
    color: var(--ssl-muted);
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
}

.home-slide-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.home-slide-tags span {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--ssl-border);
    color: var(--ssl-muted);
    padding: 0 8px;
    font-size: 0.7rem;
    font-weight: 900;
}

.home-slide-empty {
    min-height: 100%;
    display: grid;
    place-items: center;
    gap: 8px;
    text-align: center;
}

.home-slide-empty svg {
    width: 56px;
    height: 56px;
    color: var(--ssl-primary);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-slide-empty strong {
    font-size: 1.1rem;
    font-weight: 900;
}

.home-slide-empty span {
    color: var(--ssl-muted);
    font-size: 0.88rem;
    line-height: 1.45;
}

.home-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.home-slider-arrow {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--ssl-primary-strong);
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.home-slider-arrow:hover {
    border-color: var(--ssl-border-strong);
    background: var(--ssl-primary-soft);
    transform: translateY(-1px);
}

.home-slider-arrow svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-slider-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.home-slider-dots button {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 999px;
    background: #cbd5e1;
    cursor: pointer;
    padding: 0;
    transition: width 0.18s ease, background 0.18s ease;
}

.home-slider-dots button.active {
    width: 20px;
    background: var(--ssl-primary);
}

.home-campaigns-section {
    padding-top: 56px;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.campaign-tile {
    position: relative;
    min-height: 264px;
    display: flex;
    flex-direction: column;
    gap: 17px;
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--ssl-text);
    padding: 20px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    min-width: 0;
}

.campaign-tile::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: var(--ssl-primary);
}

.campaign-tile.wildcard::before {
    background: #0f766e;
}

.campaign-tile.trust::before {
    background: var(--ssl-blue);
}

.campaign-tile.payment::before {
    background: #f59e0b;
}

.campaign-tile:hover {
    border-color: var(--ssl-border-strong);
    box-shadow: var(--ssl-shadow);
    transform: translateY(-2px);
}

.campaign-icon {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    background: var(--ssl-primary-soft);
    color: var(--ssl-primary-strong);
}

.campaign-tile.trust .campaign-icon {
    background: #dbeafe;
    color: var(--ssl-blue);
}

.campaign-tile.payment .campaign-icon {
    background: #fef3c7;
    color: var(--ssl-amber);
}

.campaign-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.campaign-content {
    display: grid;
    gap: 9px;
}

.campaign-content strong {
    font-size: 1.04rem;
    line-height: 1.28;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.campaign-content span {
    color: var(--ssl-muted);
    font-size: 0.9rem;
    line-height: 1.58;
}

.campaign-foot {
    margin-top: auto;
    display: grid;
    gap: 10px;
}

.campaign-price {
    color: var(--ssl-primary-strong);
    font-size: 1.16rem;
    line-height: 1.15;
    font-weight: 900;
}

.campaign-price small {
    display: block;
    margin-top: 3px;
    color: var(--ssl-faint);
    font-size: 0.72rem;
    font-weight: 800;
}

.campaign-cta {
    width: fit-content;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    background: var(--ssl-primary);
    color: #ffffff;
    padding: 0 12px;
    font-size: 0.78rem;
    font-weight: 900;
}

.section {
    padding: 66px 0;
}

.section.white {
    background: var(--ssl-surface);
    border-top: 1px solid var(--ssl-border);
    border-bottom: 1px solid var(--ssl-border);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 24px;
}

.section-title {
    margin: 0;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.55rem, 4vw, 2.35rem);
    line-height: 1.1;
    font-weight: 900;
}

.section-desc {
    margin: 8px 0 0;
    color: var(--ssl-muted);
    line-height: 1.7;
    max-width: 720px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 8px;
}

.stat-tile {
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    background: var(--ssl-surface);
    padding: 18px;
}

.stat-tile strong {
    display: block;
    font-size: 1.65rem;
    font-weight: 900;
}

.stat-tile span {
    display: block;
    color: var(--ssl-muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.catalog-toolbar {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 0.8fr auto;
    gap: 10px;
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    background: var(--ssl-surface);
    padding: 12px;
    margin-bottom: 18px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.product-card {
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    background: var(--ssl-surface);
    display: flex;
    flex-direction: column;
    min-height: 354px;
    padding: 18px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
    min-width: 0;
}

.product-card:hover {
    border-color: var(--ssl-border-strong);
    box-shadow: var(--ssl-shadow);
}

.product-card-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.brand-mark {
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-grid;
    place-items: center;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 900;
    flex-shrink: 0;
}

.brand-mark.logo-image {
    width: 76px;
    min-width: 76px;
    height: 42px;
    background: #ffffff;
    border: 1px solid var(--ssl-border);
}

.brand-mark.logo-image img {
    max-width: 88%;
    max-height: 78%;
    object-fit: contain;
}

.ssl-logo-badge {
    grid-template-rows: 18px auto;
    gap: 1px;
}

.ssl-logo-badge svg {
    width: 18px;
    height: 18px;
}

.ssl-logo-badge span {
    font-size: 0.55rem;
    line-height: 1;
    max-width: 34px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-hero-logo {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
}

.brand-hero-logo.ssl-logo-badge {
    grid-template-rows: 29px auto;
}

.brand-hero-logo.ssl-logo-badge svg {
    width: 30px;
    height: 30px;
}

.brand-hero-logo.ssl-logo-badge span {
    font-size: 0.72rem;
    max-width: 52px;
}

.product-title {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.product-title a {
    text-decoration: none;
}

.product-title a:hover {
    color: var(--ssl-primary);
}

.brand-link {
    color: var(--ssl-muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
}

.product-card p {
    margin: 0;
    color: var(--ssl-muted);
    line-height: 1.58;
    font-size: 0.91rem;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}

.product-price-row {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.price {
    font-size: 1.65rem;
    line-height: 1;
    font-weight: 900;
    color: var(--ssl-primary-strong);
    overflow-wrap: anywhere;
}

.price small {
    display: block;
    margin-top: 5px;
    color: var(--ssl-faint);
    font-size: 0.73rem;
    font-weight: 800;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.brand-card {
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    background: var(--ssl-surface);
    padding: 16px;
    min-height: 188px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.brand-card:hover {
    border-color: var(--ssl-border-strong);
    box-shadow: var(--ssl-shadow);
}

.brand-card h3 {
    margin: 0;
    font-size: 1rem;
    overflow-wrap: anywhere;
}

.brand-card p {
    margin: 0;
    color: var(--ssl-muted);
    line-height: 1.55;
    font-size: 0.86rem;
}

.type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.type-tile {
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    background: var(--ssl-surface);
    padding: 20px;
}

.type-tile h3 {
    margin: 0 0 8px;
    font-size: 1.02rem;
}

.type-tile p {
    margin: 0;
    color: var(--ssl-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.page-hero {
    background: var(--ssl-band);
    border-bottom: 1px solid var(--ssl-border);
    padding: 48px 0;
}

.page-hero h1 {
    margin: 0;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 5vw, 3.3rem);
    line-height: 1.1;
}

.page-hero p {
    margin: 12px 0 0;
    color: var(--ssl-muted);
    max-width: 760px;
    line-height: 1.7;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) 380px;
    gap: 22px;
    align-items: start;
}

.detail-panel,
.order-panel,
.content-panel {
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    background: var(--ssl-surface);
    padding: 22px;
    min-width: 0;
}

.detail-panel h2,
.order-panel h2,
.content-panel h2 {
    margin: 0 0 14px;
    font-size: 1.22rem;
    font-weight: 900;
}

.feature-list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.feature-list li {
    display: flex;
    gap: 10px;
    color: var(--ssl-muted);
    line-height: 1.45;
}

.feature-list li::before {
    content: "✓";
    color: var(--ssl-primary);
    font-weight: 900;
}

.detail-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 18px 0;
}

.spec-item {
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    background: var(--ssl-surface-soft);
    padding: 13px;
}

.spec-item span {
    display: block;
    color: var(--ssl-faint);
    font-size: 0.76rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.spec-item strong {
    display: block;
    font-size: 0.96rem;
    overflow-wrap: anywhere;
}

.price-tier-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.price-tier-list strong {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--ssl-border);
    color: var(--ssl-primary-strong);
    padding: 0 9px;
    font-size: 0.82rem;
}

.store-form {
    display: grid;
    gap: 12px;
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.field label,
.field-label,
.check-field {
    display: grid;
    gap: 6px;
    color: var(--ssl-muted);
    font-size: 0.84rem;
    font-weight: 800;
}

.field-label {
    margin-bottom: 8px;
}

.approval-choice-grid {
    display: grid;
    gap: 8px;
}

.approval-choice {
    align-items: flex-start;
    background: var(--ssl-surface-soft);
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    cursor: pointer;
    display: grid;
    gap: 10px;
    grid-template-columns: auto 1fr;
    padding: 12px;
}

.approval-choice.selected {
    background: var(--ssl-primary-soft);
    border-color: var(--ssl-border-strong);
}

.approval-choice input {
    margin-top: 3px;
}

.approval-choice strong,
.approval-choice small {
    display: block;
}

.approval-choice strong {
    color: var(--ssl-text);
    font-size: 0.86rem;
}

.approval-choice small {
    color: var(--ssl-faint);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.45;
    margin-top: 4px;
}

.check-field {
    grid-template-columns: auto 1fr;
    align-items: center;
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    background: var(--ssl-surface-soft);
    padding: 11px 12px;
}

.field-help {
    color: var(--ssl-faint);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.55;
}

.field-help a {
    color: var(--ssl-primary-strong);
    font-weight: 900;
}

.csr-textarea {
    min-height: 138px;
    font-family: Consolas, 'Courier New', monospace;
    font-size: 0.82rem;
}

.form-message {
    display: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 0.9rem;
    line-height: 1.45;
}

.form-message.success {
    display: block;
    background: var(--ssl-primary-soft);
    color: var(--ssl-primary-strong);
    border: 1px solid var(--ssl-border-strong);
}

.form-message.error {
    display: block;
    background: #fff1f2;
    color: var(--ssl-danger);
    border: 1px solid #fecdd3;
}

.form-message.info {
    display: block;
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.source-note {
    color: var(--ssl-faint);
    font-size: 0.78rem;
    line-height: 1.5;
}

.store-footer {
    border-top: 1px solid var(--ssl-border);
    background: #ffffff;
    padding: 28px 0;
    color: var(--ssl-muted);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    font-weight: 800;
    font-size: 0.88rem;
}

.footer-credit {
    margin: 10px 0 0;
    font-size: 0.82rem;
    line-height: 1.5;
}

.store-auth-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.46);
    backdrop-filter: blur(10px);
    padding: 18px;
}

.store-auth-modal.open {
    display: flex;
}

.auth-dialog {
    width: min(460px, 100%);
    max-height: calc(100vh - 36px);
    overflow: auto;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid var(--ssl-border);
    padding: 24px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.auth-dialog-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.auth-dialog h2 {
    margin: 0;
    color: var(--ssl-text);
    font-size: 1.28rem;
    line-height: 1.2;
    font-weight: 900;
}

.auth-dialog-head p {
    margin: 6px 0 0;
    color: var(--ssl-muted);
    font-size: 0.84rem;
    line-height: 1.45;
    font-weight: 700;
}

.close-btn {
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    background: #ffffff;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-weight: 900;
    color: var(--ssl-muted);
}

.close-btn:hover {
    border-color: var(--ssl-border-strong);
    color: var(--ssl-primary-strong);
    background: var(--ssl-primary-soft);
}

.auth-tabs {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    width: 100%;
    margin-bottom: 16px;
    border: 1px solid var(--ssl-border);
    border-radius: 10px;
    background: var(--ssl-surface-soft);
    padding: 4px;
}

.auth-tab {
    border: 0;
    border-radius: 8px;
    background: transparent;
    min-height: 36px;
    cursor: pointer;
    font-weight: 900;
    color: var(--ssl-muted);
}

.auth-tab.active {
    background: var(--ssl-primary);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(4, 120, 87, 0.2);
}

.auth-link-row {
    display: flex;
    justify-content: center;
}

.auth-link-btn {
    border: 0;
    background: transparent;
    color: var(--ssl-primary-strong);
    cursor: pointer;
    font: inherit;
    font-size: 0.86rem;
    font-weight: 900;
    padding: 4px 6px;
}

.auth-link-btn:hover {
    text-decoration: underline;
}

.auth-form-note {
    display: grid;
    gap: 4px;
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    background: var(--ssl-surface-soft);
    padding: 12px;
    color: var(--ssl-muted);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.45;
}

.auth-form-note strong {
    color: var(--ssl-text);
    font-size: 0.92rem;
    font-weight: 900;
}

.empty-state {
    border: 1px dashed var(--ssl-border-strong);
    border-radius: 8px;
    background: #ffffff;
    padding: 32px;
    color: var(--ssl-muted);
    text-align: center;
}

.checker-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 22px;
    align-items: start;
}

.checker-panel {
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    background: var(--ssl-surface);
    padding: 18px;
    min-width: 0;
}

.checker-side {
    display: grid;
    gap: 14px;
}

.checker-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px auto;
    gap: 10px;
    align-items: end;
    margin-bottom: 18px;
}

.checker-input {
    font-weight: 800;
}

.checker-result {
    min-height: 260px;
}

.checker-status-card {
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    background: var(--ssl-surface-soft);
    padding: 18px;
    display: grid;
    gap: 16px;
}

.checker-status-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.checker-status-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 900;
}

.checker-domain {
    color: var(--ssl-muted);
    font-size: 0.92rem;
    font-weight: 800;
}

.checker-badge {
    min-height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    font-size: 0.82rem;
    font-weight: 900;
}

.checker-badge.valid {
    background: var(--ssl-primary-soft);
    color: var(--ssl-primary-strong);
}

.checker-badge.expiring,
.checker-badge.not_yet_valid {
    background: #fef3c7;
    color: var(--ssl-amber);
}

.checker-badge.expired,
.checker-badge.hostname_mismatch,
.checker-badge.error {
    background: #fee2e2;
    color: var(--ssl-danger);
}

.checker-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.checker-metric {
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    background: #ffffff;
    padding: 13px;
}

.checker-metric span {
    display: block;
    color: var(--ssl-faint);
    font-size: 0.74rem;
    font-weight: 900;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.checker-metric strong {
    display: block;
    font-size: 0.98rem;
    line-height: 1.35;
}

.checker-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.checker-detail {
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    background: #ffffff;
    padding: 13px;
    min-width: 0;
}

.checker-detail span {
    display: block;
    color: var(--ssl-faint);
    font-size: 0.75rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.checker-detail code,
.san-list code {
    white-space: normal;
    overflow-wrap: anywhere;
}

.san-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.san-list code {
    border: 1px solid var(--ssl-border);
    border-radius: 999px;
    background: #ffffff;
    padding: 5px 9px;
    color: var(--ssl-muted);
    font-size: 0.78rem;
}

.checker-advice {
    border-left: 4px solid var(--ssl-primary);
    background: #ffffff;
    border-radius: 8px;
    padding: 12px;
    color: var(--ssl-muted);
    line-height: 1.55;
}

.csr-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
    gap: 22px;
    align-items: start;
}

.csr-result-stack {
    display: grid;
    gap: 14px;
}

.csr-output-card {
    border: 1px solid var(--ssl-border);
    border-radius: 8px;
    background: var(--ssl-surface-soft);
    padding: 14px;
    min-width: 0;
}

.csr-output-card.danger {
    background: #fff7ed;
    border-color: #fed7aa;
}

.csr-output-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}

.csr-output-head strong,
.csr-output-head span {
    display: block;
}

.csr-output-head span {
    margin-top: 3px;
    color: var(--ssl-faint);
    font-size: 0.78rem;
    font-weight: 800;
}

.csr-output {
    min-height: 220px;
    font-family: Consolas, 'Courier New', monospace;
    font-size: 0.78rem;
    line-height: 1.5;
}

@media (max-width: 1180px) {
    .store-header-inner {
        gap: 10px;
    }

    .store-logo {
        width: 156px;
    }

    .store-nav a,
    .store-action-link {
        min-height: 34px;
        padding: 0 8px;
        font-size: 0.8rem;
    }

    .language-switcher a {
        min-width: 30px;
    }

    .store-auth-btn {
        padding: 0 10px;
    }
}

@media (max-width: 1040px) {
    .store-header-inner {
        height: auto;
        padding: 12px 0;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .store-menu-toggle {
        display: inline-flex;
    }

    .store-mobile-menu {
        width: 100%;
        flex-basis: 100%;
        display: none;
        border-top: 1px solid var(--ssl-border);
        padding-top: 12px;
    }

    .store-header.menu-open .store-mobile-menu {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .store-nav {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
    }

    .store-header-actions {
        width: 100%;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        justify-content: stretch;
        align-items: center;
        gap: 10px;
    }

    .header-language {
        justify-self: start;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        max-height: none;
        padding: 40px 0;
    }

    .catalog-toolbar {
        grid-template-columns: 1fr 1fr;
    }

    .product-grid,
    .brand-grid,
    .type-grid,
    .campaign-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-slide {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .home-slider-viewport {
        min-height: auto;
    }

    .detail-layout {
        grid-template-columns: 1fr;
    }

    .checker-layout,
    .csr-layout,
    .checker-form {
        grid-template-columns: 1fr;
    }

    .checker-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .store-header-inner,
    .store-shell,
    .hero-inner {
        width: min(1180px, calc(100% - 22px));
    }

    .store-logo {
        width: 158px;
    }

    .store-nav,
    .store-header-actions,
    .store-mobile-menu,
    .hero-search,
    .mini-products,
    .stats-row,
    .catalog-toolbar,
    .product-grid,
    .brand-grid,
    .type-grid,
    .campaign-grid,
    .price-tier-list,
    .field-grid,
    .detail-specs {
        grid-template-columns: 1fr;
    }

    .home-slide {
        padding: 20px;
    }

    .home-slide h2 {
        font-size: 1.42rem;
    }

    .home-slide-actions {
        display: grid;
    }

    .home-slide-actions .store-btn {
        width: 100%;
    }

    .home-slide-product {
        min-height: auto;
    }

    .home-slider-controls {
        justify-content: center;
    }

    .campaign-tile {
        min-height: 220px;
    }

    .checker-metrics,
    .checker-detail-grid {
        grid-template-columns: 1fr;
    }

    .store-nav {
        display: grid;
        width: 100%;
    }

    .store-header-actions {
        display: grid;
        width: 100%;
    }

    .store-nav a,
    .store-action-link,
    .hero-search .store-btn,
    .section-head .store-btn {
        width: 100%;
    }

    .store-header-actions .store-btn,
    .store-header-actions .store-action-link,
    .store-auth-actions {
        flex: 1;
        min-width: 0;
    }

    .store-auth-actions {
        width: 100%;
    }

    .store-auth-btn {
        flex: 1;
        padding-inline: 8px;
    }

    .store-header-actions .language-switcher {
        width: 100%;
        justify-content: center;
    }

    .section-head,
    .product-price-row,
    .csr-output-head,
    .footer-grid {
        align-items: stretch;
        flex-direction: column;
    }

    .cert-grid,
    .checker-form,
    .field-grid,
    .price-tier-list {
        grid-template-columns: 1fr;
    }

    .detail-panel,
    .order-panel,
    .content-panel,
    .checker-panel {
        padding: 18px;
    }

    .section {
        padding: 42px 0;
    }

    .hero h1 {
        font-size: 2.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-slider-track,
    .home-slider-arrow,
    .home-slider-dots button,
    .campaign-tile {
        transition: none;
    }
}
