/* Custom Animations and Overrides */

/* Flor Dress header */
.site-header {
    box-shadow: none;
    top: 0;
    left: 0;
}

.header-search {
    width: min(320px, 100%);
    height: 42px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: transparent;
}

.header-search-collapsible {
    width: 42px;
    border-color: transparent;
    overflow: hidden;
    transition: width 0.25s ease, border-color 0.2s ease;
}

.header-search-collapsible.is-open,
.header-search-collapsible:focus-within {
    width: min(320px, 100%);
    border-color: #fff;
}

.header-search input {
    min-width: 0;
    flex: 1;
    height: 100%;
    padding: 0 12px;
    border: 0;
    color: #fff;
    font-size: 13px;
    outline: none;
    background: transparent;
}

.header-search-collapsible input {
    width: 0;
    padding-left: 0;
    padding-right: 0;
    opacity: 0;
    transition: opacity 0.2s ease, padding 0.2s ease;
}

.header-search-collapsible.is-open input,
.header-search-collapsible:focus-within input {
    width: auto;
    padding-left: 12px;
    padding-right: 12px;
    opacity: 1;
}

.header-search input::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

.header-search button {
    width: 42px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.header-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
}

.header-logo img {
    mix-blend-mode: lighten;
}

.header-logo span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 0.85;
}

.header-logo strong {
    font-family: 'Great Vibes', cursive;
    font-size: 46px;
    font-weight: 400;
}

.header-logo small {
    margin-left: 18px;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

.header-category-scroll {
    min-height: 54px;
    padding: 14px 2px 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.45) transparent;
}

.header-category-scroll::-webkit-scrollbar {
    height: 4px;
}

.header-category-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.header-category-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 999px;
}

.header-category-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.55);
}

.header-nav-link {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.header-nav-link:hover {
    color: #fff;
}

@media (max-width: 767px) {
    .header-main .grid {
        min-height: 78px;
    }

    .header-logo img {
        height: 44px;
    }

    .header-logo strong {
        font-size: 38px;
    }

    .header-logo small {
        font-size: 9px;
        margin-left: 14px;
    }
}

/* Promotional banner carousel */
.promo-carousel-section {
    margin-top: 166px;
    background: #EFE8DD;
}

.promo-carousel {
    position: relative;
    width: 100%;
    min-height: 430px;
    overflow: hidden;
    background: #1f2f1d;
}

.promo-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.promo-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.promo-slide img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.promo-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(30, 47, 28, 0.78), rgba(30, 47, 28, 0.2), rgba(30, 47, 28, 0.55));
}

.promo-slide-content {
    position: absolute;
    z-index: 1;
    left: clamp(24px, 10vw, 180px);
    top: 50%;
    max-width: 460px;
    color: #fff;
    transform: translateY(-50%);
}

.promo-slide-content span {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.promo-slide-content h2 {
    margin: 0 0 12px;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 700;
    line-height: 0.95;
}

.promo-slide-content p {
    max-width: 360px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
}

.promo-slide-content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 28px;
    background: #fff;
    color: #3A5A35;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.promo-carousel-btn {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #3A5A35;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.promo-carousel-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.04);
}

.promo-carousel-prev {
    left: 24px;
}

.promo-carousel-next {
    right: 24px;
}

.promo-carousel-dots {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 22px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.promo-carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    transition: background 0.2s ease, transform 0.2s ease;
}

.promo-carousel-dots button.is-active {
    background: #fff;
    transform: scale(1.25);
}

@media (max-width: 767px) {
    .promo-carousel-section {
        margin-top: 94px;
    }

    .promo-carousel,
    .promo-slide img {
        min-height: 360px;
    }

    .promo-slide::after {
        background: linear-gradient(90deg, rgba(30, 47, 28, 0.84), rgba(30, 47, 28, 0.34));
    }

    .promo-slide-content {
        left: 24px;
        right: 24px;
        max-width: none;
    }

    .promo-slide-content p {
        font-size: 15px;
    }

    .promo-carousel-btn {
        width: 40px;
        height: 40px;
    }

    .promo-carousel-prev {
        left: 12px;
    }

    .promo-carousel-next {
        right: 12px;
    }
}

/* Floating animation for badge */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.floating-animation {
    animation: float 4s ease-in-out infinite;
}

/* Hero reveal animations */
.hero-content {
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.2s;
}

.hero-image {
    animation: fadeInLeft 1s ease-out forwards;
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Product Card Hover Effect */
.product-card-image {
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image {
    transform: scale(1.05);
}

.add-to-cart-btn {
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .add-to-cart-btn {
    transform: translateY(0);
    opacity: 1;
}

/* Payment checkout */
.payment-checkout-wrapper {
    position: fixed;
    inset: 0;
    z-index: 90;
}

.payment-checkout-wrapper.hidden {
    display: none;
}

.payment-checkout-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.48);
    backdrop-filter: blur(6px);
}

.payment-checkout-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(980px, calc(100vw - 28px));
    max-height: min(860px, calc(100vh - 28px));
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.payment-checkout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    border-bottom: 1px solid #edf0ec;
    background: #fbfaf7;
}

.payment-checkout-header h2 {
    color: #111827;
    font-size: 24px;
    font-weight: 700;
}

.payment-checkout-eyebrow {
    color: #3A5A35;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.payment-icon-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
}

.payment-checkout-content {
    overflow-y: auto;
    padding: 24px;
}

.payment-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 24px;
}

.payment-form,
.payment-summary,
.payment-pix,
.payment-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    padding: 20px;
}

.payment-section-title {
    margin-bottom: 18px;
}

.payment-section-title h3,
.payment-summary h3,
.payment-state h3 {
    color: #111827;
    font-size: 18px;
    font-weight: 700;
}

.payment-section-title p,
.payment-state p {
    margin-top: 4px;
    color: #6b7280;
    font-size: 14px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.payment-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.payment-form label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
}

.payment-form input,
.payment-form select,
.payment-card-field {
    min-height: 44px;
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 12px;
    color: #111827;
    font-size: 14px;
    outline: none;
    background: #fff;
}

.payment-form input:focus,
.payment-form select:focus,
.payment-card-field:focus-within {
    border-color: #3A5A35;
    box-shadow: 0 0 0 3px rgba(58, 90, 53, 0.14);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0;
}

.payment-method {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    color: #374151;
    font-weight: 700;
    background: #fff;
}

.payment-method.active {
    border-color: #3A5A35;
    color: #3A5A35;
    background: #f2f6f1;
}

.payment-primary-btn,
.payment-secondary-btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border-radius: 8px;
    font-weight: 700;
    transition: transform 0.18s ease, background 0.18s ease;
}

.payment-primary-btn {
    color: #fff;
    background: #3A5A35;
}

.payment-primary-btn:hover {
    background: #2c4628;
}

.payment-primary-btn:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

.payment-secondary-btn {
    color: #3A5A35;
    border: 1px solid #c3dac1;
    background: #f2f6f1;
}

.payment-summary-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 18px 0;
}

.payment-summary-item,
.payment-summary-total,
.payment-success-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #4b5563;
    font-size: 14px;
}

.payment-summary-item strong,
.payment-summary-total strong {
    color: #111827;
    white-space: nowrap;
}

.payment-summary-total {
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
    font-size: 16px;
    font-weight: 700;
}

.payment-pix-grid {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 20px;
}

.payment-qr-box {
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
}

.payment-qr-box img {
    width: 220px;
    height: 220px;
    object-fit: contain;
}

.payment-copy-box textarea {
    width: 100%;
    min-height: 132px;
    margin: 10px 0;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px;
    color: #374151;
    font-size: 13px;
    resize: vertical;
}

.payment-countdown {
    color: #374151;
    font-size: 14px;
}

.payment-waiting {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: #6b7280;
    font-size: 14px;
}

.payment-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    text-align: center;
    gap: 14px;
}

.payment-state-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
}

.payment-state-icon.success {
    color: #166534;
    background: #dcfce7;
}

.payment-state-icon.error {
    color: #991b1b;
    background: #fee2e2;
}

.payment-success-details {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    width: min(520px, 100%);
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-align: left;
}

.payment-success-details strong {
    min-width: 0;
    overflow-wrap: anywhere;
    color: #111827;
}

.payment-spinner {
    width: 34px;
    height: 34px;
    border: 3px solid #dce8da;
    border-top-color: #3A5A35;
    border-radius: 999px;
    animation: payment-spin 0.8s linear infinite;
}

.payment-spinner.small {
    width: 20px;
    height: 20px;
    border-width: 2px;
}

.progress-bar {
    width: 100%;
    height: 4px;
}

.progress-bar.hidden {
    display: none;
}

@keyframes payment-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 860px) {
    .payment-layout,
    .payment-pix-grid {
        grid-template-columns: 1fr;
    }

    .payment-summary {
        order: -1;
    }
}

@media (max-width: 640px) {
    .payment-checkout-panel {
        width: 100%;
        height: 100%;
        max-height: none;
        border-radius: 0;
    }

    .payment-checkout-content {
        padding: 16px;
    }

    .payment-grid,
    .payment-grid.compact,
    .payment-methods {
        grid-template-columns: 1fr;
    }
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #6aa166; /* primary-400 */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #488344; /* primary-500 */
}

/* Mobile Menu transition fixes */
.mobile-menu-active {
    display: flex !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Navbar scroll effect */
.navbar-scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    background-color: rgba(255, 255, 255, 0.95);
}

/* ============================================
   CÁLCULO DE FRETE (MELHOR ENVIO)
   ============================================ */

.shipping-results {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.shipping-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    color: #6b7280;
    font-size: 14px;
}

.shipping-empty {
    padding: 12px 14px;
    border: 1px dashed #d1d5db;
    border-radius: 8px;
    color: #9ca3af;
    font-size: 14px;
    text-align: center;
}

.shipping-error {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border: 1px solid #fecaca;
    border-radius: 8px;
    background: #fff5f5;
    color: #b91c1c;
    font-size: 14px;
}

.shipping-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.shipping-option:hover {
    border-color: #3A5A35;
    background: #f9fcf8;
}

.shipping-option input[type="radio"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: #3A5A35;
    cursor: pointer;
}

.shipping-option input[type="radio"]:checked ~ .shipping-option-info {
    color: #2c4628;
}

.shipping-option:has(input:checked) {
    border-color: #3A5A35;
    background: #f2f6f1;
    box-shadow: 0 0 0 2px rgba(58, 90, 53, 0.12);
}

.shipping-option-info {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex-wrap: wrap;
}

.shipping-company-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.shipping-company-name {
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.shipping-option-name {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shipping-option-time {
    font-size: 12px;
    color: #6b7280;
    white-space: nowrap;
    margin-left: auto;
}

.shipping-option-price {
    font-size: 15px;
    font-weight: 700;
    color: #3A5A35;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ============================================
   SISTEMA DE TAMANHOS
   ============================================ */

/* Modal de seleção de tamanho (vitrine) */
.size-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    animation: size-modal-in 0.22s ease;
}

@media (min-width: 640px) {
    .size-modal-overlay {
        align-items: center;
    }
}

@keyframes size-modal-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.size-modal {
    background: #fff;
    border-radius: 20px 20px 0 0;
    padding: 28px 24px 32px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.18);
    animation: size-modal-slide 0.28s cubic-bezier(0.34,1.56,0.64,1);
}

@media (min-width: 640px) {
    .size-modal {
        border-radius: 20px;
    }
}

@keyframes size-modal-slide {
    from { transform: translateY(40px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.size-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.size-modal-header h3 {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}

.size-modal-header p {
    font-size: 13px;
    color: #6b7280;
    margin-top: 3px;
}

.size-modal-close {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 20px;
    line-height: 1;
    transition: background 0.15s;
}

.size-modal-close:hover {
    background: #e5e7eb;
}

.size-modal-label {
    font-size: 12px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 18px 0 10px;
}

/* Grade de botões de tamanho */
.size-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.size-btn {
    min-width: 52px;
    height: 44px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s, transform 0.12s;
}

.size-btn:hover {
    border-color: #3A5A35;
    color: #3A5A35;
    background: #f2f6f1;
    transform: translateY(-1px);
}

.size-btn.active {
    border-color: #3A5A35;
    background: #3A5A35;
    color: #fff;
    box-shadow: 0 3px 10px rgba(58,90,53,0.28);
    transform: translateY(-1px);
}

.size-modal-confirm {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    background: #3A5A35;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: background 0.18s, transform 0.18s;
}

.size-modal-confirm:hover {
    background: #2c4628;
    transform: translateY(-1px);
}

.size-modal-confirm:disabled {
    background: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.size-modal-error {
    font-size: 13px;
    color: #dc2626;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
    min-height: 20px;
}

/* Badge de tamanho no carrinho e checkout */
.cart-item-size {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #3A5A35;
    background: #f2f6f1;
    border: 1px solid #c3dac1;
    border-radius: 5px;
    padding: 1px 7px;
    margin-top: 3px;
    letter-spacing: 0.04em;
}

.payment-item-size {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    font-weight: 700;
    color: #3A5A35;
    letter-spacing: 0.03em;
}

.payment-success-items {
    width: 100%;
    margin: 18px 0 6px;
    padding: 12px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.payment-success-items div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
    font-size: 13px;
    color: #4b5563;
}

.payment-success-items strong {
    color: #111827;
    white-space: nowrap;
}

/* Tags de tamanho no painel admin */
.admin-size-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.admin-size-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border: 1.5px solid #3A5A35;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #3A5A35;
    background: #f2f6f1;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    user-select: none;
}

.admin-size-tag.selected {
    background: #3A5A35;
    color: #fff;
}

.admin-size-tag .remove-tag {
    font-size: 15px;
    line-height: 1;
    opacity: 0.7;
}

.admin-sizes-display {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.admin-size-pill {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    background: #f2f6f1;
    color: #3A5A35;
    border: 1px solid #c3dac1;
}
