/* ============================================================================
   DOLCE & GABBANA — K by Dolce & Gabbana Theme
   Unique: Radar Chart, Crystal Shard Cards, Glassmorphism
   ============================================================================ */

/* Main Container */
.kbyDG-main-container {
    max-width: 1600px !important;
    margin: 0 auto !important;
    padding: 60px 30px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 50px !important;
    position: relative !important;
}

.kbyDG-theme {
    color: rgba(255, 255, 255, 0.90) !important;
}

.kbyDG-theme .brand-name {
    color: rgba(255, 255, 255, 0.95) !important;
    font-family: 'Playfair Display', serif !important;
    letter-spacing: 3px !important;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45) !important;
}

.kbyDG-theme .brand-location {
    color: #eed9a2 !important;
    letter-spacing: 5px !important;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45) !important;
}

.kbyDG-theme .product-name {
    color: rgba(255, 255, 255, 0.95) !important;
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45) !important;
}

.kbyDG-theme .price-badge {
    background: linear-gradient(135deg, #d4a017, #e6b422) !important;
    border: 2px solid #d4a017 !important;
}

.kbyDG-theme .price-glow {
    background: radial-gradient(circle, rgba(212,160,23,0.3) 0%, transparent 70%) !important;
}

.kbyDG-theme .quality-badge {
    border: 1px solid rgba(212,160,23,0.3) !important;
    background: rgba(212,160,23,0.04) !important;
}

.kbyDG-theme .quality-name {
    color: rgba(255, 255, 255, 0.92) !important;
}

.kbyDG-theme .quality-description {
    color: rgba(255, 255, 255, 0.72) !important;
}

.kbyDG-theme .quality-option input:checked + .quality-label .quality-badge {
    border-color: #d4a017 !important;
    background: rgba(212,160,23,0.08) !important;
    box-shadow: none !important;
}

.kbyDG-theme .quality-option input:checked + .quality-label .quality-name {
    color: rgba(255, 255, 255, 0.96) !important;
    font-weight: 600 !important;
}

.kbyDG-theme .quality-option input:checked + .quality-label .quality-description {
    color: #eed9a2 !important;
}

.kbyDG-theme .selection-indicator {
    border-color: rgba(212,160,23,0.4) !important;
}

.kbyDG-theme .quality-option input:checked + .quality-label .selection-indicator {
    border-color: #d4a017 !important;
    background: rgba(212,160,23,0.1) !important;
    box-shadow: none !important;
}

.kbyDG-theme .quality-option input:checked + .quality-label .selection-indicator::after {
    background: #d4a017 !important;
    box-shadow: none !important;
}

.kbyDG-theme .quality-shimmer {
    background: linear-gradient(90deg, transparent, rgba(212,160,23,0.1), transparent) !important;
}

.kbyDG-theme .quality-glow {
    display: none !important;
}

.kbyDG-theme .quality-ornament {
    border-color: rgba(212,160,23,0.3) !important;
}

.kbyDG-theme .quality-option input:checked + .quality-label .quality-ornament {
    border-color: #d4a017 !important;
    box-shadow: none !important;
}

.kbyDG-theme .quality-title,
.kbyDG-theme .quality-subtitle {
    color: rgba(255, 255, 255, 0.80) !important;
}

/* Product Section */
.kbyDG-product-section {
    display: flex !important;
    align-items: center !important;
    gap: 50px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}

.kbyDG-image {
    width: 320px !important;
    height: auto !important;
    max-height: 440px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 20px 40px rgba(212,160,23,0.25)) !important;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease !important;
}

.kbyDG-image:hover {
    transform: scale(1.05) translateY(-10px) !important;
    filter: drop-shadow(0 30px 60px rgba(212,160,23,0.35)) !important;
}

/* Profiles Container */
.kbyDG-profiles-container {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 30px !important;
    align-items: stretch !important;
}

/* Profile Card - Glassmorphism */
.kbyDG-profile-card {
    background: rgba(255,255,255,0.06) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(212,160,23,0.2) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    box-shadow: 0 8px 32px rgba(212,160,23,0.1) !important;
}

.kbyDG-profile-card .profile-title {
    color: rgba(255, 255, 255, 0.95) !important;
    font-family: 'Playfair Display', serif !important;
}

.kbyDG-profile-card .profile-subtitle {
    color: #eed9a2 !important;
}

/* Radar Chart */
.kbyDG-scent-profile { flex: 1 !important; min-width: 300px !important; }
.kbyDG-radar-section { display: flex !important; flex-direction: column !important; gap: 30px !important; }
.kbyDG-radar-container { position: relative !important; width: 100% !important; max-width: 320px !important; margin: 0 auto !important; aspect-ratio: 1 !important; }
.kbyDG-radar-svg { width: 100% !important; height: 100% !important; }
.kbyDG-radar-data { animation: kbyDGRadarPulse 3s ease-in-out infinite !important; }

@keyframes kbyDGRadarPulse {
    0%, 100% { opacity: 0.85; }
    50% { opacity: 1; }
}

.kbyDG-radar-labels { position: absolute !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; pointer-events: none !important; }
.kbyDG-radar-label { position: absolute !important; display: flex !important; flex-direction: column !important; align-items: center !important; transform: translate(-50%, -50%) !important; }
.kbyDG-radar-label .label-name { font-size: 0.75rem !important; font-weight: 600 !important; color: rgba(255, 255, 255, 0.90) !important; text-transform: uppercase !important; letter-spacing: 0.5px !important; }
.kbyDG-radar-label .label-value { font-size: 0.65rem !important; color: #eed9a2 !important; font-weight: 500 !important; }
.kbyDG-radar-label.pos-0 { top: 2%; left: 50%; }
.kbyDG-radar-label.pos-1 { top: 28%; left: 96%; }
.kbyDG-radar-label.pos-2 { top: 88%; left: 82%; }
.kbyDG-radar-label.pos-3 { top: 88%; left: 18%; }
.kbyDG-radar-label.pos-4 { top: 28%; left: 4%; }

/* Crystal Shard Notes */
.kbyDG-ingredients { flex: 1 !important; min-width: 300px !important; }
.kbyDG-crystal-notes { display: flex !important; flex-direction: column !important; gap: 25px !important; }
.kbyDG-note-tier { margin-bottom: 10px !important; }
.kbyDG-tier-label { display: flex !important; align-items: center !important; gap: 8px !important; font-size: 0.85rem !important; font-weight: 600 !important; color: rgba(255, 255, 255, 0.90) !important; text-transform: uppercase !important; letter-spacing: 1px !important; margin-bottom: 12px !important; }
.kbyDG-tier-icon { font-size: 1rem !important; }
.kbyDG-tier-time { font-size: 0.7rem !important; color: #eed9a2 !important; font-weight: 400 !important; margin-left: auto !important; }
.kbyDG-crystal-grid { display: flex !important; gap: 12px !important; flex-wrap: wrap !important; }
.kbyDG-crystal-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(212,160,23,0.06)) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(212,160,23,0.2) !important;
    border-radius: 16px !important;
    padding: 16px 20px !important;
    display: flex !important; flex-direction: column !important; align-items: center !important; gap: 6px !important;
    flex: 1 !important; min-width: 90px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    position: relative !important; overflow: hidden !important;
}
.kbyDG-crystal-card::before {
    content: '' !important; position: absolute !important; top: -50% !important; left: -50% !important;
    width: 200% !important; height: 200% !important;
    background: linear-gradient(45deg, transparent 40%, rgba(212,160,23,0.08) 50%, transparent 60%) !important;
    animation: kbyDGCrystalShimmer 4s ease-in-out infinite !important;
}
@keyframes kbyDGCrystalShimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}
.kbyDG-crystal-card:hover { transform: translateY(-5px) scale(1.05) !important; box-shadow: 0 12px 30px rgba(212,160,23,0.2) !important; }
.kbyDG-crystal-name { font-size: 0.8rem !important; font-weight: 600 !important; color: rgba(255, 255, 255, 0.90) !important; position: relative !important; z-index: 1 !important; }

/* Metrics */
.kbyDG-metrics { display: flex !important; flex-direction: column !important; gap: 16px !important; }
.kbyDG-metric-item { display: flex !important; align-items: center !important; gap: 12px !important; }
.kbyDG-metric-label { min-width: 80px !important; font-size: 0.8rem !important; font-weight: 500 !important; color: rgba(255, 255, 255, 0.80) !important; text-transform: capitalize !important; }
.kbyDG-metric-bar { flex: 1 !important; height: 6px !important; background: rgba(255,255,255,0.08) !important; border-radius: 10px !important; overflow: hidden !important; }
.kbyDG-fill { background: linear-gradient(90deg, #d4a017, #e6b422) !important; border-radius: 10px !important; height: 100% !important; transition: width 1s ease !important; }
.kbyDG-metric-value { font-size: 0.75rem !important; font-weight: 600 !important; color: #eed9a2 !important; min-width: 35px !important; text-align: right !important; }

/* Description */
.kbyDG-fragrance-description { background: rgba(255,255,255,0.05) !important; backdrop-filter: blur(15px) !important; border: 1px solid rgba(212,160,23,0.15) !important; border-radius: 20px !important; padding: 35px !important; }
.kbyDG-fragrance-description .profile-title { color: rgba(255, 255, 255, 0.95) !important; }

/* Reddit Review */
.kbyDG-reddit-review-container { margin-top: 10px !important; }
.kbyDG-reddit-card { background: rgba(255,255,255,0.06) !important; backdrop-filter: blur(15px) !important; border: 1px solid rgba(212,160,23,0.2) !important; border-radius: 16px !important; padding: 25px !important; overflow: hidden !important; }
.kbyDG-reddit-header { display: flex !important; align-items: center !important; gap: 15px !important; margin-bottom: 15px !important; padding-bottom: 12px !important; border-bottom: 1px solid rgba(212,160,23,0.1) !important; }
.kbyDG-reddit-votes { display: flex !important; flex-direction: column !important; align-items: center !important; gap: 3px !important; }
.kbyDG-vote-btn { background: none !important; border: none !important; color: #eed9a2 !important; cursor: pointer !important; font-size: 0.8rem !important; padding: 2px !important; }
.kbyDG-vote-count { font-size: 0.85rem !important; font-weight: 700 !important; color: rgba(255, 255, 255, 0.90) !important; }
.kbyDG-subreddit { font-weight: 700 !important; color: rgba(255, 255, 255, 0.90) !important; font-size: 0.85rem !important; }
.kbyDG-post-dot { color: #eed9a2 !important; margin: 0 5px !important; }
.kbyDG-post-info, .kbyDG-post-time { color: rgba(255, 255, 255, 0.55) !important; font-size: 0.75rem !important; }
.kbyDG-user-avatar img { width: 36px !important; height: 36px !important; border-radius: 50% !important; }
.kbyDG-reddit-user { display: flex !important; align-items: center !important; gap: 10px !important; margin-bottom: 12px !important; }
.kbyDG-user-details { display: flex !important; flex-direction: column !important; }
.kbyDG-username { font-weight: 600 !important; color: rgba(255, 255, 255, 0.90) !important; font-size: 0.85rem !important; }
.kbyDG-reddit-text p { color: rgba(255, 255, 255, 0.80) !important; line-height: 1.7 !important; font-style: italic !important; }
.kbyDG-reddit-engagement { display: flex !important; gap: 20px !important; margin-top: 15px !important; padding-top: 12px !important; border-top: 1px solid rgba(212,160,23,0.1) !important; }
.kbyDG-engagement-item { display: flex !important; align-items: center !important; gap: 5px !important; font-size: 0.8rem !important; color: rgba(255, 255, 255, 0.55) !important; }

/* Mood/Season Indicators */
.kbyDG-perfume-rating { padding: 30px 0 !important; color: rgba(255, 255, 255, 0.88) !important; }
.kbyDG-rating-indicators { display: flex !important; gap: 30px !important; flex-wrap: wrap !important; margin-bottom: 25px !important; }
.kbyDG-mood-indicators, .kbyDG-seasonal-indicators { display: flex !important; gap: 12px !important; flex-wrap: wrap !important; }
.kbyDG-indicator-item { display: flex !important; flex-direction: column !important; align-items: center !important; gap: 5px !important; opacity: 0.4 !important; transition: opacity 0.3s ease !important; }
.kbyDG-indicator-item.active { opacity: 1 !important; }
.kbyDG-indicator-icon { font-size: 1.3rem !important; }
.kbyDG-indicator-label { font-size: 0.65rem !important; text-transform: uppercase !important; letter-spacing: 0.5px !important; color: rgba(255, 255, 255, 0.68) !important; }
.kbyDG-indicator-bar { width: 30px !important; height: 3px !important; background: rgba(212,160,23,0.2) !important; border-radius: 2px !important; }
.kbyDG-indicator-item.active .kbyDG-indicator-bar { background: #d4a017 !important; }
.kbyDG-rating-title { font-size: 1rem !important; color: rgba(255, 255, 255, 0.92) !important; font-weight: 400 !important; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45) !important; }
.kbyDG-score { font-weight: 700 !important; color: rgba(255, 255, 255, 0.98) !important; font-size: 1.3rem !important; }
.kbyDG-votes { font-weight: 600 !important; color: #eed9a2 !important; }
.kbyDG-perfume-description p { color: rgba(255, 255, 255, 0.82) !important; line-height: 1.7 !important; margin-top: 15px !important; }
.kbyDG-perfume-description strong { color: rgba(255, 255, 255, 0.95) !important; }

/* Favourite & Cart Buttons */
.kbyDG-theme .favorite-btn { color: rgba(255, 255, 255, 0.90) !important; border: 1px solid rgba(212,160,23, 0.3) !important; background: transparent !important; }
.kbyDG-theme .favorite-btn:hover { background: rgba(212,160,23, 0.08) !important; border-color: #d4a017 !important; color: rgba(255, 255, 255, 0.95) !important; box-shadow: 0 4px 20px rgba(212,160,23, 0.2) !important; }
.kbyDG-theme .favorite-btn .heart-outline, .kbyDG-theme .favorite-btn .heart-filled { color: #eed9a2 !important; }
.kbyDG-theme .favorite-btn.favorited { background: rgba(212,160,23, 0.06) !important; border-color: #d4a017 !important; color: rgba(255, 255, 255, 0.95) !important; }
.kbyDG-theme .add-to-cart-btn { color: rgba(255, 255, 255, 0.90) !important; border: 1px solid rgba(212,160,23, 0.3) !important; background: transparent !important; }
.kbyDG-theme .add-to-cart-btn:hover { background: rgba(212,160,23, 0.08) !important; border-color: #d4a017 !important; box-shadow: 0 4px 20px rgba(212,160,23, 0.2) !important; }
.kbyDG-theme .add-to-cart-btn .cart-icon svg { color: rgba(255, 255, 255, 0.90) !important; stroke: rgba(255, 255, 255, 0.90) !important; }
.kbyDG-theme .add-to-cart-btn.added { border-color: rgba(229, 72, 77, 0.3) !important; color: #dc3545 !important; }

/* Price Section */
.kbyDG-theme .product-price { color: #fff !important; text-shadow: 0 1px 3px rgba(0,0,0,0.2) !important; }
.kbyDG-theme .price-currency, .kbyDG-theme .price-unit { color: rgba(255,255,255,0.85) !important; }
.kbyDG-theme .price-subtitle { color: rgba(212,160,23, 0.5) !important; letter-spacing: 3px !important; }
.kbyDG-theme .price-ornament { border-color: rgba(212,160,23, 0.35) !important; }
.kbyDG-theme .price-badge:hover .price-ornament { border-color: #d4a017 !important; }

/* Card Enhancements */
.kbyDG-theme .product-actions-buttons { position: relative !important; }
.kbyDG-theme .product-actions-buttons::before { content: '' !important; position: absolute !important; top: -15px !important; left: 15% !important; right: 15% !important; height: 1px !important; background: linear-gradient(90deg, transparent, rgba(212,160,23, 0.25), transparent) !important; }

/* Responsive */
@media (max-width: 768px) {
    .kbyDG-product-section { flex-direction: column !important; text-align: center !important; }
    .kbyDG-image { width: 250px !important; }
    .kbyDG-profiles-container { flex-direction: row !important; flex-wrap: nowrap !important; overflow-x: auto !important; }
    .kbyDG-rating-row { flex-direction: column !important; }
}
