/* ============================================
 * PROMO COLLECTION FEATURE - Styles
 * Added: 2025-11-26
 * Description: Styles for Promo Collection product pages
 *              with alternating zigzag layout design
 * ============================================ */

/* Modern Dark Theme for Promo Collection */
.product-promo-collection {
    color: #ffffff;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
    background: #050505;
}

/* Hero Section */
.product-promo-collection .promo-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    overflow: hidden;
    margin-bottom: 0;
}

.product-promo-collection .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.product-promo-collection .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: blur(25px) brightness(0.12);
    transform: scale(1.2);
    animation: subtleZoom 20s infinite alternate ease-in-out;
}

@keyframes subtleZoom {
    from { transform: scale(1.2); }
    to { transform: scale(1.3); }
}

.product-promo-collection .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
        rgba(5, 5, 5, 0.3) 0%,
        rgba(5, 5, 5, 0.8) 80%,
        #050505 100%
    );
}

.product-promo-collection .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.product-promo-collection .hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.product-promo-collection .hero-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Collection Badge */
.product-promo-collection .collection-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(212, 147, 90, 0.035);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #d4935a;
    letter-spacing: 0.02em;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 147, 90, 0.2);
    width: fit-content;
    animation: fadeInUp 0.8s ease-out;
}

.product-promo-collection .collection-badge i {
    font-size: 1rem;
}

.product-promo-collection .hero-info .product_title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    background: linear-gradient(to right, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.product-promo-collection .hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Collection Stats */
.product-promo-collection .collection-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.product-promo-collection .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.25rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.product-promo-collection .stat-icon {
    background: rgba(212, 147, 90, 0.1);
    width: 3rem;
    height: 3rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4935a;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.product-promo-collection .stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.product-promo-collection .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.product-promo-collection .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* Sold By — similar to single product but with subtle warm tint */
.product-promo-collection .hero-sold-by {
    margin-top: 1rem;
    padding: 0.75rem 1.25rem;
    background: rgba(212, 147, 90, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(212, 147, 90, 0.12);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.product-promo-collection .hero-sold-by:hover {
    background: rgba(212, 147, 90, 0.1);
}

.product-promo-collection .hero-sold-by i {
    color: #d4935a;
    font-size: 1rem;
}

.product-promo-collection .hero-sold-by .sold-by-content {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.product-promo-collection .hero-sold-by .sold-by-content a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.product-promo-collection .hero-sold-by .sold-by-content a:hover {
    color: #c9a376;
}

/* Hero Footer (Price + Add to Cart) */
.product-promo-collection .hero-footer {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
    margin-top: 1.5rem;
    width: 100%;
}

.product-promo-collection .hero-price-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.product-promo-collection .hero-price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem;
}

.product-promo-collection .hero-price .price {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: -0.02em;
}

.product-promo-collection .price-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: normal;
    list-style-type: none;
}

.product-promo-collection .price-note a {
    color: #999;
    text-decoration: none;
}

.product-promo-collection .price-note a:hover {
    color: #fff;
    text-decoration: underline;
}

.product-promo-collection .rewards-info {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #f1f1f1;
    font-weight: 600;
}

.product-promo-collection .hero-actions {
    display: flex;
    gap: 1rem;
    width: 100%;
    padding: 0 1rem;
}

.product-promo-collection .cart-button-container a.add_to_cart_button,
.product-promo-collection .hero-actions .single_add_to_cart_button {
    background-color: var(--color-bg-light) !important;
    color: var(--color-text) !important;
    border: 1px solid var(--color-border) !important;
    border-radius: 12px;
    padding: 1.25rem 3.5rem !important;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 240px;
    justify-content: center;
    text-decoration: none;
}

.product-promo-collection .cart-button-container a.add_to_cart_button:hover,
.product-promo-collection .hero-actions .single_add_to_cart_button:hover {
    background-color: var(--color-bg-hover) !important;
    border-color: var(--color-border-hover) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Add to Cart Loading State - spinner animation only, inherit other styles from woo.css */
.product-promo-collection .cart-button-container a.add_to_cart_button.loading i,
.product-promo-collection .cta-actions a.add_to_cart_button.loading i {
    animation: spin 1s linear infinite;
}

/* Hero Preview Image */
.product-promo-collection .hero-preview {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.product-promo-collection .preview-image {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.product-promo-collection .preview-image img {
    max-width: 90%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* Vendor mode - smaller image to leave room for vendor profile */
.product-promo-collection .hero-preview.mode-vendor .preview-image img {
    max-width: 70%;
    max-height: 400px;
}

/* Libraries Section Header */
.product-promo-collection .libraries-header {
    background: linear-gradient(to bottom, #050505, rgba(5, 5, 5, 0));
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.product-promo-collection .libraries-header-inner {
    max-width: 800px;
    margin: 0 auto;
}

.product-promo-collection .libraries-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.product-promo-collection .libraries-header h2 i {
    color: #d4935a;
}

.product-promo-collection .libraries-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.125rem;
    margin: 0;
}

/* Promo Description Section */
.product-promo-collection .promo-description {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-promo-collection .promo-description-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.7;
}

.product-promo-collection .promo-description-inner .description-heading {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.product-promo-collection .promo-description-inner p {
    margin: 0 0 1rem 0;
}

.product-promo-collection .promo-description-inner p:last-child {
    margin-bottom: 0;
}

/* Libraries Showcase - Alternating Zigzag Layout */
.product-promo-collection .promo-libraries {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
}

.product-promo-collection .library-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.product-promo-collection .library-showcase:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

/* Alternating Layout */
.product-promo-collection .library-showcase.layout-left {
    /* Image left, details right (default) */
}

.product-promo-collection .library-showcase.layout-right .library-image {
    order: 2;
}

.product-promo-collection .library-showcase.layout-right .library-details {
    order: 1;
}

/* Library Image */
.product-promo-collection .library-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.product-promo-collection .library-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.product-promo-collection .library-showcase:hover .library-image img {
    transform: scale(1.02);
}

.product-promo-collection .library-view-link {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
}

.product-promo-collection .library-showcase:hover .library-view-link {
    opacity: 1;
}

.product-promo-collection .library-view-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Library Details */
.product-promo-collection .library-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.product-promo-collection .library-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: -1rem;
}

.product-promo-collection .library-title {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.product-promo-collection .library-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-promo-collection .library-title a:hover {
    color: #d4935a;
}

.product-promo-collection .library-excerpt {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Library Meta Grid */
.product-promo-collection .library-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.product-promo-collection .library-meta .meta-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-promo-collection .library-meta .meta-icon {
    background: rgba(212, 147, 90, 0.1);
    width: 2rem;
    height: 2rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4935a;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.product-promo-collection .library-meta .meta-content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.product-promo-collection .library-meta .meta-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.product-promo-collection .library-meta .meta-value {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Library Preview Player */
.product-promo-collection .library-preview {
    margin-top: 0.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-promo-collection .library-preview .preview-header {
    margin-bottom: 1rem;
}

.product-promo-collection .library-preview .preview-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-promo-collection .library-preview .preview-header h4 i {
    color: #d4935a;
}

.product-promo-collection .library-preview .waveform-container {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

/* Bottom CTA Section */
.product-promo-collection .promo-cta {
    background: linear-gradient(to bottom,
        rgba(37, 99, 235, 0.1),
        rgba(37, 99, 235, 0.05)
    );
    padding: 5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(37, 99, 235, 0.2);
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
}

.product-promo-collection .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.product-promo-collection .promo-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem;
}

.product-promo-collection .promo-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    margin: 0 0 2rem;
}

.product-promo-collection .cta-price {
    margin-bottom: 2rem;
}

.product-promo-collection .cta-price .price {
    font-size: 3rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
}

.product-promo-collection .cta-actions {
    display: flex;
    justify-content: center;
}

.product-promo-collection .cta-actions a {
    background: #2563eb !important;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.product-promo-collection .cta-actions a:hover {
    background: #1d4ed8 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

/* Description Section */
.product-promo-collection .promo-description {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.01);
}

.product-promo-collection .description-inner {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-promo-collection .promo-description h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-promo-collection .promo-description h3 i {
    color: rgba(255, 255, 255, 0.5);
}

.product-promo-collection .promo-description .description-content {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
}

.product-promo-collection .promo-description .description-content p {
    margin-bottom: 1.5rem;
}

.product-promo-collection .promo-description .description-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-promo-collection .hero-info .product_title {
        font-size: 3rem;
    }

    .product-promo-collection .library-meta {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .product-promo-collection .hero-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-promo-collection .library-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-promo-collection .library-showcase.layout-right .library-image,
    .product-promo-collection .library-showcase.layout-right .library-details {
        order: unset;
    }

    .product-promo-collection .library-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .product-promo-collection .promo-hero {
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .product-promo-collection .hero-info .product_title {
        font-size: 2rem;
    }

    .product-promo-collection .collection-stats {
        grid-template-columns: 1fr;
    }

    .product-promo-collection .hero-footer {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .product-promo-collection .hero-actions {
        width: 100%;
        justify-content: center;
    }

    .product-promo-collection .cart-button-container a.add_to_cart_button,
    .product-promo-collection .hero-actions .single_add_to_cart_button {
        width: 100%;
    }

    .product-promo-collection .promo-libraries {
        padding: 2rem 1.5rem;
    }

    .product-promo-collection .library-showcase {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .product-promo-collection .library-meta {
        grid-template-columns: 1fr 1fr;
    }

    .product-promo-collection .library-title {
        font-size: 1.5rem;
    }

    .product-promo-collection .library-view-link {
        opacity: 1;
    }

    .product-promo-collection .libraries-header h2 {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .product-promo-collection .promo-cta {
        padding: 3rem 1.5rem;
    }

    .product-promo-collection .promo-cta h2 {
        font-size: 1.75rem;
    }

    .product-promo-collection .cta-price .price {
        font-size: 2.5rem !important;
    }

    .product-promo-collection .promo-description {
        padding: 3rem 1.5rem;
    }

    .product-promo-collection .description-inner {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .product-promo-collection .library-meta {
        grid-template-columns: 1fr;
    }

    .product-promo-collection .hero-price .price {
        font-size: 2rem !important;
    }
}

/* Royalty-Free License Section (inside preview-image container) */
.product-promo-collection .hero-rights {
    margin-top: 1.5rem;
    padding: 1rem 5% 0 5%;
    background: transparent;
    border: none;
    border-radius: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.product-promo-collection .hero-rights .rights-header {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.02em;
    color: #d4935a;
    margin: 0 0 0.75rem 0;
}

.product-promo-collection .hero-rights .rights-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-promo-collection .hero-rights .rights-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.35rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    line-height: 1.4;
}

.product-promo-collection .hero-rights .rights-list li i {
    color: #d4a646;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.product-promo-collection .hero-rights .rights-list li strong {
    color: #ffffff;
}

/* Responsive Commercial Rights */
@media (max-width: 768px) {
    .product-promo-collection .hero-rights {
        margin-top: 1rem;
        padding: 0.75rem 0 0 0;
    }

    .product-promo-collection .hero-rights .rights-list li {
        font-size: 0.75rem;
    }
}

/* File Specs One-Liner (inside preview-image, promo mode only) */
.product-promo-collection .hero-specs {
    margin-top: 1rem;
    padding: 0.75rem 5% 0 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    box-sizing: border-box;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.product-promo-collection .hero-specs .specs-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 0.5rem;
}

.product-promo-collection .hero-specs .specs-value {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive File Specs */
@media (max-width: 768px) {
    .product-promo-collection .hero-specs {
        padding: 0.5rem 0 0 0;
        font-size: 0.75rem;
    }
}

/* Vendor Profile in Hero */
.product-promo-collection .hero-vendor-profile {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.product-promo-collection .vendor-avatar-wrapper {
    flex-shrink: 0;
}

.product-promo-collection .vendor-avatar-wrapper img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(212, 147, 90, 0.3);
    object-fit: cover;
}

.product-promo-collection .vendor-bio {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-promo-collection .vendor-bio p {
    margin: 0 0 0.75rem 0;
}

.product-promo-collection .vendor-bio p:last-child {
    margin-bottom: 0;
}

/* Responsive Vendor Profile */
@media (max-width: 768px) {
    .product-promo-collection .hero-vendor-profile {
        padding: 1.25rem;
    }

    .product-promo-collection .vendor-avatar-wrapper img {
        width: 64px;
        height: 64px;
    }

    .product-promo-collection .vendor-bio {
        font-size: 0.9rem;
    }
}

/* ============================================
 * END PROMO COLLECTION FEATURE - Styles
 * ============================================ */

/* ============================================
 * DESIGN SYSTEM POLISH — 2026-02-27
 * Aligns promo/bundle/collection pages with
 * single-product gold/dark aesthetic.
 * All rules scoped to .product-promo-collection
 * ============================================ */

/* ── A. Gold Add to Cart button ── */
.product-promo-collection .single_add_to_cart_button,
.product-promo-collection .add_to_cart_button,
.product-promo-collection .cart-button-container a.add_to_cart_button,
.product-promo-collection .hero-actions .single_add_to_cart_button,
.product-promo-collection .cta-actions a.add_to_cart_button,
.product-promo-collection .cta-actions a.button.alt {
    background: #c9a376 !important;
    color: #0a0a0a !important;
    border: none !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    padding: 1.25rem 2.5rem;
    box-shadow: 0 4px 20px rgba(201, 163, 118, 0.3);
    transition: all 0.3s ease;
}

.product-promo-collection .single_add_to_cart_button:hover,
.product-promo-collection .add_to_cart_button:hover,
.product-promo-collection .cart-button-container a.add_to_cart_button:hover,
.product-promo-collection .hero-actions .single_add_to_cart_button:hover,
.product-promo-collection .cta-actions a.add_to_cart_button:hover,
.product-promo-collection .cta-actions a.button.alt:hover {
    background: #d4b48a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 163, 118, 0.45);
}

/* ── B. Bottom CTA section — dark neutral, no blue ── */
.product-promo-collection .promo-cta {
    background: #0d0d0d !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Remove blue CTA button override (gold rule above covers it) */
.product-promo-collection .cta-actions a {
    background: #c9a376 !important;
    color: #0a0a0a !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(201, 163, 118, 0.3) !important;
}

.product-promo-collection .cta-actions a:hover {
    background: #d4b48a !important;
    box-shadow: 0 8px 32px rgba(201, 163, 118, 0.45) !important;
}

/* ── C. Price-note — gold underlined links ── */
.product-promo-collection .price-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0.4rem 0;
    font-style: normal;
}

.product-promo-collection .price-note a,
.product-promo-collection .license-inline-link {
    color: #c9a376;
    font-style: normal;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.product-promo-collection .price-note a:hover,
.product-promo-collection .license-inline-link:hover {
    color: #d4b48a;
}

/* ── D. Trust line ── */
.product-promo-collection .hero-trust-line {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* Extra breathing room for the trust line in the bottom CTA specifically */
.product-promo-collection .promo-cta .hero-trust-line {
    margin-top: 1.75rem;
}

/* ── E. Library showcase cards — subtle border treatment ── */
/* The existing .library-showcase already has border + bg; this tightens
   the hover contrast to match the card system on single-product pages. */
.product-promo-collection .library-showcase {
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.product-promo-collection .library-showcase:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

/* ── F. Price alignment + bullet suppression ── */
/* Suppress the global .price-note::before gold bullet from single-product.css */
.product-promo-collection .price-note::before {
    display: none !important;
}

/* Ensure price and price-note are left-aligned */
.product-promo-collection .hero-price {
    align-items: flex-start;
    text-align: left;
}
.product-promo-collection .hero-price .price,
.product-promo-collection .hero-price .woocommerce-Price-amount,
.product-promo-collection .hero-price del,
.product-promo-collection .hero-price ins {
    text-align: left !important;
    display: inline !important;
}

/* ============================================
 * END DESIGN SYSTEM POLISH
 * ============================================ */
