/**
 * Cannabis Profile Display Styles
 */

/* Summary display on product page */
.wccwp-cannabis-profile-summary {
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

/* Strain type badges */
.wccwp-strain-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wccwp-strain-indica {
    background: #7c3aed;
    color: white;
}

.wccwp-strain-sativa {
    background: #f97316;
    color: white;
}

.wccwp-strain-hybrid {
    background: #22c55e;
    color: white;
}

.wccwp-strain-cbd {
    background: #3b82f6;
    color: white;
}

/* Cannabinoid info */
.wccwp-cannabinoid-info {
    display: flex;
    gap: 15px;
}

.wccwp-thc,
.wccwp-cbd {
    font-size: 14px;
}

.wccwp-thc strong {
    color: #eab308;
}

.wccwp-cbd strong {
    color: #3b82f6;
}

/* Dominant terpene */
.wccwp-dominant-terpene {
    font-size: 14px;
    color: #4b5563;
}

/* Top effects */
.wccwp-top-effects {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.wccwp-effect-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #dcfce7;
    color: #166534;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* Full cannabis profile (tab content) */
.wccwp-cannabis-profile-full {
    padding: 20px 0;
}

.wccwp-profile-section {
    margin-bottom: 25px;
}

.wccwp-profile-section h4 {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.wccwp-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Terpene tags */
.wccwp-terpene-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f3f4f6;
    border-radius: 20px;
    font-size: 13px;
    color: #374151;
}

.wccwp-color-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Effect tags with category colors */
.wccwp-effect-positive {
    background: #dcfce7;
    color: #166534;
}

.wccwp-effect-negative {
    background: #fee2e2;
    color: #991b1b;
}

.wccwp-effect-neutral {
    background: #f3f4f6;
    color: #374151;
}

.wccwp-effect-icon {
    font-size: 14px;
}

/* Flavor tags */
.wccwp-flavor-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f5f3ff;
    color: #6b21a8;
    border-radius: 20px;
    font-size: 13px;
}

/* Medical benefit tags */
.wccwp-benefit-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 20px;
    font-size: 13px;
}

.wccwp-benefit-icon {
    font-size: 14px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .wccwp-cannabis-profile-summary {
        background: #1f2937;
    }

    .wccwp-dominant-terpene {
        color: #9ca3af;
    }

    .wccwp-profile-section h4 {
        color: #f9fafb;
    }

    .wccwp-terpene-tag {
        background: #374151;
        color: #e5e7eb;
    }

    .wccwp-effect-positive {
        background: #064e3b;
        color: #a7f3d0;
    }

    .wccwp-effect-negative {
        background: #7f1d1d;
        color: #fecaca;
    }

    .wccwp-effect-neutral {
        background: #374151;
        color: #e5e7eb;
    }

    .wccwp-flavor-tag {
        background: #4c1d95;
        color: #e9d5ff;
    }

    .wccwp-benefit-tag {
        background: #1e3a8a;
        color: #bfdbfe;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .wccwp-cannabis-profile-summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .wccwp-cannabinoid-info {
        flex-direction: column;
        gap: 5px;
    }
}
