/* CSS for Breeze Cooling Pillow */
/* Breeze PDP — Minimal CSS (only what Gutenberg cannot do) */

/* 1. Label styling - Gutenberg can't do letter-spacing */
.label-sm {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* 2. Stat numbers - larger than Gutenberg presets */
.stat-value {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
}

/* 3. Fit grid - remove list bullets */
.fit-grid ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.fit-grid li {
    padding: 6px 0;
    padding-left: 28px;
    position: relative;
}
.fit-grid li::before {
    position: absolute;
    left: 0;
    font-size: 16px;
}
.fit-not li::before { content: "✕"; color: #9A8E86; }
.fit-yes li::before { content: "✓"; color: #3B5FA0; }

/* 4. UGC Gallery - maintain 3:4 aspect ratio for 720x960 images */
.ugc-gallery.wp-block-gallery .wp-block-image {
    aspect-ratio: 3/4;
}
.ugc-gallery.wp-block-gallery .wp-block-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* 5. Mobile stacking for fit grid */
@media (max-width: 782px) {
    .fit-grid {
        flex-direction: column;
    }
    .fit-grid > .wp-block-column:first-child {
        border-right: none !important;
        border-bottom: 1px solid #e5e0db;
    }
}
/* End CSS for Breeze Cooling Pillow */