/* ================================================
   Horizon Tee — Modern UI
   ================================================ */

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

:root {
    --bg: #fafafa;
    --surface: #ffffff;
    --border: #e5e5e5;
    --border-hover: #d0d0d0;
    --text: #1a1a1a;
    --text-secondary: #71717a;
    --text-muted: #a1a1aa;
    --accent: #dc2626;
    --accent-hover: #b91c1c;
    --primary: #18181b;
    --primary-hover: #3f3f46;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-lg: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --transition: 150ms ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    -webkit-font-smoothing: antialiased;
}

/* ---- Header ---- */

header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    width: 100%
}

.basket-link {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    text-decoration: none;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.basket-link:hover {
    background: #f4f4f5;
}

.basket-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
}

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

.home-link:hover {
    opacity: 0.7;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 4px;
}

/* ---- Layout ---- */

#split-layout {
    display: flex;
    gap: 28px;
    width: 100%;
    max-width: 1280px;
    flex: 1;
    min-height: 0;
}

#left-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

#right-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* ---- Steps bar ---- */

#steps-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 24px;
    max-width: 480px;
    width: 100%;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.35;
    transition: opacity var(--transition);
    cursor: default;
}

.step.active {
    opacity: 1;
}

.step.done {
    opacity: 0.7;
    cursor: pointer;
}

.step.done:hover {
    opacity: 1;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: all var(--transition);
}

.step.active .step-num {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.step.done .step-num {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

.step-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
}

.step-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 0 12px;
    min-width: 24px;
    transition: background var(--transition);
}

.step-line.done {
    background: var(--accent);
}

/* ---- Upload row ---- */

#upload-row {
    max-height: 15rem;
    display: flex;
    gap: 14px;
    align-items: stretch;
}

/* ---- Upload section ---- */

#upload-section {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

/* ---- Upload thumbnail ---- */

#upload-thumb {
    display: flex;
    flex-direction: column;
    flex: 1;
}

#thumb-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.78rem;
    white-space: nowrap;
}

/* ---- Dropzone ---- */

#dropzone {
    height: 100%;
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 48px 24px;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
    background: var(--surface);
    text-align: center;
}

#dropzone:hover {
    border-color: var(--border-hover);
    background: #fafafa;
}

#dropzone.dragover {
    border-color: var(--accent);
    background: #fef2f2;
}

.dropzone-icon {
    color: var(--text-muted);
    margin-bottom: 12px;
}

.dropzone-main {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.dropzone-sub {
    color: var(--text-muted);
    font-size: 0.85rem;
}

#browse-btn {
    background: none;
    border: none;
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.85rem;
    font-family: inherit;
}

#browse-btn:hover {
    text-decoration: underline;
}

.dropzone-formats {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 10px;
    opacity: 0.7;
}

/* ---- Image preview ---- */

#preview-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

#preview-wrapper #preview,
#preview-wrapper #horizon-overlay {
    transform-origin: center center;
    will-change: transform;
}

#preview {
    display: block;
    width: 100%;
    max-height: 480px;
    object-fit: contain;
}

#horizon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    touch-action: none;
}

/* ---- Edit hint ---- */

#edit-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.01em;
    padding: 0 2px;
}

/* ---- Buttons ---- */

#action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 24px;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: inherit;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn-accent:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border);
}

.btn-ghost:hover {
    background: #f4f4f5;
    border-color: var(--border-hover);
    color: var(--text);
}

.btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* ---- Loading ---- */

#loading {
    text-align: center;
    padding: 24px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--border);
    border-top-color: var(--text);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---- 3D preview ---- */

#three-container {
    flex: 1;
    min-height: 500px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: grab;
    background: #f4f3f1;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

#three-container:active {
    cursor: grabbing;
}

#three-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

#placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 100%;
    min-height: 500px;
}

#placeholder p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hint {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 8px;
    text-align: center;
}

/* ---- Variant selectors ---- */

.variant-selectors {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    align-items: center;
}

.variant-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.variant-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pill-group {
    display: flex;
    gap: 4px;
}

.pill {
    padding: 5px 12px;
    font-size: 0.78rem;
    font-weight: 500;
    font-family: inherit;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: var(--surface);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}

.pill:hover {
    border-color: var(--border-hover);
    color: var(--text);
}

.pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ---- Checkout button ---- */

.btn-checkout {
    margin-top: 12px;
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
}

/* ---- Checkout page ---- */

.checkout-layout {
    display: flex;
    gap: 48px;
    width: 100%;
    max-width: 960px;
    flex: 1;
    align-items: flex-start;
}

.checkout-preview {
    flex: 1;
    min-width: 0;
}

.checkout-section-title {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.basket-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.basket-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    transition: box-shadow var(--transition);
}

.basket-item:hover {
    box-shadow: var(--shadow);
}

.basket-item-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 6px;
    background: #f4f3f1;
    flex-shrink: 0;
}

.basket-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.basket-item-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

.basket-item-variants {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin: 2px 0;
}

.pill--sm {
    padding: 3px 8px;
    font-size: 0.7rem;
}

.basket-item-variant {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.basket-item-price {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.basket-item-remove {
    background: none;
    border: none;
    font-size: 1.3rem;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color var(--transition), background var(--transition);
}

.basket-item-remove:hover {
    color: var(--accent);
    background: #fef2f2;
}

.basket-empty {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-muted);
    border: 2px dashed var(--border);
    border-radius: var(--radius);
}

.basket-empty p {
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.checkout-details {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkout-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.checkout-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ---- Address forms ---- */

#checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.addr-section {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.addr-legend {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    padding: 0 4px;
}

/* Floating-label field */
.field {
    position: relative;
    flex: 1;
    min-width: 0;
}

.field input {
    width: 100%;
    padding: 14px 12px 6px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.88rem;
    color: var(--text);
    background: var(--surface);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.field label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.88rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all var(--transition);
    transform-origin: left center;
}

.field input:focus,
.field input:not(:placeholder-shown) {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(24, 24, 27, 0.08);
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label {
    top: 6px;
    transform: translateY(0);
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Invisible placeholder to trigger :not(:placeholder-shown) */
.field input::placeholder {
    color: transparent;
}

.field--sm {
    flex: 0 0 90px;
}

.field-row {
    display: flex;
    gap: 10px;
}

/* Same-as-shipping toggle */
.same-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-secondary);
    user-select: none;
}

.same-toggle input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    cursor: pointer;
}

/* Billing fields collapse */
.billing-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: opacity var(--transition);
}

.billing-fields--hidden {
    display: none;
}

.checkout-line-items {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.line-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.line-item:last-child {
    border-bottom: none;
}

.line-item-total {
    font-weight: 600;
    color: var(--text);
    background: var(--bg);
}

.btn-pay {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 4px;
}

.checkout-secure {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.checkout-back {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
}

.checkout-back:hover {
    color: var(--text);
    text-decoration: underline;
}

/* ---- Success page ---- */

.success-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    width: 100%;
}

.success-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 48px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 420px;
}

.success-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
}

.success-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ---- Admin page ---- */

.admin-login[hidden] {
    display: none;
}

.admin-login {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    width: 100%;
}

.admin-login-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 340px;
    text-align: center;
}

.admin-login-card h2 {
    font-size: 1.15rem;
    font-weight: 700;
}

.admin-login-card input {
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.88rem;
    color: var(--text);
    background: var(--bg);
    text-align: center;
}

.admin-login-card input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(24, 24, 27, 0.08);
}

.admin-error {
    color: var(--accent);
    font-size: 0.82rem;
}

.admin-orders {
    width: 100%;
    max-width: 860px;
    flex: 1;
}

.admin-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.admin-filters {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.admin-search {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.85rem;
    color: var(--text);
    background: var(--surface);
    transition: border-color var(--transition);
}

.admin-search:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(24, 24, 27, 0.08);
}

.admin-stats {
    display: flex;
    gap: 16px;
}

.admin-stat {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.admin-stat--warn {
    color: var(--accent);
}

.admin-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 48px;
    font-size: 0.95rem;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.order-card:hover {
    box-shadow: var(--shadow);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg);
    cursor: pointer;
    user-select: none;
    transition: background var(--transition);
}

.order-card--expanded .order-header {
    border-bottom: 1px solid var(--border);
}

.order-header:hover {
    background: #f0f0f0;
}

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

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

.order-header-name {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.order-header-total {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
}

.order-expand-icon {
    font-size: 0.65rem;
    color: var(--text-muted);
    width: 16px;
    text-align: center;
}

.order-id {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
}

.order-date {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.order-status {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 10px;
    border-radius: 100px;
}

.status--paid {
    background: #fef3c7;
    color: #92400e;
}

.status--sent {
    background: #d1fae5;
    color: #065f46;
}

.order-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 0.6fr;
    gap: 16px;
    padding: 14px 16px;
}

.order-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.order-value {
    font-size: 0.84rem;
    color: var(--text);
    word-break: break-word;
}

.order-value--sub {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.order-value--bold {
    font-weight: 700;
}

.order-designs {
    padding: 10px 16px;
    border-top: 1px solid var(--border);
}

.order-designs-grid {
    display: flex;
    gap: 8px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.design-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.order-design-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 6px;
    background: #f4f3f1;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: box-shadow var(--transition);
}

.order-design-img:hover {
    box-shadow: var(--shadow-lg);
}

.design-links {
    display: flex;
    gap: 6px;
}

.design-dl {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 2px 6px;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: all var(--transition);
}

.design-dl:hover {
    color: var(--text);
    border-color: var(--primary);
    background: var(--bg);
}

.order-actions {
    padding: 10px 16px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
}

/* ---- Responsive ---- */

@media (max-width: 768px) {
    body {
        padding: 20px 16px;
    }

    #split-layout {
        flex-direction: column;
        gap: 20px;
    }

    #right-panel {
        min-height: 420px;
    }

    h1 {
        font-size: 1.25rem;
    }

    .step-label {
        display: none;
    }

    #steps-bar {
        margin-bottom: 16px;
    }

    .checkout-layout {
        flex-direction: column;
        gap: 24px;
    }

    .checkout-details {
        flex: 1;
        width: 100%;
    }

    .home-steps {
        grid-template-columns: 1fr;
    }

    .home-product {
        flex-direction: column;
        text-align: center;
    }

    .home-product-img {
        flex: none;
        max-width: 280px;
    }

    .home-product-details {
        text-align: left;
    }
}


/* ---- Home page ---- */

.home-cta {
    margin-bottom: 40px;
    font-size: 1.05rem;
    padding: 14px 36px;
}

.home-section {
    width: 100%;
    max-width: 960px;
    padding: 0 24px;
    margin: 0 auto 48px;
}

.home-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text);
}

.home-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.home-step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
}

.home-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 14px;
}

.home-step h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.home-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Sample product */

.home-product {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.home-product-img {
    flex: 0 0 320px;
}

.home-product-img img {
    width: 100%;
    border-radius: var(--radius-sm);
}

.home-product-info {
    flex: 1;
}

.home-product-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.home-product-desc {
    color: var(--text-secondary);
    font-size: 0.925rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.home-product-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.home-product-details {
    list-style: none;
    margin-bottom: 24px;
}

.home-product-details li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 4px 0;
}

.home-product-details li::before {
    content: "\2713\00a0";
    color: var(--accent);
    font-weight: 600;
}

/* Footer */

.site-footer {
    text-align: center;
    padding: 32px 24px;
    color: var(--text-muted);
    font-size: 0.8rem;
    width: 100%;
}

