:root {
    --bg: #faf7f3;
    --card: #ffffff;
    --accent: #b68a2e;
    --muted: #6b6b6b;
    --overlay: rgba(0, 0, 0, 0.6);
    --radius: 12px;
    --pad: 18px;
}


.product-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: 0 6px 24px rgba(16, 24, 40, 0.08);
    max-width: 760px;
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 360px;
    padding: 0;
}

.product-media {
    padding: var(--pad);
    display: flex;
    align-items: center;
    justify-content: center
}

.product-media img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 6px 18px rgba(17, 24, 39, 0.06)
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.product-info h2 {
    margin: 0;
    font-size: 1.2rem
}

.support-text {
    color: var(--muted);
    line-height: 1.45
}

.actions {
    margin-top: auto
}

.btn {
    background: linear-gradient(180deg, #4d48e9, #18157c);
    border: none;
    color: white;
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600
}

.btn:focus {
    outline: 3px solid rgba(182, 138, 46, 0.25)
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--overlay);
    z-index: 60
}

.modal-overlay[aria-hidden="false"] {
    display: flex
}

.modal {
    background: white;
    border-radius: 12px;
    max-width: 680px;
    width: calc(100% - 80px);
    padding: 22px;
    box-shadow: 0 18px 60px rgba(2, 6, 23, 0.6)
}

.modal header {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.modal h3 {
    margin: 0;
    font-size: 1.1rem
}

.close-btn {
    background: transparent;
    border: none;
    font-size: 1.1rem;
    cursor: pointer
}

.modal .content {
    margin-top: 12px;
    color: #222
}

.contact {
    margin-top: 14px;
    padding: 12px;
    border-radius: 8px;
    background: #e0e0e0
}

.contact p {
    margin: 6px 0
}

@media (max-width:760px) {
    .product-card {
        grid-template-columns: 1fr;
    }
}