:root {
    --bg: #000000;
    --panel: #000000;
    --panel-soft: #000000;
    --text: #ffffff;
    --muted: #ffffff;
    --accent: #ffffff;
    --accent-2: #ffffff;
    --border: rgba(255,255,255,0.12);
    --shadow: rgba(0, 0, 0, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: #000000;
    text-decoration: none;
}

button {
    border: none;
    cursor: pointer;
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1140px, calc(100% - 2rem));
    margin: 0 auto;
}

.cart-notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 100;
    background: #111111;
    color: #ffffff;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.cart-notification.show {
    opacity: 1;
    transform: translateY(0);
}

header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(0, 0, 0, 0.98);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.brand span {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
}

.brand small {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
}

.logo {
    width: 5.8rem;
    height: 5.8rem;
    border-radius: 16px;
    object-fit: contain;
    background: transparent;
}

.site-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-nav a {
    color: var(--muted);
    font-weight: 600;
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: var(--text);
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0 1.5rem;
}

.hero-copy {
    position: relative;
    max-width: 640px;
    padding: 2rem 2.2rem;
    border-radius: 30px;
    background: url("../images/background.jpeg") center/cover no-repeat;
    overflow: hidden;
}

.hero-copy::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    pointer-events: none;
}

.hero-copy > * {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    color: var(--accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero h1 {
    margin: 0 0 0.7rem;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 1.05;
}

.hero-text {
    margin: 0 0 1rem;
    max-width: 42rem;
    color: var(--text);
    font-size: 1rem;
}

.hero-panel {
    position: relative;
    background: #000000;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.3);
    overflow: hidden;
}

.hero-panel-inner {
    padding: 1.2rem;
}

.hero-panel h2 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.35rem;
}

.hero-panel ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text);
    list-style: disc;
    display: grid;
    gap: 0.6rem;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.btn {
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    box-shadow: none;
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.07);
    color: var(--text);
}

.section-block {
    padding: 1.5rem 0;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.section-title h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.section-title p {
    margin: 0;
    color: var(--muted);
}

.products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 1rem;
    box-shadow: 0 12px 26px rgba(0,0,0,0.14);
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.card h3 {
    margin: 0;
    font-size: 1.25rem;
}

.price {
    color: var(--accent);
    font-weight: 700;
    margin: 0.5rem 0 0;
}

.card p {
    color: var(--text);
    margin: 0;
    min-height: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.info-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 1rem;
    min-height: 160px;
}

.info-card h3 {
    margin-top: 0;
}

.order-section {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 1.2rem;
}

.order-form {
    display: grid;
    gap: 0.9rem;
}

.order-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.cart-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 1rem;
}

.cart-panel {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 0.9rem;
}

.cart-panel h3 {
    margin-top: 0;
}

.cart-item {
    background: #000000;
    border: 1px solid rgba(255,255,255,0.07);
    padding: 1rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cart-item button,
.btn.secondary-action {
    width: auto;
    min-width: 42px;
    padding: 0.75rem 1rem;
    border-radius: 14px;
}

input,
textarea,
select {
    background: #000000;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    color: var(--text);
    padding: 0.95rem 1rem;
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.terms-box {
    margin-top: 0.85rem;
    background: #000000;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 0.9rem;
}

.terms-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.terms-row input {
    width: 22px;
    height: 22px;
    accent-color: #ffffff;
}

.terms-text {
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-top: 0.8rem;
}

.hidden {
    display: none;
}

.fallback-summary {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 1rem;
    display: grid;
    gap: 0.75rem;
}

.fallback-summary textarea {
    width: 100%;
    min-height: 10rem;
    background: #000000;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    color: var(--text);
    padding: 1rem;
}

.order-summary-panel {
    background: #000000;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 0.9rem 1rem;
}

.summary-note {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.9rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.total-row {
    color: var(--text);
    font-weight: 700;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0.85rem;
    align-items: start;
    padding: 1rem 0;
}

.footer-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 22px;
    padding: 1rem;
}

.footer-card h3 {
    margin-top: 0;
}

.footer-card a {
    color: var(--accent);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.payment-card {
    background: #000000;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.payment-card-image {
    width: 100%;
    max-width: 10rem;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
}

.payment-name {
    margin: 0;
    color: var(--text);
    font-size: 0.95rem;
    text-align: center;
    font-weight: 600;
}

@media (max-width: 980px) {
    .hero,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .section-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .products,
    .info-grid,
    .order-grid,
    .payment-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
    .warning-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.7);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.warning-content{
    background:#121212;
    color:#fff;
    padding:30px;
    border-radius:12px;
    width:420px;
    max-width:90%;
    text-align:center;
}

.warning-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:25px;
}
}
