﻿:root {
    --accent: #ffb347;
    --accent-hover: #ff9d17;
}

.details-page {
    background: linear-gradient(180deg, #FFFFFF02, #00000008);
    padding: 28px 0;
}

.details-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
    box-sizing: border-box;
    background-color: #0b0c0d;
    padding: 24px 22px;
    border-radius: 14px;
}

.details-grid {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 20px;
    align-items: start;
}

.details-image-card {
    background: #141616;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 18px 50px #02061799, inset 0 1px 0 #FFFFFF05;
    overflow: hidden;
    border: 1px solid #FFFFFF08;
}
.details-image {
    width: 100%;
    height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #08101a;
    overflow: hidden;
}
.details-image img {
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.details-info { color: #ffffff; }
.details-info h1 {
    margin: 0 0 12px 0;
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 0 2px 8px #00000073;
    line-height: 1.05;
}

.details-attrs { margin: 6px 0 18px 0; color: #ffffff; font-size: 0.98rem; }
.details-attrs div { margin: 6px 0; }
.details-attrs strong { color: #ffffff; margin-right:6px; font-weight:700; }

.details-price {
    color: #ffb347;
    font-weight: 900;
    margin-left: 6px;
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
    transition: color .15s;
}

.details-desc {
    margin-top: 18px;
    background: #141616;
    padding: 14px;
    border-radius: 10px;
    color: #FFFFFF;
    line-height: 1.6;
    border: 1px solid #FFFFFF05;
}

.order-card {
    margin-top: 22px;
    background: #141616;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #FFFFFF08;
}
.order-card .form-group { margin-bottom: 12px; }

.form-control {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #FFFFFF0A;
    background: #162d3e;
    color: #FFFFFF;
    box-sizing: border-box;
}
.form-control::placeholder { color: #E0E0E0; }

.order-actions{
    margin-top: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-zahialah, .btn-zahialah:visited {
    background: #ffb347;
    color: #111;
    border: none;
    cursor: pointer;
    padding: 10px 60px 10px 60px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: background .15s, transform .15s;
}
.btn-zahialah:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-zahialah:active { transform: translateY(1px); }

.details-page .btn-newtreh {
    background: var(--accent);
    color: #111;
    border: none;
    cursor: pointer;
    padding: 10px 60px;
    border-radius: 10px;
    font-weight: 700;
    transition: background .15s, transform .15s;
}
.details-page .btn-newtreh:hover { background: var(--accent-hover); transform: translateY(-2px); }
.details-page .btn-newtreh:active { transform: translateY(1px); }

.btn {
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    background: #202020;
    border: none;
    margin-left: 0px;
    padding: 10px 24px;
    transition: background .15s, transform .15s;
}
.btn:hover {
    background: #2a2a2a;
    transform: translateY(-1px);
}

.details-attrs .small-muted { color: #9ca3af; font-size: 0.92rem; margin-top: 4px; }
.text-danger { color: #f87171; }

@media (max-width: 1100px) {
    .details-grid { grid-template-columns: 1fr; }
    .details-image { height: 480px; }
}
@media (max-width: 480px) {
    .details-image { height: 320px; }
    .details-info h1 { font-size: 1.3rem; }
    .details-price { font-size: 1.05rem; }
}