* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0b0b0b;
    --card: #151515;
    --border: #262626;
    --text: #ffffff;
    --text-secondary: #b8b8b8;
    --accent: #e10600;
    --accent-hover: #ff1f1f;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
.logo,
.footer-logo {
    font-family: 'Montserrat', sans-serif;
}

body {
    background:
		radial-gradient(circle at top, rgba(225,6,0,0.06), transparent 30%),
		#0b0b0b;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

section {
    position: relative;
}

.section-head {
    max-width: 760px;
}

.section-head h2 {
    letter-spacing: -0.03em;
}

@media (max-width: 600px) {
    .section-head {
        margin-bottom: 24px;
    }

    .section-head h2 {
        font-size: 30px;
    }
}

/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.65), transparent);
    transition: 0.3s ease;
}

.site-header.scrolled {
    background: rgba(10,10,10,0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    text-decoration: none;
    font-size: 24px;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.04em;
    font-family: 'Montserrat', sans-serif;
}

.logo span {
    color: var(--accent);
}

.menu-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.035);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: 0.25s ease;
}

.menu-btn:hover {
    background: rgba(255,255,255,0.08);
}

.menu-btn span {
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
}

/* SHOP PAGE */

.shop-page {
    padding-top: 88px;
    background: var(--bg);
    min-height: 100vh;
}

.shop-section {
    padding: 34px 20px 80px;
}

.shop-search {
    margin-bottom: 18px;
}

.shop-search input {
    width: 100%;
    height: 56px;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.10);
    color: #fff;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
}

.shop-search input:focus {
    border-color: rgba(225,6,0,0.7);
}

.shop-categories {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 14px;
    margin-bottom: 24px;
}

.shop-categories::-webkit-scrollbar {
    display: none;
}

.shop-categories button {
    flex: 0 0 auto;
    height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.035);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
}

.shop-categories button.active {
    background: var(--accent);
    border-color: var(--accent);
}

.shop-products {
    margin-top: 10px;
}

@media (min-width: 900px) {
    .shop-page {
        padding-top: 110px;
    }

    .shop-section {
        padding: 50px 60px 120px;
    }
}

/* MOBILE MENU */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(18px);
    padding: 120px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 999;
    transition:
		right 0.35s ease,
		opacity 0.35s ease;
}

.mobile-menu {
    opacity: 0;
}

.mobile-menu.active {
    opacity: 1;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    opacity: 0;
    transform: translateX(20px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active a:nth-child(1) {
    transition-delay: 0.05s;
}

.mobile-menu.active a:nth-child(2) {
    transition-delay: 0.10s;
}

.mobile-menu.active a:nth-child(3) {
    transition-delay: 0.15s;
}

.mobile-menu.active a:nth-child(4) {
    transition-delay: 0.20s;
}

.mobile-menu.active a:nth-child(5) {
    transition-delay: 0.25s;
}

.mobile-menu.active a:nth-child(6) {
    transition-delay: 0.30s;
}

/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(rgba(0,0,0,0.62), rgba(0,0,0,0.88)),
        url("../img/hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 120px 20px 60px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 760px;
    animation: fadeUp 1s ease;
}

.hero-kicker {
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 700;
}

.hero h1 {
    font-size: clamp(18px, 10vw, 66px);
    line-height: 0.98;
    margin-bottom: 22px;
    font-weight: 600;
    letter-spacing: -0.05em;
}

.hero-text {
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.btn {
    height: 58px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: 0.25s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #e10600, #ff2a2a);
    color: #fff;
    box-shadow:
        0 10px 35px rgba(225, 6, 0, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 45px rgba(225, 6, 0, 0.34);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-2px);
}

/* QUICK CATEGORIES */

.quick-categories {
    padding: 70px 20px;
    background: var(--bg);
}

.section-head {
    margin-bottom: 28px;
}

.section-head p {
    color: var(--accent);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-head h2 {
    font-size: clamp(28px, 7vw, 48px);
    line-height: 1.1;
    max-width: 700px;
}

.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.category-card {
    text-decoration: none;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 26px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.25s ease;
}

.category-card span {
    font-size: 34px;
    margin-bottom: 22px;
}

.category-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.category-card p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 6, 0, 0.45);
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

@media (min-width: 900px) {
    .quick-categories {
        padding: 100px 60px;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* CUSTOM PAGE */

.custom-page {
    padding-top: 88px;
    background: var(--bg);
    min-height: 100vh;
}

.custom-request-section {
    padding: 34px 20px 80px;
}

.custom-request-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.custom-info-box,
.custom-form {
    background:
        linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
    border: 1px solid rgba(255,255,255,0.08);
    padding: 24px;
}

.custom-info-box h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.custom-info-box p,
.custom-note {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.custom-info-box ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.custom-info-box li {
    position: relative;
    padding-left: 24px;
    color: #fff;
    font-size: 15px;
}

.custom-info-box li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 7px;
}

.custom-form {
    display: grid;
    gap: 12px;
}

.custom-form input,
.custom-form select,
.custom-form textarea {
    width: 100%;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.10);
    color: #fff;
    padding: 0 14px;
    font-size: 15px;
    outline: none;
}

.custom-form input,
.custom-form select {
    height: 52px;
}

.custom-form textarea {
    min-height: 130px;
    padding-top: 14px;
    resize: vertical;
}

.custom-form input:focus,
.custom-form select:focus,
.custom-form textarea:focus {
    border-color: rgba(225,6,0,0.70);
}

.upload-box {
    min-height: 130px;
    border: 1px dashed rgba(255,255,255,0.20);
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    text-align: center;
    padding: 20px;
}

.upload-box input {
    display: none;
}

.upload-box span {
    font-weight: 800;
    margin-bottom: 6px;
}

.upload-box small {
    color: var(--text-secondary);
}

.custom-note {
    background: rgba(225,6,0,0.08);
    border-left: 3px solid var(--accent);
    padding: 14px;
    margin-bottom: 0;
}

@media (min-width: 900px) {
    .custom-page {
        padding-top: 110px;
    }

    .custom-request-section {
        padding: 50px 60px 120px;
    }

    .custom-request-grid {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 28px;
        align-items: start;
    }
}

/* ORDER PAGE */

.order-page {
    padding-top: 88px;
    background: var(--bg);
    min-height: 100vh;
}

.order-section {
    padding: 34px 20px 80px;
}

.order-card {
    background:
        linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
    border: 1px solid rgba(255,255,255,0.08);
    padding: 24px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 34px;
}

.order-header span {
    color: var(--text-secondary);
    font-size: 13px;
}

.order-header h3 {
    font-size: 26px;
    margin-top: 4px;
}

.order-header strong {
    color: var(--accent);
    font-size: 14px;
    text-transform: uppercase;
}

.status-timeline {
    display: grid;
    gap: 26px;
}

.status-step {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 16px;
    position: relative;
}

.status-step span {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.18);
    background: #101010;
    margin-top: 3px;
}

.status-step.done span,
.status-step.active span {
    border-color: var(--accent);
    background: var(--accent);
}

.status-step h4 {
    font-size: 17px;
    margin-bottom: 6px;
}

.status-step p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 900px) {
    .order-page {
        padding-top: 110px;
    }

    .order-section {
        padding: 50px 60px 120px;
    }

    .order-card {
        max-width: 760px;
        padding: 34px;
    }
}

/* CUSTOM SECTION */

.custom-section {
    padding: 34px 20px 78px;
    background: var(--bg);
}

.custom-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    padding: 34px 24px;
    background:
        radial-gradient(circle at top right, rgba(225, 6, 0, 0.22), transparent 38%),
        linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.09);
}

.section-kicker {
    color: var(--accent);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.custom-card h2 {
    font-size: clamp(30px, 8vw, 52px);
    line-height: 1.05;
    margin-bottom: 18px;
}

.custom-card p:not(.section-kicker) {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

@media (min-width: 900px) {
    .custom-section {
        padding: 44px 60px 120px;
    }

    .custom-card {
        padding: 60px;
        max-width: 1180px;
        margin: 0 auto;
    }
}

/* FEATURED PRODUCTS */

.featured-products {
    padding: 34px 20px 78px;
    background: var(--bg);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.product-card {
    text-decoration: none;
    color: #fff;
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    overflow: hidden;
    transition: 0.25s ease;
}

.product-image {
	isolation: isolate;
    height: 230px;
    background: #111;
    overflow: hidden;
}


.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.82;
    transition:
        transform 0.5s ease,
        opacity 0.35s ease;
}

.product-info {
    padding: 22px;
}

.product-top h3 {
    font-size: 21px;
    letter-spacing: -0.02em;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.product-info p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 18px;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-bottom strong {
    font-size: 18px;
}

.product-bottom span {
    font-size: 12px;
    color: #fff;
    background: var(--accent);
    padding: 7px 10px;
    border-radius: 999px;
    font-weight: 700;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 6, 0, 0.45);
}

.product-card:hover img {
    transform: scale(1.08);
    opacity: 1;
}

@media (min-width: 900px) {
    .featured-products {
        padding: 44px 60px 120px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(225,6,0,0.10), transparent 35%);
    opacity: 0;
    transition: 0.3s ease;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    position: relative;
    height: 300px;
}

.product-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.72) 0%,
            rgba(0,0,0,0.18) 45%,
            transparent 100%
        );
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    background: rgba(225,6,0,0.92);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 7px 10px;
    border-radius: 4px;
}

.product-info {
    position: relative;
    z-index: 2;
}

.product-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.product-top span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-colors {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.color {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
}

.color.black {
    background: #111;
}

.color.white {
    background: #fff;
}

.color.red {
    background: #c70000;
}

.color.gray {
    background: #777;
}

.color.active {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.color.disabled {
    opacity: 0.35;
}

.color.disabled::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 1px;
    background: #fff;
    top: 8px;
    left: -2px;
    transform: rotate(-45deg);
}

.product-bottom button {
    width: 42px;
    height: 42px;
    border: none;
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: 0.25s ease;
}

.product-bottom button:hover {
    background: var(--accent);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(225,6,0,0.30);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.35);
}

/* PRODUCT PAGE */

.product-page {
    padding-top: 88px;
    background: var(--bg);
    min-height: 100vh;
}

.product-detail {
    padding: 24px 20px 80px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.product-main-image {
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.product-kicker {
    color: var(--accent);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.product-detail-info h1 {
    font-size: clamp(34px, 9vw, 64px);
    line-height: 1.05;
    margin-bottom: 18px;
}

.product-description {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-price {
    font-size: 28px;
    font-weight: 900;
}

@media (min-width: 900px) {
    .product-page {
        padding-top: 110px;
    }

    .product-detail {
        padding: 50px 60px 110px;
        grid-template-columns: 1.1fr 0.9fr;
        align-items: start;
        gap: 60px;
    }

    .product-main-image img {
        height: 560px;
    }
}

/* PRODUCT OPTIONS */

.product-options {
    margin-top: 34px;
}

.option-group {
    margin-bottom: 28px;
}

.option-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.size-options {
    display: flex;
    gap: 12px;
}

.size-btn {
    min-width: 56px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    transition: 0.25s ease;
}

.size-btn.active {
    background: var(--accent);
    border-color: var(--accent);
}

.quantity-box {
    width: 150px;
    height: 52px;
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.03);
}

.quantity-box button {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-box input {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    color: #fff;
    text-align: center;
    font-size: 16px;
    outline: none;
}

.add-cart-btn {
    width: 100%;
    height: 58px;
    border: none;
    background: linear-gradient(135deg, #e10600, #ff2a2a);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow:
        0 12px 35px rgba(225,6,0,0.25);
}

.add-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 45px rgba(225,6,0,0.35);
}

/* TOAST */

.toast-message {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 24px;
    background: rgba(15,15,15,0.96);
    border-left: 3px solid var(--accent);
    color: #fff;
    padding: 16px 18px;
    z-index: 2000;
    transform: translateY(120px);
    opacity: 0;
    transition: 0.3s ease;
    font-size: 14px;
}

.toast-message.show {
    transform: translateY(0);
    opacity: 1;
}

/* CART PAGE */

.cart-page {
    padding-top: 88px;
    background: var(--bg);
    min-height: 100vh;
}

.cart-section {
    padding: 24px 20px 80px;
}

.cart-items {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
}

.cart-item {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 16px;
    background: #101010;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 14px;
}

.cart-image {
    width: 92px;
    height: 92px;
    background: #080808;
    overflow: hidden;
}

.cart-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.cart-top h3 {
    font-size: 17px;
}

.remove-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: rgba(255,255,255,0.06);
    color: #fff;
    cursor: pointer;
}

.cart-info p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 14px;
}

.cart-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.cart-bottom .quantity-box {
    width: 120px;
    height: 42px;
}

.cart-bottom .quantity-box button {
    width: 38px;
}

.cart-bottom strong {
    font-size: 17px;
}

.cart-summary {
    background:
        linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
    border: 1px solid rgba(255,255,255,0.08);
    padding: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--text-secondary);
    font-size: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.summary-row strong {
    color: #fff;
}

.summary-row.total {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    border-bottom: none;
    margin-top: 8px;
}

.checkout-btn {
    margin-top: 22px;
    width: 100%;
    height: 58px;
    background: linear-gradient(135deg, #e10600, #ff2a2a);
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

@media (min-width: 900px) {
    .cart-page {
        padding-top: 110px;
    }

    .cart-section {
        padding: 50px 60px 110px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .cart-item {
        grid-template-columns: 130px 1fr;
        padding: 18px;
    }

    .cart-image {
        width: 130px;
        height: 130px;
    }
}

/* WHY SECTION */

.why-section {
    padding: 34px 20px 78px;
    background: var(--bg);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.why-card {
    background:
        linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 26px;
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

@media (min-width: 900px) {
    .why-section {
        padding: 44px 60px 120px;
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* MATERIALS SECTION */

.materials-section {
    padding: 34px 20px 78px;
    background: var(--bg);
}

.materials-card {
    background:
        linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 28px;
}

.materials-content h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.materials-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 22px;
}

.materials-content ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.materials-content li {
    color: #fff;
    font-size: 15px;
    padding-left: 26px;
    position: relative;
}

.materials-content li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 7px;
}

@media (min-width: 900px) {
    .materials-section {
        padding: 44px 60px 120px;
    }

    .materials-card {
        padding: 46px;
    }
}

/* SHIPPING SECTION */

.shipping-section {
    padding: 34px 20px 78px;
    background: var(--bg);
}

.shipping-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.shipping-card {
    background: #101010;
    border-left: 3px solid var(--accent);
    padding: 24px;
}

.shipping-card h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.shipping-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

@media (min-width: 900px) {
    .shipping-section {
        padding: 44px 60px 120px;
    }

    .shipping-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* REVIEWS SECTION */

.reviews-section {
    padding: 34px 20px 78px;
    background: var(--bg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.review-card {
    background:
        linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
    border: 1px solid rgba(255,255,255,0.08);
    padding: 24px;
}

.review-stars {
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 18px;
    font-size: 15px;
}

.review-card p {
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 15px;
    margin-bottom: 20px;
}

.review-card strong {
    color: #fff;
    font-size: 15px;
}

@media (min-width: 900px) {
    .reviews-section {
        padding: 44px 60px 120px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* FOOTER */

.site-footer {
    padding: 60px 20px 30px;
    background: #070707;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 14px;
}

.footer-logo span {
    color: var(--accent);
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 320px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #777;
    font-size: 14px;
}

@media (min-width: 900px) {

    .site-footer {
        padding: 80px 60px 40px;
    }

    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
    }

}

/* CHECKOUT PAGE */

.checkout-page {
    padding-top: 88px;
    background: var(--bg);
    min-height: 100vh;
}

.checkout-section {
    padding: 24px 20px 80px;
}

.checkout-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.checkout-block,
.checkout-summary {
    background:
        linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
    border: 1px solid rgba(255,255,255,0.08);
    padding: 24px;
}

.checkout-block h3,
.checkout-summary h3 {
    font-size: 20px;
    margin-bottom: 18px;
}

.checkout-block input {
    width: 100%;
    height: 52px;
    margin-bottom: 12px;
    padding: 0 14px;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.10);
    color: #fff;
    outline: none;
    font-size: 15px;
}

.checkout-block input:focus {
    border-color: rgba(225,6,0,0.70);
}

.shipping-option {
    display: grid;
    grid-template-columns: 22px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 16px;
    margin-bottom: 12px;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
}

.shipping-option.active {
    border-color: rgba(225,6,0,0.75);
}

.shipping-option input {
    accent-color: var(--accent);
}

.shipping-option span {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.shipping-option strong {
    font-size: 15px;
}

.shipping-option small {
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.4;
}

.shipping-option b {
    font-size: 14px;
}

.pay-btn {
    width: 100%;
    height: 58px;
    margin-top: 22px;
    border: none;
    background: linear-gradient(135deg, #e10600, #ff2a2a);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

@media (min-width: 900px) {
    .checkout-page {
        padding-top: 110px;
    }

    .checkout-section {
        padding: 50px 60px 110px;
        max-width: 1120px;
        margin: 0 auto;
    }

    .checkout-form {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: start;
    }

    .checkout-summary {
        position: sticky;
        top: 130px;
    }
}

/* DESKTOP */

@media (min-width: 900px) {

    .site-header {
        padding: 26px 60px;
    }

    .hero {
        padding: 160px 60px 100px;
    }

	.hero::before {
		content: "";
		position: absolute;
		inset: 0;
		background:
			radial-gradient(circle at top right, rgba(225, 6, 0, 0.18), transparent 35%),
			radial-gradient(circle at bottom left, rgba(255,255,255,0.04), transparent 30%);
		z-index: 1;
	}

    .hero-actions {
        flex-direction: row;
    }

    .btn {
        width: 240px;
    }

    .menu-btn {
        display: none;
    }

    .mobile-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        flex-direction: row;
        gap: 34px;
        max-width: none;
        backdrop-filter: none;
    }

    .mobile-menu a {
        font-size: 15px;
        color: rgba(255,255,255,0.85);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.quick-categories,
.featured-products,
.custom-section,
.why-section,
.materials-section,
.shipping-section,
.reviews-section {
    position: relative;
}

.quick-categories::before,
.featured-products::before,
.custom-section::before,
.why-section::before,
.materials-section::before,
.shipping-section::before,
.reviews-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    height: 1px;
    background:
        linear-gradient(
            to right,
            transparent,
            rgba(255,255,255,0.05),
            transparent
        );
}