/* ============================================
   NailMatch Quiz Styles
   ============================================ */

/* Quiz Hero */
.quiz-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(255, 46, 147, 0.10) 0%, rgba(168, 85, 247, 0.10) 50%, rgba(11, 10, 17, 0) 100%);
    text-align: center;
}

.quiz-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.quiz-hero h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 16px 0 20px;
}

.quiz-hero p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.quiz-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.quiz-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-weight: 500;
}

.quiz-stat-item i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Quiz Container */
.quiz-container-section {
    padding: 110px 0 100px;
    background: var(--surface);
}

.quiz-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

/* Progress Bar */
.quiz-progress {
    margin-bottom: 40px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
    width: 20%;
}

.progress-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Quiz Steps */
.quiz-steps {
    position: relative;
    min-height: 400px;
}

.quiz-step {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.quiz-step.active {
    display: block;
}

.step-content {
    text-align: center;
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.step-icon i {
    font-size: 2rem;
    color: var(--white);
}

.step-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-content > p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    margin-bottom: 40px;
}

/* Skin Tone Grid */
.skin-tone-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.skin-tone-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--surface);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    cursor: pointer;
}

.skin-tone-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.skin-tone-card.selected {
    border-color: var(--primary);
    background: rgba(233, 30, 140, 0.05);
    box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.1);
}

.skin-tone-swatch {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    border: 3px solid var(--white);
    box-shadow: var(--shadow);
}

.tone-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.tone-desc {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

/* Option Grid */
.option-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 24px;
    background: var(--surface);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    cursor: pointer;
}

.option-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.option-card.selected {
    border-color: var(--primary);
    background: rgba(233, 30, 140, 0.05);
    box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.1);
}

.option-card i {
    font-size: 2rem;
    color: var(--primary);
}

.option-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.0625rem;
}

.option-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Shape Grid */
.shape-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.shape-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px 24px;
    background: var(--surface);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    cursor: pointer;
}

.shape-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.shape-card.selected {
    border-color: var(--primary);
    background: rgba(233, 30, 140, 0.05);
    box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.1);
}

.shape-visual {
    width: 48px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: 2px solid var(--white);
    box-shadow: var(--shadow);
}

.almond-shape {
    border-radius: 50% 50% 40% 40%;
}

.coffin-shape {
    clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
}

.square-shape {
    border-radius: 4px 4px 2px 2px;
}

.oval-shape {
    border-radius: 50% 50% 45% 45%;
}

.stiletto-shape {
    clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
}

.round-shape {
    border-radius: 50%;
}

.shape-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.0625rem;
}

.shape-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Length Options */
.length-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.length-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px 32px;
    background: var(--surface);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    cursor: pointer;
}

.length-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.length-card.selected {
    border-color: var(--primary);
    background: rgba(233, 30, 140, 0.05);
    box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.1);
}

.length-visual {
    width: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: 2px solid var(--white);
    box-shadow: var(--shadow);
    border-radius: 50% 50% 40% 40%;
}

.length-visual.short {
    height: 30px;
}

.length-visual.medium {
    height: 50px;
}

.length-visual.long {
    height: 70px;
}

.length-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.125rem;
}

.length-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Quiz Navigation */
.quiz-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

/* Results Section */
.results-section {
    padding: 130px 0 80px;
    background: var(--surface);
}

.results-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.results-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.1), rgba(139, 92, 246, 0.1));
    color: var(--primary);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.results-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.results-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* Results Slider */
.results-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
}

.results-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 24px;
    padding: 8px 4px 16px;
    flex: 1;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.results-slider-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--surface);
    color: var(--primary);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    z-index: 2;
}

.results-slider-arrow:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.08);
}

/* Share dropdown */
.share-menu-wrap {
    position: relative;
    display: inline-flex;
}

.share-menu {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--surface);
    border-radius: 14px;
    box-shadow: var(--shadow-xl);
    padding: 8px;
    min-width: 180px;
    z-index: 20;
}

.share-menu.open {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.share-menu button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.share-menu button:hover {
    background: var(--surface);
}

.share-menu button i {
    width: 18px;
    text-align: center;
    color: var(--primary);
}

.result-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
    flex: 0 0 320px;
    scroll-snap-align: center;
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.result-card.featured {
    border-color: var(--primary);
    transform: scale(1.02);
}

.result-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.result-match {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.result-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.result-percent {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.65);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.result-info {
    padding: 24px;
}

.result-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.result-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.result-tag {
    padding: 4px 12px;
    background: var(--surface);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    border: 1px solid var(--gray-200);
}

.result-desc {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.result-actions {
    display: flex;
    gap: 10px;
}

.result-actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 0.875rem;
}

/* Results Actions */
.results-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

/* Results Shop */
.results-shop {
    text-align: center;
}

.results-shop h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.results-shop > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.shop-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    text-align: left;
}

.shop-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.shop-image {
    height: 180px;
    overflow: hidden;
}

.shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-info {
    padding: 16px;
}

.shop-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.shop-brand {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.shop-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .quiz-hero h1 {
        font-size: 2.5rem;
    }
    
    .skin-tone-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .option-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shape-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .result-card {
        flex-basis: 280px;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .quiz-wrapper {
        padding: 32px 24px;
    }
    
    .quiz-hero h1 {
        font-size: 2rem;
    }
    
    .quiz-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .skin-tone-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .option-grid {
        grid-template-columns: 1fr;
    }
    
    .shape-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .length-options {
        grid-template-columns: 1fr;
    }
    
    .result-card {
        flex-basis: 82%;
    }

    .result-card.featured {
        transform: none;
    }

    .results-slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .shop-grid {
        grid-template-columns: 1fr;
    }
    
    .results-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .results-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   Quiz Intro (landing card, color-analysis style)
   ============================================ */
.quiz-intro {
    --ring-radius: 135px;
    min-height: 100vh;
    padding: 110px 20px 60px;
    background: var(--bg-page);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Big dark CTA */
.intro-start-btn {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    border: none;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.intro-start-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.intro-legal {
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.intro-legal a {
    color: #8a8a8a;
    text-decoration: underline;
}

.intro-legal a:hover {
    color: #555;
}

/* ============================================
   Reveal Screen ("Your nail analysis will reveal")
   ============================================ */
.quiz-reveal {
    min-height: 100vh;
    padding: 100px 16px 40px;
    background: var(--bg-page);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quiz-reveal-card {
    background: var(--surface);
    border-radius: 24px;
    max-width: 480px;
    width: 100%;
    padding: 20px 28px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.reveal-topbar {
    display: flex;
    align-items: center;
}

.reveal-back {
    background: none;
    border: none;
    font-size: 1rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 6px 10px 6px 0;
}

.reveal-title {
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-right: 26px;
}

.reveal-progress {
    height: 4px;
    background: var(--border-dark);
    border-radius: 99px;
    margin: 12px 0 18px;
}

.reveal-progress-fill {
    width: 6%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 99px;
}

.reveal-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}

.reveal-images img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    background: var(--border-dark);
}

.quiz-reveal-card h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: left;
    margin-bottom: 14px;
}

.reveal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.reveal-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-align: left;
}

.reveal-list li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f5ece1;
    color: #a5713f;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ============================================
   Compact Quiz Questions (mobile-friendly)
   ============================================ */
.quiz-wrapper {
    max-width: 640px;
    padding: 28px 24px 24px;
}

.quiz-progress {
    margin-bottom: 20px;
}

.progress-bar {
    height: 5px;
}

.quiz-steps {
    min-height: 0;
}

.step-icon {
    display: none;
}

.step-content {
    text-align: left;
}

.step-content h2 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 6px;
}

.step-content > p {
    text-align: left;
    font-size: 0.92rem;
    margin-bottom: 20px;
}

/* Option cards: compact 2-column rows */
.option-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.option-card {
    align-items: flex-start;
    text-align: left;
    gap: 6px;
    padding: 14px 16px;
}

.option-card:hover {
    transform: none;
}

.option-card i {
    font-size: 1.2rem;
}

.option-title {
    font-size: 0.95rem;
}

.option-desc {
    font-size: 0.78rem;
}

/* Skin tone: keep 5 compact swatches in one row */
.skin-tone-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.skin-tone-card {
    padding: 12px 6px;
    gap: 8px;
}

.skin-tone-card:hover {
    transform: none;
}

.skin-tone-swatch {
    width: 44px;
    height: 44px;
}

.tone-name {
    font-size: 0.85rem;
}

.tone-desc {
    font-size: 0.7rem;
}

/* Shapes: compact 3 columns */
.shape-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.shape-card {
    padding: 16px 10px;
    gap: 10px;
}

.shape-card:hover {
    transform: none;
}

.shape-visual {
    width: 34px;
    height: 46px;
}

.shape-name {
    font-size: 0.9rem;
}

.shape-desc {
    font-size: 0.72rem;
}

/* Length: compact 3 columns */
.length-options {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.length-card {
    padding: 20px 12px;
    gap: 10px;
}

.length-card:hover {
    transform: none;
}

.length-visual.short { height: 20px; }
.length-visual.medium { height: 34px; }
.length-visual.long { height: 48px; }

.length-visual {
    width: 30px;
}

.length-name {
    font-size: 0.95rem;
}

.length-desc {
    font-size: 0.72rem;
}

/* Compact nav */
.quiz-nav {
    margin-top: 20px;
    padding-top: 16px;
}

.quiz-nav .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .quiz-wrapper {
        padding: 20px 16px 16px;
    }

    .tone-desc {
        display: none;
    }

    .skin-tone-swatch {
        width: 38px;
        height: 38px;
    }

    .reveal-images img {
        height: 110px;
    }
}

/* ============================================
   Analysis Start Screen & Question Comfort
   ============================================ */

/* Category label above each question (reference-app style) */
.step-category {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(233, 30, 140, 0.08);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

/* Privacy reassurance under personal (Natural Signals) questions */
.step-content > p.step-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 10px 14px;
    margin: -8px 0 18px;
}

.step-content > p.step-note i {
    color: var(--primary);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Trust block on the start screen */
.intro-trust {
    background: var(--surface);
    border: 1px solid var(--border-dark);
    border-radius: 14px;
    padding: 14px 16px;
    margin: 0 0 24px;
    text-align: center;
}

.intro-trust-privacy {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px;
}

.intro-trust-privacy i {
    color: var(--primary-light);
    margin-right: 6px;
}

.intro-trust-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Back chevron is an anchor on the start screen */
.reveal-back {
    text-decoration: none;
}

@media (max-width: 768px) {
    .quiz-intro {
        padding: 100px 16px 40px;
    }

    .step-content > p.step-note {
        justify-content: flex-start;
        text-align: left;
    }

    /* Bigger, easier-to-tap answer cards */
    .option-card {
        padding: 18px 16px;
        gap: 8px;
        min-height: 96px;
    }

    .option-card i {
        font-size: 1.4rem;
    }

    .option-title {
        font-size: 1rem;
    }

    .option-desc {
        font-size: 0.8rem;
    }

    .skin-tone-card {
        padding: 14px 6px;
    }

    .skin-tone-swatch {
        width: 50px;
        height: 50px;
    }

    .shape-card {
        padding: 20px 10px;
    }

    .shape-visual {
        width: 38px;
        height: 52px;
    }

    .length-card {
        padding: 24px 12px;
    }
}
