/* =========================================================
   ARTWORK PAGE — LUXURY PRESENTATION
========================================================= */

.artwork-page {
    padding-top: 120px;
    color: var(--cream);
    background: var(--bg-body);
}

/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */

.artwork-hero {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    padding: 0 4vw;
}

.hero-media img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 40px 90px rgba(0,0,0,0.6);
}

.hero-info h1 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    color: var(--gold);
}
.artwork-title, .collection-badge{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
}

.label{
    font-size:12pt;
    color: var(--cream);
}
.btn {
    padding: 12px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 500;
    background: linear-gradient(135deg, #c7a652, #e8d08c);
    color: #020617;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn a{
    color: #020617;
}

.btn:hover {
    background: linear-gradient(135deg, #dabf73, #f3e2ae);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 130, 0.2);
}
.hero-info .subtitle {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.85;
    max-width: 460px;
}

.hero-info .price {
    margin-top: 28px;
    font-size: 20px;
    letter-spacing: 0.12em;
    color: var(--gold-dark);
}

/* ---------------------------------------------------------
   GALLERY
--------------------------------------------------------- */

.artwork-gallery {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 4vw;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 26px;
}

.artwork-gallery img {
    width: 100%;
    border-radius: 18px;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.artwork-gallery img:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}

/* ---------------------------------------------------------
   VIDEO
--------------------------------------------------------- */

.artwork-video {
    max-width: 960px;
    margin: 0 auto 120px;
    padding: 0 4vw;
}

.artwork-video video {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

/* ---------------------------------------------------------
   DESCRIPTION
--------------------------------------------------------- */

.artwork-description {
    max-width: 860px;
    margin: 0 auto 120px;
    padding: 0 4vw;
    font-size: 16px;
    line-height: 2;
    opacity: 0.9;
}

/* ---------------------------------------------------------
   ORDER SECTION
--------------------------------------------------------- */

.artwork-order {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0));
    padding: 120px 4vw;
}

.order-box {
    max-width: 520px;
    margin: 0 auto;
    padding: 48px 42px;
    border-radius: 26px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);
    box-shadow: 0 40px 120px rgba(0,0,0,0.6);
    text-align: center;
}

.order-box h2 {
    font-size: 22px;
    margin-bottom: 32px;
    letter-spacing: 0.14em;
    color: var(--gold);
}

.order-form {
    display: grid;
    gap: 18px;
}

.order-form input {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    padding: 14px 16px;
    color: var(--cream);
    font-size: 14px;
}

.order-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.order-form button {
    margin-top: 14px;
    padding: 14px;
    border-radius: 16px;
    border: none;
    background: var(--gradient-gold);
    color: #000;
    letter-spacing: 0.16em;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.order-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(188,150,51,0.45);
}

.order-divider {
    margin: 26px 0;
    opacity: 0.5;
    font-size: 13px;
}

.whatsapp-order {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 16px;
    background: var(--gradient-green);
    color: #fff;
    letter-spacing: 0.12em;
    transition: transform 0.4s ease;
}

.whatsapp-order:hover {
    transform: translateY(-2px);
}

.order-note {
    margin-top: 22px;
    font-size: 13px;
    opacity: 0.7;
}

/* ---------------------------------------------------------
   COLLECTION
--------------------------------------------------------- */

.artwork-collection {
    max-width: 1200px;
    margin: 0 auto 140px;
    padding: 0 4vw;
}

.artwork-collection h2 {
    text-align: center;
    font-size: 26px;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
    color: var(--gold);
}

.collection-desc {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
    opacity: 0.85;
    line-height: 1.9;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 32px;
}

.collection-card {
    text-align: center;
    border-top: 5px solid var(--gold);
    border-radius: 22px;
}

.collection-card img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 14px;
    transition: transform 0.6s ease;
    aspect-ratio: 1/1;
}

.collection-card:hover img {
    transform: translateY(-6px);
}

.collection-card span {
    font-size: 14px;
    letter-spacing: 0.12em;
}

/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 900px) {
    .artwork-hero {
        grid-template-columns: 1fr;
    }

    .hero-info h1 {
        font-size: 32px;
    }
}
