/**
 * Product Subtitles - Frontend Styles
 * Pill/capsule style badges - left aligned
 *
 * @package Dispensary_Integrations
 */

/* ==========================================================================
   Subtitle Wrapper - Left Aligned
   ========================================================================== */

.dcl-subtitles-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 6px 0 4px 0;
    align-items: center;
    justify-content: flex-start;
    line-height: 1;
}

/* Goya theme - left align */
.goya-theme .dcl-subtitles-wrapper,
.theme-flavor .dcl-subtitles-wrapper,
ul.products li.product .dcl-subtitles-wrapper,
.woocommerce ul.products li.product .dcl-subtitles-wrapper,
.woocommerce-page ul.products li.product .dcl-subtitles-wrapper {
    justify-content: flex-start;
    text-align: left;
}

/* ==========================================================================
   Individual Subtitle Badges - Pill Style
   ========================================================================== */

.dcl-subtitle {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.3;
    white-space: nowrap;
    vertical-align: middle;
}

/* Width modes */
.dcl-subtitle-width-fit {
    width: auto;
}

.dcl-subtitle-width-full {
    width: 100%;
    text-align: center;
    border-radius: 6px;
}

.dcl-subtitle-width-inherit {
    width: inherit;
}

/* ==========================================================================
   Goya Theme Specific
   ========================================================================== */

/* Ensure left alignment in Goya product grid */
.products .product .dcl-subtitles-wrapper {
    justify-content: flex-start;
}

/* Product card text alignment fix */
.product .dcl-subtitles-wrapper {
    width: 100%;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 768px) {
    .dcl-subtitles-wrapper {
        gap: 4px;
        margin: 5px 0 3px 0;
    }

    .dcl-subtitle {
        padding: 4px 10px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .dcl-subtitle {
        padding: 3px 8px;
        font-size: 9px;
    }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    .dcl-subtitle {
        transition: none;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .dcl-subtitles-wrapper {
        break-inside: avoid;
    }

    .dcl-subtitle {
        border: 1px solid currentColor;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}
