/* ===== CSS Design System ===== */
:root {
    --bg-cream: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: rgba(0, 0, 0, 0.6);
    --accent-blue: #4A7794;
    --accent-red: #C42127;
    --success-green: #22c55e;
    --disabled-grey: #d1d5db;
    --border-light: rgba(0, 0, 0, 0.1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-cream);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Container ===== */
.container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* ===== Pages ===== */
.page {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
    opacity: 0;
    transform: scale(0.95);
    transition: var(--transition-smooth);
}

.page.active {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

/* ===== Main Page ===== */
#main-page {
    justify-content: flex-start;
    padding-top: 8vh;
}

.logo-container {
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.logo {
    max-width: 280px;
    height: auto;
    transition: var(--transition-smooth);
}

.logo:hover {
    transform: scale(1.03);
}

.shirts-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.shirt-option {
    cursor: pointer;
    transition: var(--transition-bounce);
    position: relative;
    background: transparent;
    padding: 1rem;
}

.shirt-option img {
    max-width: 440px;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.shirt-option:hover {
    transform: translateY(-8px) scale(1.03);
}

.shirt-option::before {
    content: '';
    position: absolute;
    display: none;
}

/* ===== Detail Page ===== */
#detail-page {
    position: relative;
}

.nav-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    background: var(--bg-cream);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    position: absolute;
    z-index: 10;
}

.nav-btn:hover {
    background: #f3f4f6;
    border-color: var(--text-primary);
}

.back-btn {
    top: 2rem;
    left: 33%;
    transform: translateX(-50%);
}

.rotate-btn {
    top: 2rem;
    left: 66%;
    transform: translateX(-50%);
}

.rotate-btn svg {
    transition: transform 0.4s ease-in-out;
}

.rotate-btn.spinning svg {
    transform: rotate(360deg);
}

.product-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: scaleIn 0.5s ease-out;
}

.shirt-display {
    background: transparent;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.shirt-display img {
    max-width: 580px;
    max-height: 680px;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

/* ===== Size Selection ===== */
.size-selection {
    margin-top: 1.5rem;
    animation: fadeInUp 0.5s ease-out 0.2s both;
}

.price-display {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin: 1rem 0;
}

.size-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.size-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    background: var(--bg-cream);
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.size-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--success-green);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-smooth);
}

.size-btn:hover:not(.disabled):not(.selected) {
    border-color: var(--text-primary);
    transform: scale(1.05);
}

.size-btn.selected {
    background: var(--success-green);
    border-color: var(--success-green);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

.size-btn.disabled {
    background: #f3f4f6;
    border-color: var(--disabled-grey);
    color: rgba(0, 0, 0, 0.4);
    cursor: default;
}

/* ===== Email Form ===== */
.email-form {
    margin-top: 1.5rem;
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.email-form.visible {
    display: block;
}

.email-input-container {
    display: flex;
    gap: 1rem;
    align-items: center;
}

#email-input {
    width: 300px;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 2px solid var(--border-light);
    background: var(--bg-cream);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition-smooth);
}

#email-input::placeholder {
    color: var(--text-secondary);
    font-weight: 600;
}

#email-input:focus {
    border-color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.submit-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid var(--border-light);
    background: var(--bg-cream);
    color: var(--text-primary);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.submit-btn:hover:not(.submitted) {
    border-color: var(--text-primary);
    transform: scale(1.05);
}

.submit-text {
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.submit-check {
    position: absolute;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition-bounce);
}

.submit-btn.submitted {
    background: var(--success-green);
    border-color: var(--success-green);
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.5);
}

.submit-btn.submitted .submit-text {
    opacity: 0;
    transform: scale(0);
}

.submit-btn.submitted .submit-check {
    opacity: 1;
    transform: scale(1);
}

/* ===== Help Button ===== */
.help-btn {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    height: 56px;
    padding: 0 1.8rem;
    border-radius: 50px;
    border: 3px solid var(--border-light);
    background: var(--bg-cream);
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    z-index: 10;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-btn:hover {
    transform: translateX(-50%) scale(1.05);
}

.help-btn.blue {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.help-btn.red {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

/* ===== Size Chart Page ===== */
.size-chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.size-chart-img {
    max-width: 700px;
    max-height: 500px;
    width: auto;
    height: auto;
    animation: fadeInUp 0.5s ease-out;
}

.size-chart-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 1.5rem 0 0.5rem 0;
    animation: fadeInUp 0.5s ease-out 0.1s both;
}

.size-chart-support {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.5s ease-out 0.2s both;
}


.back-to-detail-btn {
    height: 56px;
    padding: 0 2rem;
    border-radius: 50px;
    border: 3px solid var(--border-light);
    background: var(--bg-cream);
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.5s ease-out 0.3s both;
}

.back-to-detail-btn:hover {
    transform: scale(1.05);
}

.back-to-detail-btn.blue {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.back-to-detail-btn.red {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

/* ===== Figurine Easter Egg ===== */
/* Common styles for all figurines */
.figurine-left,
.figurine-right,
.figurine-bottom {
    position: fixed;
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    transition: transform 1.2s ease-in-out, opacity 0.3s ease;
}

.figurine-left img,
.figurine-right img,
.figurine-bottom img {
    width: 600px;
    height: auto;
}

/* Left figurine - pre-rotated, head points right */
.figurine-left {
    left: 0;
    transform: translateX(-100%) translateY(-50%);
}

.figurine-left img {
    transform: rotate(90deg);
}

.figurine-left.visible {
    opacity: 1;
}

.figurine-left.peek-in {
    transform: translateX(-20%) translateY(-50%);
}

/* Right figurine - pre-rotated, head points left */
.figurine-right {
    right: 0;
    transform: translateX(100%) translateY(-50%);
}

.figurine-right img {
    transform: rotate(-90deg);
}

.figurine-right.visible {
    opacity: 1;
}

.figurine-right.peek-in {
    transform: translateX(20%) translateY(-50%);
}

/* Bottom figurine - upright, head points up */
.figurine-bottom {
    bottom: 0;
    transform: translateX(-50%) translateY(100%);
}

.figurine-bottom.visible {
    opacity: 1;
}

.figurine-bottom.peek-in {
    transform: translateX(-50%) translateY(20%);
}

/* ===== Confirmation Popup ===== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.visible {
    display: flex;
    opacity: 1;
}

/* ===== VOP Popup ===== */
.vop-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vop-overlay.visible {
    display: flex;
    opacity: 1;
}

.vop-popup-container {
    position: relative;
    background: var(--bg-cream);
    border-radius: 24px;
    padding: 3rem 1.5rem 1.5rem 1.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    animation: scaleIn 0.3s ease-out;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.vop-scroll-container {
    overflow-y: auto;
    max-height: calc(80vh - 5rem);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vop-page {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.popup-container {
    position: relative;
    background: var(--bg-cream);
    border-radius: 24px;
    padding: 3rem 4rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: scaleIn 0.3s ease-out;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.popup-back-btn {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    background: var(--bg-cream);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.popup-back-btn:hover {
    border-color: var(--text-primary);
    transform: scale(1.1);
}

.popup-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.popup-inputs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.popup-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.popup-input-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}

.popup-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    background: var(--bg-cream);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition-smooth);
}

.popup-input::placeholder {
    color: var(--text-secondary);
}

.popup-input:focus {
    border-color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.popup-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.popup-checkbox-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    transition: background 0.2s ease;
}

.popup-checkbox-row:hover {
    background: rgba(0, 0, 0, 0.03);
}

.popup-checkbox-row input[type="checkbox"] {
    display: none;
}

.custom-checkbox {
    width: 28px;
    height: 28px;
    border: 3px solid var(--border-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.popup-checkbox-row input[type="checkbox"]:checked+.custom-checkbox {
    background: var(--success-green);
    border-color: var(--success-green);
}

.popup-checkbox-row input[type="checkbox"]:checked+.custom-checkbox::after {
    content: '';
    width: 8px;
    height: 14px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg) translateY(-1px);
}

.checkbox-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    text-align: right;
    flex: 1;
}

.popup-confirm-btn {
    height: 48px;
    padding: 0 2rem;
    border-radius: 50px;
    border: 3px solid var(--border-light);
    background: var(--bg-cream);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.vop-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    background: var(--bg-cream);
    color: var(--text-primary);
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vop-btn:hover {
    border-color: var(--text-primary);
    transform: scale(1.1);
}

.popup-confirm-btn:hover:not(.confirmed):not(:disabled) {
    border-color: var(--text-primary);
    transform: scale(1.05);
}

.popup-confirm-btn:disabled {
    opacity: 0.5;
    cursor: default;
}

.popup-confirm-btn.confirmed {
    background: var(--success-green);
    border-color: var(--success-green);
    color: white;
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.5);
}

/* ===== Thank You Page ===== */
.thank-you-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
}

.thank-you-logo {
    max-width: 600px;
    width: 90%;
    height: auto;
}

.thank-you-logo.blue {
    filter: sepia(100%) hue-rotate(180deg) saturate(1.5);
}

.payment-qr {
    max-width: 250px;
    width: 60%;
    height: auto;
    margin-top: 1rem;
    border-radius: 12px;
    animation: fadeInUp 0.5s ease-out 0.3s both;
}

.thank-you-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    max-width: 400px;
    line-height: 1.6;
    margin: 1rem 0;
    padding: 0 1rem;
    animation: fadeInUp 0.5s ease-out 0.1s both;
}

.thank-you-back-btn {
    height: 48px;
    padding: 0 2rem;
    border-radius: 50px;
    border: 3px solid var(--border-light);
    background: var(--bg-cream);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    margin-top: 1.5rem;
    animation: fadeInUp 0.5s ease-out 0.4s both;
}

.thank-you-back-btn:hover {
    border-color: var(--text-primary);
    transform: scale(1.05);
}

.screenshot-reminder {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-top: 1rem;
    animation: fadeInUp 0.5s ease-out 0.35s both;
}

.support-email {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.85rem;
    color: var(--text-primary);
    text-align: center;
    margin-top: 0.5rem;
    animation: fadeInUp 0.5s ease-out 0.4s both;
}

.logo-container {
    cursor: pointer;
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes flipRotate {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(180deg);
    }
}

.shirt-display.flipping img {
    animation: flipOut 0.3s ease-in-out forwards;
}

@keyframes flipOut {
    0% {
        transform: rotateY(0deg);
        opacity: 1;
    }

    50% {
        transform: rotateY(90deg);
        opacity: 0;
    }

    100% {
        transform: rotateY(90deg);
        opacity: 0;
    }
}

@keyframes flipIn {
    0% {
        transform: rotateY(-90deg);
        opacity: 0;
    }

    50% {
        transform: rotateY(-90deg);
        opacity: 0;
    }

    100% {
        transform: rotateY(0deg);
        opacity: 1;
    }
}

.shirt-display.flip-in img {
    animation: flipIn 0.3s ease-in-out forwards;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .shirts-container {
        flex-direction: column;
        gap: 2rem;
    }

    .shirt-option img {
        max-width: 280px;
    }

    .logo {
        max-width: 200px;
    }

    .shirt-display img {
        max-width: 250px;
    }

    .size-btn {
        width: 48px;
        height: 48px;
        font-size: 0.8rem;
    }

    #email-input {
        width: 220px;
    }

    /* Reduce figurine peek-in amount on mobile */
    .figurine-left.peek-in {
        transform: translateX(-40%) translateY(-50%);
    }

    .figurine-right.peek-in {
        transform: translateX(40%) translateY(-50%);
    }

    .figurine-bottom.peek-in {
        transform: translateX(-50%) translateY(40%);
    }

    /* Mobile button sizes - smaller on mobile */
    .nav-btn {
        width: 36px;
        height: 36px;
    }

    .nav-btn svg {
        width: 18px;
        height: 18px;
    }

    .back-btn {
        top: 1rem;
        left: 20%;
    }

    .rotate-btn {
        top: 1rem;
        left: 80%;
    }

    .help-btn {
        top: 1rem;
        height: 36px;
        padding: 0 0.8rem;
        font-size: 0.85rem;
    }

    /* Size chart mobile adjustments */
    .size-chart-img {
        max-width: 95%;
        max-height: 50vh;
    }

    .size-chart-title {
        font-size: 1.4rem;
        margin: 1rem 0 0.3rem 0;
        text-align: center;
    }

    .size-chart-support {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .back-to-detail-btn {
        height: 44px;
        padding: 0 1.5rem;
        font-size: 1rem;
    }

    /* Confirmation popup mobile adjustments */
    .popup-container {
        padding: 3rem 1.5rem 1.5rem 1.5rem;
        max-width: 95%;
        width: 95%;
    }

    .popup-title {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        margin-top: 1rem;
    }

    .popup-warning {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .name-inputs-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .name-input-group {
        width: 100%;
    }

    .name-input-group label {
        font-size: 0.85rem;
    }

    .name-input-group input {
        width: 100%;
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }

    .popup-confirm-btn {
        height: 44px;
        font-size: 0.9rem;
        padding: 0 1.5rem;
    }

    .popup-checkbox-row {
        flex-wrap: wrap;
        gap: 0.3rem;
    }

    .checkbox-label {
        white-space: normal;
        text-align: left;
        font-size: 0.65rem;
        flex: 1;
        min-width: 0;
    }

    .vop-btn {
        flex-shrink: 0;
    }

    .custom-checkbox {
        width: 22px;
        height: 22px;
    }
}