.tellen-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    width: 100%;
    text-align: left;
    margin-bottom: 8px;
}

.count-card {
    background-color: #1a1a1a;
    border: 1px solid #2d2d2d;
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.count-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.count-product-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
}

.count-product-info {
    font-size: 0.9rem;
    color: #888888;
    font-weight: 500;
}

.count-form-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.count-form-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.count-control-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
}

.count-adjust-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #2d2d2d;
    background-color: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.count-adjust-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #444444;
}

.count-adjust-btn:active {
    transform: scale(0.95);
}

.count-qty-input {
    flex: 1;
    height: 48px;
    border-radius: 12px;
    border: 2px solid #2d2d2d;
    background-color: #121212;
    color: #ffffff;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    outline: none;
}

.count-qty-input:focus {
    border-color: #75a821;
}

.success-message {
    background-color: rgba(117, 168, 33, 0.15);
    border: 1px solid #75a821;
    color: #92d429;
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
}
