/* ========================================
   Zen Burma — Product Detail Styles
   ======================================== */

/* ========== Inquiry Label ========== */
.inquiry-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: color 0.15s ease;
}

.group:hover .inquiry-label {
    color: #fff;
}

/* ========== Related Product Name ========== */
.related-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.875rem;
    color: #fff;
    transition: color 0.15s ease;
}

.group:hover .related-name {
    color: #FFFFFF;
}

/* ========== Inquiry Checkbox ========== */
.inquiry-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    border-radius: 4px;
    background: rgba(26, 26, 26, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.inquiry-checkbox:checked {
    background: linear-gradient(135deg, #D4AF37, #FFFFFF);
    border-color: #D4AF37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.inquiry-checkbox:checked::after {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 12px;
    font-weight: bold;
}

/* ========== Image Frame ========== */
.img-gold-frame {
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.08);
}

/* ========== Custom Textarea ========== */
.custom-textarea {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: #fff;
    padding: 12px 16px;
    font-size: 14px;
    resize: vertical;
    min-height: 80px;
    transition: border-color 0.3s ease;
    width: 100%;
    font-family: inherit;
}

.custom-textarea:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.custom-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* ========== Contact Info Card ========== */
.contact-info-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 16px;
}

/* ========== Related Products Marquee ========== */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-track {
    display: flex;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    width: 220px;
    margin-right: 1.5rem;
}

@media (min-width: 640px) {
    .marquee-item {
        width: 260px;
    }
}