* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #050505;
    color: #f5f5f5;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 28px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 20;
    mix-blend-mode: difference;
}

.logo {
    font-size: 15px;
    letter-spacing: 0.22em;
    font-weight: 500;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    font-size: 11px;
    letter-spacing: 0.18em;
    color: #e6e6e6;
    transition: opacity 0.25s ease;
}

.nav a:hover {
    opacity: 0.55;
}

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(80,80,80,0.28), transparent 38%),
        linear-gradient(180deg, #070707 0%, #050505 55%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
}

.hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    filter: blur(0.2px);
}

.hero::after {
    content: "SAINT TÉMARI";
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13vw;
    letter-spacing: 0.08em;
    white-space: nowrap;
    color: rgba(255,255,255,0.025);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 5;
    animation: fadeUp 1.1s ease forwards;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 0.42em;
    color: #a7a7a7;
    margin-bottom: 28px;
}

h1 {
    font-size: clamp(46px, 9vw, 128px);
    line-height: 0.9;
    letter-spacing: 0.12em;
    font-weight: 400;
    margin-bottom: 24px;
}

.subtitle {
    font-size: 14px;
    letter-spacing: 0.48em;
    color: #d8d8d8;
    margin-bottom: 48px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    min-width: 170px;
    border: 1px solid #f5f5f5;
    padding: 15px 26px;
    font-size: 11px;
    letter-spacing: 0.18em;
    transition: 0.25s ease;
}

.btn:hover {
    background: #f5f5f5;
    color: #050505;
}

.btn.secondary {
    border-color: #555;
    color: #bfbfbf;
}

.btn.secondary:hover {
    border-color: #f5f5f5;
    background: transparent;
    color: #f5f5f5;
}

.bottom-line {
    position: absolute;
    left: 44px;
    right: 44px;
    bottom: 34px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 10px;
    letter-spacing: 0.22em;
    color: #777;
    z-index: 6;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 760px) {
    .header {
        padding: 22px 20px;
    }

    .nav {
        display: none;
    }

    .logo {
        font-size: 13px;
    }

    h1 {
        letter-spacing: 0.06em;
    }

    .subtitle {
        font-size: 12px;
        letter-spacing: 0.25em;
    }

    .bottom-line {
        left: 20px;
        right: 20px;
        bottom: 24px;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

.drop-page {
    min-height: 100vh;
    background: #050505;
    padding: 150px 44px 70px;
}

.drop-hero {
    max-width: 980px;
    margin: 0 auto 90px;
    text-align: center;
}

.drop-hero h2 {
    font-size: clamp(42px, 8vw, 112px);
    font-weight: 400;
    letter-spacing: 0.12em;
    line-height: 0.95;
    margin-bottom: 28px;
}

.drop-description {
    max-width: 620px;
    margin: 0 auto;
    color: #8f8f8f;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1500px;
    margin: 0 auto;
}

.product-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #090909;
    transition: 0.25s ease;
}

.product-card:hover {
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-4px);
}

.product-link {
    display: block;
}

.product-image {
    height: 440px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.01)),
        radial-gradient(circle at center, #1d1d1d 0%, #090909 62%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image::after {
    content: "";
    position: absolute;
    width: 72%;
    height: 72%;
    border: 1px solid rgba(255,255,255,0.045);
    border-radius: 50%;
}

.product-image span {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.18);
    font-size: 42px;
    letter-spacing: 0.2em;
}

.product-info {
    padding: 20px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-code {
    font-size: 11px;
    letter-spacing: 0.26em;
    color: #777;
    margin-bottom: 12px;
}

.product-info h3 {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.16em;
    line-height: 1.4;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 34px;
    color: #8d8d8d;
    font-size: 10px;
    letter-spacing: 0.16em;
}

.drop-footer {
    margin-top: 80px;
    text-align: center;
    color: #777;
    font-size: 10px;
    letter-spacing: 0.26em;
}

@media (max-width: 1150px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-image {
        height: 380px;
    }
}

@media (max-width: 700px) {
    .drop-page {
        padding: 120px 18px 50px;
    }

    .drop-hero {
        margin-bottom: 54px;
    }

    .drop-description {
        font-size: 11px;
        letter-spacing: 0.08em;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .product-image {
        height: 360px;
    }

    .product-info {
        min-height: 130px;
    }

    .product-meta {
        flex-direction: column;
        gap: 8px;
    }
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(15%) contrast(105%);
    transition: 0.35s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.035);
}

.sold-out {
    opacity: 0.55;
}

.sold-out-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    border: 1px solid rgba(255,255,255,0.45);
    padding: 9px 12px;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: #f5f5f5;
    background: rgba(0,0,0,0.45);
}

.empty-drop {
    grid-column: 1 / -1;
    min-height: 260px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #777;
    letter-spacing: 0.2em;
    text-align: center;
}

.empty-drop p {
    font-size: 14px;
    margin-bottom: 12px;
}

.empty-drop span {
    font-size: 10px;
}

.product-detail-page {
    min-height: 100vh;
    background: #050505;
    padding: 120px 44px 70px;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 44px;
    max-width: 1500px;
    margin: 0 auto;
}

.product-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.product-gallery-image {
    min-height: 760px;
    background: #090909;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}

.product-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(10%) contrast(105%);
}

.product-gallery-placeholder {
    min-height: 760px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.01)),
        radial-gradient(circle at center, #1d1d1d 0%, #090909 62%);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery-placeholder span {
    color: rgba(255,255,255,0.2);
    font-size: clamp(52px, 10vw, 130px);
    letter-spacing: 0.2em;
}

.product-panel {
    position: sticky;
    top: 120px;
    align-self: start;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(10,10,10,0.82);
    padding: 34px;
}

.product-detail-code {
    font-size: 11px;
    letter-spacing: 0.28em;
    color: #7c7c7c;
    margin-bottom: 18px;
}

.product-detail-title {
    font-size: clamp(28px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: 0.11em;
    font-weight: 400;
    margin-bottom: 28px;
}

.product-detail-price {
    font-size: 18px;
    letter-spacing: 0.14em;
    margin-bottom: 26px;
}

.product-detail-label {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.16);
    padding: 10px 12px;
    font-size: 10px;
    letter-spacing: 0.18em;
    color: #bdbdbd;
    margin-bottom: 34px;
}

.product-detail-block {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 22px;
    margin-top: 22px;
}

.product-detail-block span,
.size-block > span {
    display: block;
    font-size: 10px;
    letter-spacing: 0.24em;
    color: #777;
    margin-bottom: 14px;
}

.product-detail-block p {
    color: #c7c7c7;
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 0.06em;
}

.product-form {
    margin-top: 32px;
}

.size-block {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    margin-bottom: 26px;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-option input {
    display: none;
}

.size-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.18);
    color: #dedede;
    font-size: 12px;
    letter-spacing: 0.14em;
    cursor: pointer;
    transition: 0.2s ease;
}

.size-option input:checked + span,
.size-option span:hover {
    background: #f5f5f5;
    color: #050505;
    border-color: #f5f5f5;
}

.no-sizes {
    color: #777;
    letter-spacing: 0.18em;
    font-size: 11px;
}

.add-to-cart-btn {
    width: 100%;
    height: 56px;
    background: #f5f5f5;
    color: #050505;
    border: none;
    font-size: 12px;
    letter-spacing: 0.22em;
    cursor: pointer;
    transition: 0.25s ease;
}

.add-to-cart-btn:hover {
    background: #cfcfcf;
}

.add-to-cart-btn.disabled {
    background: #333;
    color: #777;
    cursor: not-allowed;
}

.product-service-info {
    margin-top: 28px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #666;
    font-size: 9px;
    letter-spacing: 0.16em;
}

@media (max-width: 1000px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
    }

    .product-panel {
        position: static;
    }

    .product-gallery-image,
    .product-gallery-placeholder {
        min-height: 560px;
    }
}

@media (max-width: 700px) {
    .product-detail-page {
        padding: 100px 18px 44px;
    }

    .product-panel {
        padding: 24px;
    }

    .product-gallery-image,
    .product-gallery-placeholder {
        min-height: 420px;
    }

    .product-service-info {
        flex-direction: column;
        gap: 8px;
    }
}

.cart-page {
    min-height: 100vh;
    background: #050505;
    padding: 140px 44px 70px;
}

.cart-header {
    max-width: 1500px;
    margin: 0 auto 54px;
}

.cart-header h1 {
    font-size: clamp(44px, 8vw, 112px);
    font-weight: 400;
    letter-spacing: 0.14em;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 34px;
    max-width: 1500px;
    margin: 0 auto;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cart-item {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 24px;
    border: 1px solid rgba(255,255,255,0.09);
    background: #090909;
    padding: 18px;
}

.cart-item-image {
    height: 220px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.01)),
        radial-gradient(circle at center, #1d1d1d 0%, #090909 62%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-image span {
    color: rgba(255,255,255,0.18);
    font-size: 32px;
    letter-spacing: 0.16em;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-code {
    font-size: 10px;
    letter-spacing: 0.24em;
    color: #777;
    margin-bottom: 12px;
}

.cart-item-info h2 {
    font-size: 24px;
    letter-spacing: 0.13em;
    font-weight: 400;
    margin-bottom: 28px;
}

.cart-item-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    color: #999;
    font-size: 11px;
    letter-spacing: 0.16em;
    margin-bottom: 24px;
}

.remove-link {
    width: fit-content;
    color: #777;
    font-size: 10px;
    letter-spacing: 0.2em;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 4px;
}

.remove-link:hover {
    color: #f5f5f5;
}

.cart-summary {
    position: sticky;
    top: 120px;
    align-self: start;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(10,10,10,0.9);
    padding: 30px;
}

.summary-title {
    font-size: 12px;
    letter-spacing: 0.24em;
    margin-bottom: 28px;
}

.summary-row,
.summary-total {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    font-size: 12px;
    letter-spacing: 0.14em;
}

.summary-row.muted {
    color: #777;
}

.summary-total {
    font-size: 14px;
}

.summary-total strong {
    font-weight: 400;
}

.checkout-btn {
    width: 100%;
    height: 56px;
    background: #f5f5f5;
    color: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    letter-spacing: 0.22em;
    margin-top: 18px;
    transition: 0.25s ease;
}

.checkout-btn:hover {
    background: #cfcfcf;
}

.summary-note {
    margin-top: 22px;
    color: #777;
    font-size: 10px;
    line-height: 1.7;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.empty-cart {
    min-height: 420px;
    max-width: 1500px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.empty-cart p {
    color: #777;
    letter-spacing: 0.24em;
}

@media (max-width: 1050px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }
}

@media (max-width: 700px) {
    .cart-page {
        padding: 110px 18px 44px;
    }

    .cart-item {
        grid-template-columns: 1fr;
    }

    .cart-item-image {
        height: 300px;
    }

    .cart-item-info h2 {
        font-size: 20px;
    }

    .cart-item-meta {
        flex-direction: column;
        gap: 10px;
    }
}

.checkout-page,
.success-page {
    min-height: 100vh;
    background: #050505;
    padding: 140px 44px 70px;
}

.checkout-header {
    max-width: 1500px;
    margin: 0 auto 54px;
}

.checkout-header h1,
.success-card h1 {
    font-size: clamp(44px, 8vw, 112px);
    font-weight: 400;
    letter-spacing: 0.14em;
}

.checkout-layout {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 34px;
}

.checkout-form {
    border: 1px solid rgba(255,255,255,0.09);
    background: #090909;
    padding: 34px;
}

.form-section {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 34px;
    margin-bottom: 34px;
}

.form-section-title {
    font-size: 12px;
    letter-spacing: 0.24em;
    margin-bottom: 28px;
}

.checkout-form label {
    display: block;
    margin-bottom: 22px;
}

.checkout-form label span {
    display: block;
    color: #777;
    font-size: 10px;
    letter-spacing: 0.22em;
    margin-bottom: 10px;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
    width: 100%;
    background: #050505;
    color: #f5f5f5;
    border: 1px solid rgba(255,255,255,0.16);
    padding: 16px 14px;
    font-size: 14px;
    outline: none;
    font-family: Arial, Helvetica, sans-serif;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
    border-color: rgba(255,255,255,0.55);
}

.checkout-error {
    border: 1px solid rgba(255,255,255,0.35);
    padding: 16px;
    margin-bottom: 24px;
    color: #f5f5f5;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.place-order-btn {
    width: 100%;
    height: 58px;
    background: #f5f5f5;
    color: #050505;
    border: none;
    font-size: 12px;
    letter-spacing: 0.22em;
    cursor: pointer;
}

.place-order-btn:hover {
    background: #cfcfcf;
}

.checkout-summary {
    position: sticky;
    top: 120px;
    align-self: start;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(10,10,10,0.9);
    padding: 30px;
}

.checkout-products {
    margin-bottom: 24px;
}

.checkout-product {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
}

.checkout-product p {
    font-size: 11px;
    letter-spacing: 0.22em;
    color: #777;
    margin-bottom: 8px;
}

.checkout-product span {
    display: block;
    font-size: 12px;
    letter-spacing: 0.13em;
    margin-bottom: 8px;
}

.checkout-product small {
    color: #777;
    font-size: 10px;
    letter-spacing: 0.12em;
}

.checkout-product strong {
    font-weight: 400;
    font-size: 12px;
    white-space: nowrap;
}

.success-page {
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-card {
    width: min(760px, 100%);
    border: 1px solid rgba(255,255,255,0.1);
    background: #090909;
    padding: 52px;
    text-align: center;
}

.success-text {
    max-width: 520px;
    margin: 24px auto 34px;
    color: #9a9a9a;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.success-order {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    font-size: 12px;
    letter-spacing: 0.18em;
}

.success-order span {
    color: #777;
}

.success-order strong {
    font-weight: 400;
}

.success-card .btn {
    display: inline-flex;
    margin-top: 34px;
}

@media (max-width: 1050px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }
}

@media (max-width: 700px) {
    .checkout-page,
    .success-page {
        padding: 110px 18px 44px;
    }

    .checkout-form,
    .checkout-summary,
    .success-card {
        padding: 24px;
    }

    .checkout-product {
        flex-direction: column;
        gap: 12px;
    }
}

/* CHECKOUT PREMIUM V2 */

.checkout-v2 {
    min-height: 100vh;
    background:
        radial-gradient(circle at 15% 10%, rgba(255,255,255,0.055), transparent 34%),
        linear-gradient(180deg, #050505 0%, #020202 100%);
    color: #f5f5f5;
    padding: 140px 44px 80px;
}

.checkout-v2-header {
    max-width: 1500px;
    margin: 0 auto 64px;
}

.checkout-v2-header p {
    color: #777;
    font-size: 11px;
    letter-spacing: 0.34em;
    margin-bottom: 22px;
}

.checkout-v2-header h1 {
    font-size: clamp(56px, 9vw, 132px);
    line-height: 0.9;
    letter-spacing: 0.12em;
    font-weight: 400;
    margin-bottom: 24px;
}

.checkout-v2-header span {
    color: #8f8f8f;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.checkout-v2-layout {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 34px;
    align-items: start;
}

.checkout-v2-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.checkout-v2-card {
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(10,10,10,0.92);
    padding: 34px;
}

.checkout-v2-card-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
}

.checkout-v2-card-head span {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 11px;
    letter-spacing: 0.12em;
}

.checkout-v2-card-head h2 {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.28em;
}

.checkout-v2-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.checkout-v2-form label {
    display: block;
}

.checkout-v2-form label span {
    display: block;
    color: #777;
    font-size: 10px;
    letter-spacing: 0.22em;
    margin-bottom: 10px;
}

.checkout-v2-form input,
.checkout-v2-form select,
.checkout-v2-form textarea {
    width: 100%;
    min-height: 54px;
    background: #050505;
    color: #f5f5f5;
    border: 1px solid rgba(255,255,255,0.16);
    padding: 15px 16px;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    outline: none;
    border-radius: 0;
    transition: 0.2s ease;
}

.checkout-v2-form textarea {
    min-height: 120px;
    resize: vertical;
}

.checkout-v2-form input::placeholder,
.checkout-v2-form textarea::placeholder {
    color: #5f5f5f;
}

.checkout-v2-form input:focus,
.checkout-v2-form select:focus,
.checkout-v2-form textarea:focus {
    border-color: rgba(255,255,255,0.65);
    background: #080808;
}

.checkout-v2-full {
    margin-top: 22px;
}

.checkout-v2-button {
    width: 100%;
    height: 62px;
    background: #f5f5f5;
    color: #050505;
    border: none;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 0.24em;
    transition: 0.25s ease;
}

.checkout-v2-button:hover {
    background: #d7d7d7;
}

.checkout-v2-error {
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.04);
    padding: 18px 20px;
    color: #f5f5f5;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.checkout-v2-summary {
    position: sticky;
    top: 120px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(10,10,10,0.96);
    padding: 30px;
}

.checkout-v2-summary-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.checkout-v2-summary-head p {
    font-size: 12px;
    letter-spacing: 0.24em;
}

.checkout-v2-summary-head span {
    color: #777;
    font-size: 10px;
    letter-spacing: 0.18em;
}

.checkout-v2-products {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 24px;
}

.checkout-v2-product {
    display: grid;
    grid-template-columns: 76px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.checkout-v2-product-image {
    width: 76px;
    height: 92px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.01)),
        radial-gradient(circle at center, #1d1d1d 0%, #090909 62%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.checkout-v2-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-v2-product-image span {
    color: rgba(255,255,255,0.18);
    font-size: 15px;
    letter-spacing: 0.12em;
}

.checkout-v2-product-info p {
    color: #777;
    font-size: 10px;
    letter-spacing: 0.22em;
    margin-bottom: 8px;
}

.checkout-v2-product-info h3 {
    font-size: 12px;
    line-height: 1.35;
    font-weight: 400;
    letter-spacing: 0.13em;
    margin-bottom: 8px;
}

.checkout-v2-product-info span {
    color: #777;
    font-size: 9px;
    letter-spacing: 0.14em;
}

.checkout-v2-product strong {
    font-size: 11px;
    font-weight: 400;
    white-space: nowrap;
    letter-spacing: 0.1em;
}

.checkout-v2-total-row,
.checkout-v2-grand-total {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 12px;
    letter-spacing: 0.16em;
}

.checkout-v2-total-row span,
.checkout-v2-grand-total span {
    color: #8a8a8a;
}

.checkout-v2-total-row strong,
.checkout-v2-grand-total strong {
    font-weight: 400;
}

.checkout-v2-total-row.muted strong {
    color: #777;
    font-size: 10px;
}

.checkout-v2-grand-total {
    font-size: 15px;
    color: #f5f5f5;
}

.checkout-v2-note {
    color: #777;
    font-size: 10px;
    line-height: 1.8;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    margin-top: 24px;
}

@media (max-width: 1100px) {
    .checkout-v2-layout {
        grid-template-columns: 1fr;
    }

    .checkout-v2-summary {
        position: static;
    }
}

@media (max-width: 720px) {
    .checkout-v2 {
        padding: 110px 18px 50px;
    }

    .checkout-v2-header {
        margin-bottom: 42px;
    }

    .checkout-v2-header h1 {
        font-size: 48px;
        letter-spacing: 0.08em;
    }

    .checkout-v2-grid {
        grid-template-columns: 1fr;
    }

    .checkout-v2-card,
    .checkout-v2-summary {
        padding: 22px;
    }

    .checkout-v2-product {
        grid-template-columns: 68px 1fr;
    }

    .checkout-v2-product strong {
        grid-column: 2;
    }
}

/* INFO / LEGAL PAGES */

.info-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 8%, rgba(255,255,255,0.055), transparent 32%),
        linear-gradient(180deg, #050505 0%, #020202 100%);
    color: #f5f5f5;
    padding: 140px 44px 90px;
}

.info-hero {
    max-width: 1500px;
    margin: 0 auto 70px;
}

.info-hero h1 {
    font-size: clamp(54px, 9vw, 132px);
    line-height: 0.9;
    letter-spacing: 0.12em;
    font-weight: 400;
    margin-bottom: 24px;
}

.info-hero span {
    color: #8f8f8f;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.info-layout {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: start;
}

.info-main {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.info-card {
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(10,10,10,0.92);
    padding: 34px;
}

.info-number {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 11px;
    letter-spacing: 0.12em;
    margin-bottom: 28px;
}

.info-card h2 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.28em;
    margin-bottom: 24px;
}

.info-card h3 {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: #d7d7d7;
    margin: 28px 0 12px;
}

.info-card p,
.info-card li {
    color: #b6b6b6;
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.06em;
}

.info-card p + p {
    margin-top: 16px;
}

.info-card ul {
    padding-left: 18px;
    margin-top: 12px;
}

.info-card li {
    margin-bottom: 8px;
}

.info-side {
    position: sticky;
    top: 120px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(10,10,10,0.96);
    padding: 30px;
}

.info-side p {
    font-size: 12px;
    letter-spacing: 0.24em;
    margin-bottom: 20px;
}

.info-side span {
    color: #777;
    font-size: 10px;
    line-height: 1.8;
    letter-spacing: 0.18em;
}

.legal-warning {
    border-color: rgba(255,255,255,0.28);
}

.legal-table {
    display: grid;
    gap: 18px;
}

.legal-table div {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 18px;
}

.legal-table span {
    color: #777;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.legal-table p {
    color: #f5f5f5;
}

.footer {
    background: #020202;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 34px 44px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.footer-logo {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.22em;
    margin-bottom: 12px;
}

.footer p {
    color: #666;
    font-size: 10px;
    letter-spacing: 0.18em;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #999;
    font-size: 10px;
    letter-spacing: 0.2em;
}

.footer-links a:hover {
    color: #f5f5f5;
}

@media (max-width: 950px) {
    .info-layout {
        grid-template-columns: 1fr;
    }

    .info-side {
        position: static;
    }

    .legal-table div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 700px) {
    .info-page {
        padding: 110px 18px 60px;
    }

    .info-card,
    .info-side {
        padding: 24px;
    }

    .footer {
        padding: 28px 18px;
    }
}