/* ---- ARTWORK SECTION ---- */
.artwork-detail-section {
    background: var(--accent-cream);
    padding: 60px 0;
}

.artwork-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.artwork-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.artwork-image-wrapper:hover img { transform: scale(1.03); }

.details-art-image {
    background: #fff;
    height: 28rem !important;
    min-height: unset !important;
    overflow: hidden;
}

.details-art-image img {
    width: 100% !important;
    height: -webkit-fill-available;
    max-height: none !important;
    object-fit: contain !important;
    display: block;
}

.details-art-image:hover img {
    transform: none;
}

.artwork-badge-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.artwork-badge {
    background: var(--urgent-coral);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    font-family: var(--font-subheading);
    text-transform: uppercase;
}
.artwork-badge.terracotta {
    background: linear-gradient(135deg, var(--primary-terracotta), var(--urgent-coral));
    color: #fff;
}

.artwork-title-main {
    font-family: var(--font-header);
    font-size: 42px;
    font-weight: 800;
    color: var(--navy-text);
    line-height: 1.2;
    margin-bottom: 10px;
}
.artwork-artist-link {
    font-family: var(--font-subheading);
    font-size: 16px;
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
}
.artwork-artist-link:hover { color: var(--primary-terracotta); }
.artwork-artist-link i { margin-right: 6px; }

.artwork-description {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin: 20px 0 28px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border-left: 4px solid var(--primary-teal);
}

/* Pricing Card */
.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: sticky;
    top: 90px;
}
.pricing-card-header {
    background-image: 
        linear-gradient(135deg, rgb(0 0 0 / 76%), rgb(0 128 128 / 76%)), url(../images/banner-wide2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: -30px -30px 24px;
    padding: 22px 30px;
    border-radius: 18px 18px 0 0;
    color: #fff;
    text-align: center;
}
.pricing-card-header h5 {
    font-family: var(--font-subheading);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F4D35E;
    margin-bottom: 6px;
}
.pricing-total {
    font-family: var(--font-header);
    font-size: 38px;
    font-weight: 800;
    color: #fff;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
}
.price-row:last-of-type { border-bottom: none; }
.price-label {
    color: #888;
    font-family: var(--font-subheading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.price-value {
    font-weight: 700;
    color: var(--navy-text);
    font-size: 16px;
}
.price-value.highlight {
    color: var(--primary-terracotta);
    font-size: 22px;
    font-family: var(--font-header);
}

/* Slots progress */
.slots-progress-wrap {
    margin: 20px 0;
}
.slots-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 8px;
    font-family: var(--font-subheading);
    font-weight: 600;
}
.slots-labels .sold { color: var(--primary-terracotta); }
.slots-labels .left { color: var(--success-green); }
.slots-bar {
    height: 10px;
    background: #f0f0f0;
    border-radius: 50px;
    overflow: hidden;
}
.slots-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-terracotta), var(--urgent-coral));
    border-radius: 50px;
    width: 80%; /* 16/20 = 80% sold */
    animation: fillBar 1.2s ease;
}
@keyframes fillBar {
    from { width: 0; }
    to { width: 80%; }
}
.slots-urgency {
    font-size: 13px;
    color: var(--urgent-coral);
    font-weight: 700;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-buy-download {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-terracotta) 0%, var(--urgent-coral) 100%);
    color: #fff;
    font-family: var(--font-subheading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(224,122,95,0.4);
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-buy-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(224,122,95,0.5);
}
.btn-buy-download:active { transform: translateY(0); }

.secure-note {
    text-align: center;
    font-size: 12px;
    color: #aaa;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.secure-note i { color: var(--success-green); }

/* ---- SHARE SECTION ---- */
.share-section {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.share-title {
    font-family: var(--font-subheading);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    margin-bottom: 16px;
    font-weight: 700;
}
.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-subheading);
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}
.share-btn:hover { transform: translateY(-2px); }
.share-btn.whatsapp { background: #25D366; color: #fff; }
.share-btn.facebook { background: #1877F2; color: #fff; }
.share-btn.linkedin { background: #0A66C2; color: #fff; }
.share-btn.email { background: #EA4335; color: #fff; }

/* ---- STORY SECTION ---- */
.impact-story-card {
    background-image: linear-gradient(135deg, #000000a1 0%, #a02008bd 100%), url(../images/banner-wide3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}
.impact-story-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: var(--font-header);
    font-size: 160px;
    color: rgba(244, 211, 94, 0.15);
    line-height: 1;
}
.impact-story-card h4 {
    font-family: var(--font-handwritten);
    font-size: 28px;
    color: #F4D35E;
    margin-bottom: 16px;
}
.impact-story-card p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}

/* ---- HOW IT WORKS ---- */
.how-it-works-mini {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.how-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 18px;
}
.how-step:last-child { margin-bottom: 0; }
.step-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, var(--primary-terracotta) 0%, var(--urgent-coral) 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    font-family: var(--font-subheading);
}
.step-text h6 {
    font-family: var(--font-subheading);
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-text);
    margin-bottom: 2px;
}
.step-text p {
    font-size: 13px;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

/* Related artworks */
.related-section {
    padding: 60px 0 40px;
    background: var(--accent-cream);
}
.section-heading-sm {
    font-family: var(--font-header);
    font-size: 30px;
    color: var(--navy-text);
    margin-bottom: 6px;
}
.section-sub {
    color: #999;
    font-size: 14px;
    margin-bottom: 36px;
    font-family: var(--font-subheading);
}
.related-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}
.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.14);
    color: inherit;
}
.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.related-card-body {
    padding: 18px;
}
.related-card-body h6 {
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 15px;
    color: var(--navy-text);
    margin-bottom: 8px;
}
.related-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #888;
    font-family: var(--font-subheading);
}
.related-card-meta .price { color: var(--primary-terracotta); font-weight: 700; }
.related-card-meta .slots { color: var(--success-green); font-weight: 600; }


.moreartworks h3 {
    font-family: var(--font-header);
    font-size: 28px;
    color: var(--navy-text);
    margin-bottom: 6px;
    text-align: left;
}
.moreartworks p {
    font-size: 14px;
    color: #aaa;
    font-family: var(--font-subheading);
    margin-bottom: 28px;
    text-align: left;
    max-width: none;
}