/* ===================================================================== */
/* General & Layout Styles - Dark Luxury Theme */
/* ===================================================================== */
:root {
    /* Light Theme - Premium Colors */
    --rz-bg: #f8f9fa;
    --rz-surface: #ffffff;
    --rz-surface-elevated: #ffffff;
    --rz-surface-card: #1e1e2e;

    /* Gold Accent Palette */
    --rz-primary-accent: #d4af37;
    --rz-gold-light: #f0d674;
    --rz-gold-dark: #b8924a;
    --rz-gold-glow: rgba(212, 175, 55, 0.25);

    /* Text Colors */
    --rz-text-dark: #1a1a1a;
    --rz-text-medium: #e8e8f0;
    --rz-text-light: #b0b0c8
    --rz-text-muted: #6c6c6c;

    /* Border & Shadow */
    --rz-border: rgba(100, 100, 100, 0.2);
    --rz-border-light: rgba(0, 0, 0, 0.08);
    --rz-shadow-gold: 0 8px 32px rgba(100, 100, 100, 0.15);
    --rz-shadow-dark: 0 4px 24px rgba(0, 0, 0, 0.1);
}

/* ===================================================================== */
/* Fix Horizontal Scroll on Mobile */
/* ===================================================================== */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

.product-details-page {
    padding: 4rem 0;
    color: var(--rz-text-dark);
    margin-top: 100px;
    background: linear-gradient(
        180deg,
        #f8f9fa 0%,
        #ffffff 50%,
        #f8f9fa 100%
    );
    position: relative;
    min-height: 100vh;
}

.product-details-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 30% 20%,
        rgba(212, 175, 55, 0.03) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.main-header {
    background: linear-gradient(
        180deg,
        rgba(18, 18, 26, 0.95) 0%,
        rgba(10, 10, 15, 0.98) 100%
    );
    backdrop-filter: blur(20px) saturate(180%);
    padding: 7px;
}
/* ===================================================================== */
/* Fancybox Custom Styles - Dark Luxury */
/* ===================================================================== */
.fancybox-button {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    width: 38px !important;
    height: 38px !important;
    padding: 8px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}
.fancybox-button:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4) !important;
    transform: scale(1.05);
}
.fancybox-button svg,
.fancybox-button i {
    width: 16px !important;
    height: 16px !important;
    font-size: 16px !important;
    color: rgba(255, 255, 255, 0.9) !important;
}
.fancybox-arrow {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 50% !important;
    width: 38px !important;
    height: 38px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}
.fancybox-arrow:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4) !important;
}
.fancybox-arrow svg,
.fancybox-arrow i {
    width: 20px !important;
    height: 20px !important;
    font-size: 20px !important;
    fill: rgba(255, 255, 255, 0.9) !important;
    stroke: rgba(255, 255, 255, 0.9) !important;
}
.fancybox-infobar {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ===================================================================== */
/* Product Gallery & Image Styles - Dark Luxury */
/* ===================================================================== */
.product-gallery-public .main-image-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(100, 100, 100, 0.1);
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        #1e1e2e,
        #2a2a3a
    );
    border: 1px solid rgba(100, 100, 100, 0.2);
}

.product-gallery-public .main-image-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(100, 100, 100, 0.05) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.product-gallery-public #mainProductImagePublic {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    cursor: pointer;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}
.product-gallery-public #mainProductImagePublic:hover {
    transform: scale(1.05);
}
.thumbnail-slider .item {
    cursor: pointer;
    border: 2px solid rgba(100, 100, 100, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 80px;
    position: relative;
    background: #1e1e2e;
}
.thumbnail-slider .item:hover,
.thumbnail-slider .item.active {
    border-color: rgba(100, 100, 100, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(100, 100, 100, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.15);
}
.thumbnail-slider .item img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumbnail-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}
.thumbnail-slider .owl-nav button {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 50% !important;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
.thumbnail-slider .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.thumbnail-slider .owl-nav button span {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 700;
    font-size: 16px;
}
.thumbnail-slider .owl-nav .owl-prev {
    margin-inline-start: -18px;
}
.thumbnail-slider .owl-nav .owl-next {
    margin-inline-end: -18px;
}

.sold-badge-rotated {
    position: absolute;
    top: 15px;
    left: -35px;
    background: #dc3545;
    color: #fff;
    padding: 6px 50px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    transform: rotate(-35deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 6;
}

/* ===================================================================== */
/* Product Information & Actions Styles - Dark Luxury */
/* ===================================================================== */
.product-info-public .product-title-public {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--rz-text-dark);
    text-shadow: 0 2px 12px rgba(212, 175, 55, 0.3);
}
.product-info-public .product-price-public {
    font-size: 2rem;
    font-weight: 700;
    color: var(--rz-primary-accent);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 12px rgba(212, 175, 55, 0.5);
}
.product-info-public .product-price-public .currency {
    font-size: 1.1rem;
    font-weight: 600;
}
.product-info-public .product-description-public {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--rz-text-light);
    margin-bottom: 2.5rem;
}
.actions-container-public {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.action-button-public,
.ai-analysis-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 9px;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.action-button-public::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.action-button-public:hover::before {
    width: 300px;
    height: 300px;
}
.action-button-public i,
.ai-analysis-button i {
    margin-inline-end: 8px;
    font-size: 1rem;
}
.action-button-public.btn-contact-seller {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    flex: 1;
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.action-button-public.btn-contact-seller:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5),
        0 5px 16px rgba(0, 0, 0, 0.4);
}
.action-button-public.btn-visualize-public {
    background: linear-gradient(135deg, #5f9394 0%, #4a7475 100%);
    color: white;
    flex: 1;
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.action-button-public.btn-visualize-public:hover {
    background: linear-gradient(135deg, #4a7475 0%, #3d6162 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(95, 147, 148, 0.5),
        0 5px 16px rgba(0, 0, 0, 0.4);
}
.action-button-public.btn-share-icon-only {
    background: transparent;
    color: #6c757d;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid #d0d0d0;
    box-shadow: none;
}
.action-button-public.btn-share-icon-only i {
    margin: 0;
    font-size: 1.1rem;
}
.action-button-public.btn-share-icon-only:hover {
    background: rgba(108, 117, 125, 0.1);
    color: #495057;
    border-color: #a0a0a0;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.action-button-public.btn-visualize-icon-only {
    background: transparent;
    color: #6c757d;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid #d0d0d0;
    box-shadow: none;
}
.action-button-public.btn-visualize-icon-only i {
    margin: 0;
    font-size: 1.1rem;
}
.action-button-public.btn-visualize-icon-only:hover {
    background: rgba(108, 117, 125, 0.1);
    color: #495057;
    border-color: #a0a0a0;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ai-analysis-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    align-items: center;
}
.ai-analysis-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* padding: 14px 24px; */
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: white;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-decoration: none;
}
.ai-analysis-button i {
    font-size: 1.1rem;
}
.ai-analysis-button:hover {
    background: linear-gradient(135deg, #f0d674 0%, #d4af37 100%);
    color: #1a1a2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.5),
        0 5px 16px rgba(0, 0, 0, 0.4);
}
.ai-analysis-button.btn-visualize {
    background: linear-gradient(135deg, #5f9394 0%, #4a7a7b 100%);
    border: 1px solid rgba(95, 147, 148, 0.5);
}
.ai-analysis-button.btn-visualize:hover {
    background: linear-gradient(135deg, #7ab3b4 0%, #5f9394 100%);
    box-shadow: 0 10px 28px rgba(95, 147, 148, 0.5),
        0 5px 16px rgba(0, 0, 0, 0.4);
}

@media (max-width: 576px) {
    .ai-analysis-container {
        flex-direction: row;
        align-items: stretch;
    }
    .ai-analysis-button {
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* ===================================================================== */
/* Specifications Section Styles - Dark Luxury */
/* ===================================================================== */
.spec-card-bs {
    background: linear-gradient(
        135deg,
        #1e1e2e,
        #2a2a3a
    );
    border: 1px solid rgba(100, 100, 100, 0.2);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 120px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.spec-card-bs:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2),
        0 6px 20px rgba(100, 100, 100, 0.15);
    transform: translateY(-5px);
    border-color: rgba(100, 100, 100, 0.4);
}
.spec-card-icon {
    font-size: 2rem;
    color: var(--rz-primary-accent);
    margin-inline-end: 15px;
    flex-shrink: 0;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}
.spec-card-content h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #b0b0c8;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.spec-card-content p {
    font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.15rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.45;
    transition: font-size 0.18s ease;
}

/* Slightly reduce and adapt on very small screens */
@media (max-width: 480px) {
    .spec-card-content p {
        font-size: clamp(0.88rem, 2.2vw + 0.2rem, 0.98rem);
        line-height: 1.4;
    }
}

/* ===================================================================== */
/* 3D Scene Card Styles - Dark Luxury */
/* ===================================================================== */
.scene-card {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15),
        0 6px 20px rgba(100, 100, 100, 0.1);
    border: 1px solid rgba(100, 100, 100, 0.2);
    transition: all 0.3s ease;
    background: #1e1e2e;
}
.scene-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2),
        0 8px 28px rgba(100, 100, 100, 0.15);
    border-color: rgba(100, 100, 100, 0.4);
    transform: translateY(-5px);
}
.scene-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.scene-card:hover img {
    transform: scale(1.1);
}
.scene-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.scene-card:hover .scene-card-overlay {
    opacity: 1;
}
.scene-card-overlay span {
    color: var(--rz-primary-accent);
    font-size: 1.3rem;
    font-weight: 900;
    text-shadow: 0 2px 12px rgba(212, 175, 55, 0.6);
    letter-spacing: 0.5px;
}
.section-title {
    margin-bottom: 1.5rem;
    color: var(--rz-text-dark);
    text-shadow: 0 2px 12px rgba(212, 175, 55, 0.3);
}
.hr-public {
    margin-bottom: 2rem;
    border-color: var(--rz-border);
    opacity: 0.5;
}

/* ===================================================================== */
/* AI Modal & Chat Styles - Dark Luxury */
/* ===================================================================== */
#productChatModal .modal-content,
#aiAnalysisModal .modal-content {
    background: linear-gradient(
        180deg,
        #2a2a3a,
        #1e1e2e
    );
    border: 1px solid rgba(100, 100, 100, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
#productChatModal .modal-header,
#aiAnalysisModal .modal-header {
    border-bottom: 1px solid rgba(100, 100, 100, 0.2);
    background: linear-gradient(
        135deg,
        #1e1e2e,
        #2a2a3a
    );
}
#productChatModal .modal-header .btn-close {
    position: absolute;
    left: 1.25rem;
    right: auto;
    top: 1.25rem;
    margin: 0;
    filter: invert(1) grayscale(100%) brightness(200%);
}
.ai-chat-history {
    padding: 20px 10px 120px 10px;
    max-width: 100%;
    margin: 0 auto;
    height: calc(100vh - 150px);
    overflow-y: auto;
}

/* Custom Scrollbar for Chat */
.ai-chat-history::-webkit-scrollbar {
    width: 8px;
}

.ai-chat-history::-webkit-scrollbar-track {
    background: #1e1e2e;
    border-radius: 10px;
}

.ai-chat-history::-webkit-scrollbar-thumb {
    background: linear-gradient(
        135deg,
        #5a5a6a,
        #6a6a7a
    );
    border-radius: 10px;
}

.ai-message-wrapper,
.user-message-wrapper {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    max-width: 85%;
}
.user-message-wrapper {
    margin-left: auto;
    flex-direction: row-reverse;
}
.message-content {
    padding: 14px 20px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.7;
}
.ai-message {
    background: linear-gradient(
        135deg,
        #2a2a3a,
        #353545
    );
    border: 1px solid rgba(100, 100, 100, 0.2);
    border-top-left-radius: 4px;
    color: #e8e8f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.user-message {
    background: linear-gradient(
        135deg,
        var(--rz-gold-light),
        var(--rz-primary-accent)
    );
    color: #0a0a0f;
    border-top-right-radius: 4px;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
    font-weight: 600;
}
.message-icon {
    font-size: 1.5rem;
    padding: 10px;
    border-radius: 50%;
    background: #2a2a3a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin: 0 10px;
    color: #b0b0c8;
    border: 1px solid rgba(100, 100, 100, 0.2);
}
.user-message-wrapper .message-icon {
    color: var(--rz-primary-accent);
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.2),
        rgba(212, 175, 55, 0.1)
    );
}
#productChatModal .modal-footer {
    background: transparent;
    border-top: none;
    padding: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1056;
}
.ai-chat-input-form {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 820px;
    margin: 0 auto 15px auto;
    padding: 12px;
    background: linear-gradient(
        135deg,
        #2a2a3a,
        #353545
    );
    border-radius: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2),
        0 4px 12px rgba(100, 100, 100, 0.1);
    border: 1px solid rgba(100, 100, 100, 0.2);
}
#product-chat-input {
    border: none;
    outline: none;
    flex-grow: 1;
    padding: 10px 15px;
    background: transparent;
    font-size: 1rem;
    color: #e8e8f0;
}
#product-chat-input::placeholder {
    color: #b0b0c8;
}
#send-product-chat-message-btn {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    flex-shrink: 0;
    background: linear-gradient(
        135deg,
        var(--rz-gold-light),
        var(--rz-primary-accent)
    );
    color: #0a0a0f;
    border: 1px solid var(--rz-primary-accent);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}
#send-product-chat-message-btn:hover {
    background: linear-gradient(
        135deg,
        var(--rz-primary-accent),
        var(--rz-gold-dark)
    );
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.6);
}
#aiAnalysisModal .ai-modal-content {
    border-radius: 16px;
    border: 1px solid var(--rz-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
        0 10px 30px rgba(212, 175, 55, 0.2);
    overflow: hidden;
}
#aiAnalysisModal .modal-header {
    background: linear-gradient(135deg, #5f9394, #2c3e50);
    color: var(--rz-text-dark);
    border-bottom: 1px solid var(--rz-border);
    padding: 1.5rem 2rem;
    position: relative;
}
#aiAnalysisModal .modal-header .btn-close {
    position: absolute;
    left: 1.5rem;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.9;
}
#aiAnalysisModal .modal-body {
    background: linear-gradient(
        180deg,
        #2a2a3a,
        #1e1e2e
    );
    padding: 2rem 2.5rem;
    max-height: 70vh;
    overflow-y: auto;
}

/* Custom Scrollbar for Modal */
#aiAnalysisModal .modal-body::-webkit-scrollbar {
    width: 8px;
}

#aiAnalysisModal .modal-body::-webkit-scrollbar-track {
    background: #1e1e2e;
    border-radius: 10px;
}

#aiAnalysisModal .modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(
        135deg,
        #5a5a6a,
        #6a6a7a
    );
    border-radius: 10px;
}

.ai-spinner-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    text-align: center;
    color: #b0b0c8;
}
.ai-spinner {
    width: 56px;
    height: 56px;
    border: 5px solid #2a2a3a;
    border-top-color: var(--rz-primary-accent);
    border-radius: 50%;
    animation: ai-spin 1s linear infinite;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(100, 100, 100, 0.15);
}
@keyframes ai-spin {
    to {
        transform: rotate(360deg);
    }
}
#ai-analysis-response-body h4 {
    color: var(--rz-primary-accent);
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}
#ai-analysis-response-body ul {
    padding-right: 20px;
    list-style-type: none;
    padding-left: 0;
}
#ai-analysis-response-body li {
    position: relative;
    padding-right: 30px;
    margin-bottom: 12px;
    line-height: 1.8;
    color: #e8e8f0;
}
#ai-analysis-response-body li::before {
    content: "✓";
    position: absolute;
    right: 0;
    top: 2px;
    color: var(--rz-primary-accent);
    font-weight: 900;
    font-size: 1.1rem;
}

/* ===================================================================== */
/* RESPONSIVE ADJUSTMENTS */
/* ===================================================================== */
@media (min-width: 992px) {
    .actions-container-public {
        max-width: 442px;
    }
}
@media (max-width: 991.98px) {
    .product-info-public {
        margin-top: 2rem;
    }
    .product-gallery-public .main-image-container {
        height: 400px;
    }
}
@media (max-width: 767.98px) {
    .product-details-page {
        padding: 2rem 0;
    }
    .product-info-public .product-title-public,
    .product-info-public .product-price-public {
        text-align: center;
    }
    .product-info-public .product-title-public {
        font-size: 1.9rem;
    }
    .product-info-public .product-price-public {
        font-size: 1.6rem;
    }
    .product-info-public .product-description-public {
        text-align: justify;
        font-size: 0.95rem;
    }
    .actions-container-public {
        flex-direction: row;
        justify-content: center;
    }
    .action-button-public,
    .ai-analysis-button {
        font-size: 0.85rem;
        padding: 12px 14px;
    }
    .action-button-public i,
    .ai-analysis-button i {
        font-size: 0.9rem;
        margin-inline-end: 6px;
    }
    .action-button-public.btn-contact-seller {
        flex: 1;
        min-width: auto;
    }
    .action-button-public.btn-share-icon-only {
        width: 48px;
        height: 48px;
    }
    .action-button-public.btn-share-icon-only i {
        font-size: 1.1rem;
    }
    .spec-card-bs {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
    .spec-card-icon {
        margin-inline-end: 0;
        margin-bottom: 10px;
    }
    .spec-card-content p {
        -webkit-line-clamp: unset;
        line-clamp: unset;
        display: block;
    }
    .product-gallery-public .main-image-container {
        height: 350px;
    }
    .thumbnail-slider .item {
        height: 70px;
    }
}
@media (max-width: 480px) {
    .sold-badge-rotated {
        left: -20px;
        top: 5px;
        padding: 5px 40px;
        transform: rotate(-30deg);
        font-size: 11px;
    }
    .product-info-public .product-title-public {
        font-size: 1.7rem;
    }
    .product-info-public .product-price-public {
        font-size: 1.5rem;
    }
    .product-gallery-public .main-image-container {
        height: 320px;
    }
    .thumbnail-slider .item {
        height: 65px;
    }
    .actions-container-public {
        gap: 8px;
        max-width: 100%;
    }
    .action-button-public,
    .ai-analysis-button {
        font-size: 0.8rem;
        padding: 10px 9px;
    }
    .action-button-public i,
    .ai-analysis-button i {
        font-size: 0.85rem;
        margin-inline-end: 5px;
    }
    .action-button-public.btn-share-icon-only {
        width: 46px;
        height: 46px;
    }
    .action-button-public.btn-share-icon-only i {
        font-size: 1rem;
    }
}

/* ===================================================================== */
/* Additional Dark Luxury Enhancements */
/* ===================================================================== */

/* Add gold glow to headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--rz-text-dark);
}

/* Container backgrounds */
.container {
    position: relative;
    z-index: 1;
}

/* Links */
a:not(.action-button-public):not(.btn):not(.nav-link) {
    /* color: var(--rz-primary-accent); */
    transition: all 0.3s ease;
}

a:not(.action-button-public):not(.btn):not(.nav-link):hover {
    color: var(--rz-gold-light);
}

/* Paragraphs */
p {
    color: var(--rz-text-light);
}

/* Strong text */
strong,
b {
    color: var(--rz-text-medium);
}

/* Cards and panels general */
.card {
    background: linear-gradient(
        135deg,
        #1e1e2e,
        #2a2a3a
    );
    border: 1px solid rgba(100, 100, 100, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Selection color */
::selection {
    background: var(--rz-primary-accent);
    color: #0a0a0f;
}

::-moz-selection {
    background: var(--rz-primary-accent);
    color: #0a0a0f;
}

/* Custom scrollbar for page */
body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: #f8f9fa;
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(
        135deg,
        #b8b8c8,
        #a0a0b0
    );
    border-radius: 10px;
    border: 2px solid #f8f9fa;
}

body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        135deg,
        #a0a0b0,
        #8a8a9a
    );
}

/* Loading animation */
@keyframes pulse-gold {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.7);
    }
}

.loading {
    animation: pulse-gold 2s ease-in-out infinite;
}

/* Badge enhancement */
.badge {
    background: linear-gradient(
        135deg,
        var(--rz-gold-light),
        var(--rz-primary-accent)
    );
    color: #0a0a0f;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
}

/* Button hover glow */
.btn:not(.action-button-public) {
    transition: all 0.3s ease;
}

.btn:not(.action-button-public):hover {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Text utilities */
.text-gold {
    color: var(--rz-primary-accent) !important;
}

.text-gold-light {
    color: var(--rz-gold-light) !important;
}

.bg-dark-luxury {
    background: linear-gradient(
        135deg,
        #1e1e2e,
        #2a2a3a
    ) !important;
}

/* Border utilities */
.border-gold {
    border-color: var(--rz-border) !important;
}

/* Shadow utilities */
.shadow-gold {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(100, 100, 100, 0.1) !important;
}

/* Divider */
hr {
    border-color: var(--rz-border);
    opacity: 0.3;
}
