:root {
    --brand-primary: #ff6b00;
    --brand-primary-dark: #e55f00;
    --brand-dark: #08090c;
    --brand-bg: #0e1015;
    --brand-light: #f5f7fa;
    --border-subtle: #252835;
    --text-main: #f9fafb;
    --text-muted: #a1a5b3;
    --card-bg: #151823;
    --accent-soft: rgba(255, 107, 0, 0.12);
    --radius-lg: 18px;
    --radius-xl: 24px;
}

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

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #05060a 0%, #05060a 50%, #10121c 100%);
    color: var(--text-main);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: linear-gradient(180deg, rgba(5, 6, 10, 0.96), rgba(5, 6, 10, 0.92));
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
}

.header-links a + a {
    margin-left: 1rem;
}

.header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 1.75rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, #ffd9b3, #ff6b00);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.logo-title {
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.98rem;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
}

.main-nav a {
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    color: var(--text-muted);
    transition: background 0.18s ease, color 0.18s ease;
}

.main-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Buttons */

.btn,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
    color: #fff;
    box-shadow: 0 12px 22px rgba(255, 107, 0, 0.35);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(255, 107, 0, 0.45);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-main);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn.small,
.btn-ghost.small {
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
}

/* Layout */

.page-main {
    padding: 1.5rem 0 3rem;
}

/* Hero */

.hero {
    padding: 1.5rem 0 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
    gap: 1.75rem;
    align-items: stretch;
}

.hero-card {
    background: radial-gradient(circle at top left, rgba(255, 107, 0, 0.2), rgba(0, 0, 0, 0.9));
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 0.9rem;
}

.hero-title {
    font-size: 2rem;
    line-height: 1.1;
    margin: 0 0 0.75rem;
}

.hero-title span {
    color: var(--brand-primary);
}

.hero-subtitle {
    font-size: 0.95rem;
    max-width: 32rem;
    color: var(--text-muted);
    margin-bottom: 1.3rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-meta strong {
    display: block;
    color: var(--text-main);
    font-size: 0.9rem;
}

.hero-visual {
    background: radial-gradient(circle at top, rgba(255, 107, 0, 0.3), rgba(10, 12, 20, 1));
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-visual-tag {
    display: inline-flex;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.5);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero-visual-main {
    margin: 0.5rem 0 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-visual-main img {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    width: 50%;
    max-height: 220px;
    object-fit: cover;
}

.hero-visual-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-visual-footer {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Sections */

.section {
    padding: 1.5rem 0 0.5rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 600;
}

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

/* Product grid */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.25rem;
}

.product-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.18);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    background: var(--accent-soft);
    color: #ffd0ad;
    border: 1px solid rgba(255, 107, 0, 0.5);
}

.product-body {
    padding: 0.8rem 0.9rem 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.product-category {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 500;
}

.product-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.product-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-top: 0.25rem;
}

.product-price-current {
    font-size: 1rem;
    font-weight: 600;
}

.product-price-old {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-actions {
    margin-top: 0.6rem;
    display: flex;
    gap: 0.5rem;
}

/* Filters */

.filters-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.filter-pill {
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.3);
}

.filter-pill.active {
    background: var(--accent-soft);
    color: #ffd0ad;
    border-color: rgba(255, 107, 0, 0.6);
}

/* Product detail */

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 1.75rem;
    margin-top: 1rem;
}

.product-detail-image {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
}

.product-detail-image img {
    border-radius: 18px;
}

.product-detail-info {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem;
}

.product-detail-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-detail-title {
    margin: 0.35rem 0 0.5rem;
    font-size: 1.4rem;
}

.product-detail-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.product-detail-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.size-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.9rem;
}

.size-pill {
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.8rem;
    cursor: default;
}

/* Forms / contact */

.form-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    margin-top: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-field {
    flex: 1;
    margin-bottom: 1rem;
}

.form-field label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(6, 8, 16, 0.9);
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.9rem;
}

.form-field textarea {
    min-height: 140px;
    resize: vertical;
}

/* Footer */

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem 0 0.75rem;
    background: linear-gradient(180deg, #080910, #050609);
    margin-top: 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    font-size: 0.85rem;
}

.site-footer h4 {
    margin: 0 0 0.6rem;
    font-size: 0.95rem;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li + li {
    margin-top: 0.3rem;
}

.site-footer a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.payment-pill {
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
}

.footer-small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 1.25rem;
    padding-top: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

/* Checkout */

.checkout-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.checkout-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0.75rem 0;
}

.checkout-badge {
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
}

/* Utilities */

.chip {
    display: inline-flex;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Responsive */

@media (max-width: 900px) {
    .hero-grid,
    .product-detail {
        grid-template-columns: minmax(0, 1fr);
    }

    .header-main-inner {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .header-cta {
        order: 2;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .header-top-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.15rem;
    }

    .hero-card,
    .hero-visual {
        padding: 1.25rem;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
